mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
Move _PyInt_Init() into pythonrun.h, since all the other _Init()
functions are here. Suggested by Skip.
This commit is contained in:
parent
4e8f5492c5
commit
dc392e3143
2 changed files with 1 additions and 1 deletions
|
|
@ -30,7 +30,6 @@ 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(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