mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
Since the *_Init() are private, prefix with _, suggested by Skip
This commit is contained in:
parent
744f0fd655
commit
b2501f4cd1
5 changed files with 6 additions and 6 deletions
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -939,7 +939,7 @@ PyTypeObject PyInt_Type = {
|
|||
};
|
||||
|
||||
int
|
||||
PyInt_Init(void)
|
||||
_PyInt_Init(void)
|
||||
{
|
||||
PyIntObject *v;
|
||||
int ival;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue