diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-01-31 23:43:25 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-01-31 23:43:25 (GMT) |
commit | da9327faf743dbe4810fe10cddf3597c67d8017b (patch) | |
tree | c0065613b1c7fffe0185fda6f70450ac19c47d6b /Python/compile.c | |
parent | de1a8b720a8cc5a6dab5e293d322a43d7ecb5c69 (diff) | |
download | cpython-da9327faf743dbe4810fe10cddf3597c67d8017b.zip cpython-da9327faf743dbe4810fe10cddf3597c67d8017b.tar.gz cpython-da9327faf743dbe4810fe10cddf3597c67d8017b.tar.bz2 |
add explanatory comment
Diffstat (limited to 'Python/compile.c')
-rw-r--r-- | Python/compile.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Python/compile.c b/Python/compile.c index 44ced73..917f9d3 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -3769,6 +3769,8 @@ dict_keys_inorder(PyObject *dict, int offset) return NULL; while (PyDict_Next(dict, &pos, &k, &v)) { i = PyInt_AS_LONG(v); + /* The keys of the dictionary are tuples. (see compiler_add_o) + The object we want is always first, though. */ k = PyTuple_GET_ITEM(k, 0); Py_INCREF(k); assert((i - offset) < size); |