diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2002-12-31 03:42:13 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-12-31 03:42:13 +0000 |
commit | b2501f4cd18f65cc671482ceb1abe88c289b664c (patch) | |
tree | 5e661dfd4229e4eeb41d07fcc58a2040208b95ab /Objects/intobject.c | |
parent | 744f0fd655cd55676532119894e2845d0533608b (diff) | |
download | cpython-git-b2501f4cd18f65cc671482ceb1abe88c289b664c.tar.gz |
Since the *_Init() are private, prefix with _, suggested by Skip
Diffstat (limited to 'Objects/intobject.c')
-rw-r--r-- | Objects/intobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/intobject.c b/Objects/intobject.c index 10587ac7bd..d9e4d317c1 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; |