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 | 7b445fafa8ec87f2c776e6feb256590eddbf0343 (patch) | |
tree | 0365c54f5d6a8d793a6998bc8752243a445310ae /Objects/frameobject.c | |
parent | a743ed47fc734c80a48f8c7832bc831f36cd4df8 (diff) | |
download | cpython-7b445fafa8ec87f2c776e6feb256590eddbf0343.tar.gz |
Since the *_Init() are private, prefix with _, suggested by Skip
Diffstat (limited to 'Objects/frameobject.c')
-rw-r--r-- | Objects/frameobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/frameobject.c b/Objects/frameobject.c index b982064c0e..2c62b67f61 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); |