diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-08 06:58:08 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-08 06:58:08 (GMT) |
commit | 6a35bf6ca051f07edf0044278a1bf71b88111320 (patch) | |
tree | b4839087ef33c32885cfc968f875bb1a8461df48 /Objects/codeobject.c | |
parent | 0ea51b18d547e555ffa99df60341431b6b85c0a9 (diff) | |
download | cpython-6a35bf6ca051f07edf0044278a1bf71b88111320.zip cpython-6a35bf6ca051f07edf0044278a1bf71b88111320.tar.gz cpython-6a35bf6ca051f07edf0044278a1bf71b88111320.tar.bz2 |
Silenced compiler warnings.
Diffstat (limited to 'Objects/codeobject.c')
-rw-r--r-- | Objects/codeobject.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Objects/codeobject.c b/Objects/codeobject.c index b7c4059..79ac1b5 100644 --- a/Objects/codeobject.c +++ b/Objects/codeobject.c @@ -95,7 +95,6 @@ PyCode_New(int argcount, int nlocals, int stacksize, int flags, PyObject *lnotab) { PyCodeObject *co; - Py_ssize_t i; /* Check argument types */ if (argcount < 0 || nlocals < 0 || code == NULL || |