mirror of
https://github.com/python/cpython.git
synced 2025-10-21 22:22:48 +00:00
Since the *_Init() are private, prefix with _, suggested by Skip
This commit is contained in:
parent
744f0fd655
commit
b2501f4cd1
5 changed files with 6 additions and 6 deletions
|
@ -30,7 +30,7 @@ PyAPI_DATA(PyTypeObject) PyInt_Type;
|
|||
#define PyInt_Check(op) PyObject_TypeCheck(op, &PyInt_Type)
|
||||
#define PyInt_CheckExact(op) ((op)->ob_type == &PyInt_Type)
|
||||
|
||||
PyAPI_FUNC(int) PyInt_Init(void);
|
||||
PyAPI_FUNC(int) _PyInt_Init(void);
|
||||
PyAPI_FUNC(PyObject *) PyInt_FromString(char*, char**, int);
|
||||
#ifdef Py_USING_UNICODE
|
||||
PyAPI_FUNC(PyObject *) PyInt_FromUnicode(Py_UNICODE*, int, int);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue