diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2012-10-30 23:37:41 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2012-10-30 23:37:41 (GMT) |
commit | 7a6d7cf3db49563132532529839fa82408444d89 (patch) | |
tree | 794d1e95c115e571aea015210fb31467ff211f8e /Objects | |
parent | 56cb12542d7ea5c95b9483e3db69388bcbc2ffbb (diff) | |
download | cpython-7a6d7cf3db49563132532529839fa82408444d89.zip cpython-7a6d7cf3db49563132532529839fa82408444d89.tar.gz cpython-7a6d7cf3db49563132532529839fa82408444d89.tar.bz2 |
Issue #9566: Use the right type to fix a compiler warnings on Win64
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/frameobject.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Objects/frameobject.c b/Objects/frameobject.c index 808e595..6fff370 100644 --- a/Objects/frameobject.c +++ b/Objects/frameobject.c @@ -466,7 +466,7 @@ static int frame_traverse(PyFrameObject *f, visitproc visit, void *arg) { PyObject **fastlocals, **p; - int i, slots; + Py_ssize_t i, slots; Py_VISIT(f->f_back); Py_VISIT(f->f_code); @@ -496,7 +496,7 @@ static void frame_clear(PyFrameObject *f) { PyObject **fastlocals, **p, **oldtop; - int i, slots; + Py_ssize_t i, slots; /* Before anything else, make sure that this frame is clearly marked * as being defunct! Else, e.g., a generator reachable from this @@ -848,7 +848,7 @@ PyFrame_FastToLocals(PyFrameObject *f) PyObject *error_type, *error_value, *error_traceback; PyCodeObject *co; Py_ssize_t j; - int ncells, nfreevars; + Py_ssize_t ncells, nfreevars; if (f == NULL) return; locals = f->f_locals; @@ -900,7 +900,7 @@ PyFrame_LocalsToFast(PyFrameObject *f, int clear) PyObject *error_type, *error_value, *error_traceback; PyCodeObject *co; Py_ssize_t j; - int ncells, nfreevars; + Py_ssize_t ncells, nfreevars; if (f == NULL) return; locals = f->f_locals; |