diff options
author | Meador Inge <meadori@gmail.com> | 2012-07-18 21:41:03 (GMT) |
---|---|---|
committer | Meador Inge <meadori@gmail.com> | 2012-07-18 21:41:03 (GMT) |
commit | f69e24e3c66f516d05cbc5db383784e1523a8fbd (patch) | |
tree | 796c031ab2837cb9f5ddaa4b8aafbbe91be49ad1 /Python/compile.c | |
parent | 2ca6315d151d9a376b46c4ae32ffeaf776da0cbc (diff) | |
download | cpython-f69e24e3c66f516d05cbc5db383784e1523a8fbd.zip cpython-f69e24e3c66f516d05cbc5db383784e1523a8fbd.tar.gz cpython-f69e24e3c66f516d05cbc5db383784e1523a8fbd.tar.bz2 |
Issue #15368: fixing variable typo.
Diffstat (limited to 'Python/compile.c')
-rw-r--r-- | Python/compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c index 8268b1c..a1da016 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -387,7 +387,7 @@ dictbytype(PyObject *src, int scope_type, int flag, int offset) Py_DECREF(sorted_keys); return NULL; } - num_keys = PyList_GET_SIZE(src); + num_keys = PyList_GET_SIZE(sorted_keys); for (key_i = 0; key_i < num_keys; key_i++) { /* XXX this should probably be a macro in symtable.h */ |