diff options
| author | Martin Panter <vadmium+py@gmail.com> | 2016-09-17 07:54:55 (GMT) |
|---|---|---|
| committer | Martin Panter <vadmium+py@gmail.com> | 2016-09-17 07:54:55 (GMT) |
| commit | ca56dd4767617a2f5e946130de4beb06442a5cd5 (patch) | |
| tree | 8697f0e83d6b4f3758eaf4b89abc944b6e6db71f /Objects/intobject.c | |
| parent | fd2f85d6e4e8abc9c943cf56cf45527d522c7882 (diff) | |
| download | cpython-ca56dd4767617a2f5e946130de4beb06442a5cd5.zip cpython-ca56dd4767617a2f5e946130de4beb06442a5cd5.tar.gz cpython-ca56dd4767617a2f5e946130de4beb06442a5cd5.tar.bz2 | |
Issue #28139: Fix messed up indentation
Also update the classmethod and staticmethod doc strings and comments to
match the RST documentation.
Diffstat (limited to 'Objects/intobject.c')
| -rw-r--r-- | Objects/intobject.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/intobject.c b/Objects/intobject.c index 41bb074..189413e 100644 --- a/Objects/intobject.c +++ b/Objects/intobject.c @@ -1461,8 +1461,8 @@ _PyInt_Init(void) int ival; #if NSMALLNEGINTS + NSMALLPOSINTS > 0 for (ival = -NSMALLNEGINTS; ival < NSMALLPOSINTS; ival++) { - if (!free_list && (free_list = fill_free_list()) == NULL) - return 0; + if (!free_list && (free_list = fill_free_list()) == NULL) + return 0; /* PyObject_New is inlined */ v = free_list; free_list = (PyIntObject *)Py_TYPE(v); |
