Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e8f549 commit dc392e3Copy full SHA for dc392e3
2 files changed
Include/intobject.h
@@ -30,7 +30,6 @@ PyAPI_DATA(PyTypeObject) PyInt_Type;
30
#define PyInt_Check(op) PyObject_TypeCheck(op, &PyInt_Type)
31
#define PyInt_CheckExact(op) ((op)->ob_type == &PyInt_Type)
32
33
-PyAPI_FUNC(int) _PyInt_Init(void);
34
PyAPI_FUNC(PyObject *) PyInt_FromString(char*, char**, int);
35
#ifdef Py_USING_UNICODE
36
PyAPI_FUNC(PyObject *) PyInt_FromUnicode(Py_UNICODE*, int, int);
Include/pythonrun.h
@@ -101,6 +101,7 @@ PyAPI_FUNC(void) _PyImport_Init(void);
101
PyAPI_FUNC(void) _PyExc_Init(void);
102
PyAPI_FUNC(void) _PyImportHooks_Init(void);
103
PyAPI_FUNC(int) _PyFrame_Init(void);
104
+PyAPI_FUNC(int) _PyInt_Init(void);
105
106
/* Various internal finalizers */
107
PyAPI_FUNC(void) _PyExc_Fini(void);
0 commit comments