diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-06-04 04:57:19 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-06-04 04:57:19 (GMT) |
commit | b5f487a0902c82a914cd2398ffd1b5e57715431a (patch) | |
tree | c5c2b1ea9e29b7f3467aea7c10032eaa60c7c188 /Python/symtable.c | |
parent | a48aa85da04fa158efa6a546cb7de6a1ac0b518b (diff) | |
download | cpython-b5f487a0902c82a914cd2398ffd1b5e57715431a.zip cpython-b5f487a0902c82a914cd2398ffd1b5e57715431a.tar.gz cpython-b5f487a0902c82a914cd2398ffd1b5e57715431a.tar.bz2 |
Fix typo in code comment
Diffstat (limited to 'Python/symtable.c')
-rw-r--r-- | Python/symtable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/symtable.c b/Python/symtable.c index 8d4b0d3..137f12c 100644 --- a/Python/symtable.c +++ b/Python/symtable.c @@ -738,7 +738,7 @@ analyze_child_block(PySTEntryObject *entry, PyObject *bound, PyObject *free, /* Copy the bound and global dictionaries. - These dictionary are used by all blocks enclosed by the + These dictionaries are used by all blocks enclosed by the current block. The analyze_block() call modifies these dictionaries. |