summaryrefslogtreecommitdiffstats
path: root/Include/intobject.h
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2002-12-31 03:42:13 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2002-12-31 03:42:13 (GMT)
commitb2501f4cd18f65cc671482ceb1abe88c289b664c (patch)
tree5e661dfd4229e4eeb41d07fcc58a2040208b95ab /Include/intobject.h
parent744f0fd655cd55676532119894e2845d0533608b (diff)
downloadcpython-b2501f4cd18f65cc671482ceb1abe88c289b664c.zip
cpython-b2501f4cd18f65cc671482ceb1abe88c289b664c.tar.gz
cpython-b2501f4cd18f65cc671482ceb1abe88c289b664c.tar.bz2
Since the *_Init() are private, prefix with _, suggested by Skip
Diffstat (limited to 'Include/intobject.h')
-rw-r--r--Include/intobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/intobject.h b/Include/intobject.h
index 50e6a73..cf463e4 100644
--- a/Include/intobject.h
+++ b/Include/intobject.h
@@ -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);