summaryrefslogtreecommitdiffstats
path: root/Objects
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 /Objects
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 'Objects')
-rw-r--r--Objects/frameobject.c2
-rw-r--r--Objects/intobject.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/Objects/frameobject.c b/Objects/frameobject.c
index b982064..2c62b67 100644
--- a/Objects/frameobject.c
+++ b/Objects/frameobject.c
@@ -527,7 +527,7 @@ PyTypeObject PyFrame_Type = {
static PyObject *builtin_object;
-int PyFrame_Init()
+int _PyFrame_Init()
{
builtin_object = PyString_InternFromString("__builtins__");
return (builtin_object != NULL);
diff --git a/Objects/intobject.c b/Objects/intobject.c
index 10587ac..d9e4d31 100644
--- a/Objects/intobject.c
+++ b/Objects/intobject.c
@@ -939,7 +939,7 @@ PyTypeObject PyInt_Type = {
};
int
-PyInt_Init(void)
+_PyInt_Init(void)
{
PyIntObject *v;
int ival;