summaryrefslogtreecommitdiffstats
path: root/Include/intobject.h
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2003-01-01 15:18:32 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2003-01-01 15:18:32 (GMT)
commitdc392e31439d9992ea0101abaca09bcb78ebc311 (patch)
treeb8ad5c2e11eecebfe39b729494799b57b5376e94 /Include/intobject.h
parent4e8f5492c5c74b3cb3a8448fa8bf482d4e8a3d74 (diff)
downloadcpython-dc392e31439d9992ea0101abaca09bcb78ebc311.zip
cpython-dc392e31439d9992ea0101abaca09bcb78ebc311.tar.gz
cpython-dc392e31439d9992ea0101abaca09bcb78ebc311.tar.bz2
Move _PyInt_Init() into pythonrun.h, since all the other _Init()
functions are here. Suggested by Skip.
Diffstat (limited to 'Include/intobject.h')
-rw-r--r--Include/intobject.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/intobject.h b/Include/intobject.h
index cf463e4..ab936b2 100644
--- a/Include/intobject.h
+++ b/Include/intobject.h
@@ -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);