diff options
author | Eric V. Smith <eric@trueblade.com> | 2015-08-21 13:40:38 (GMT) |
---|---|---|
committer | Eric V. Smith <eric@trueblade.com> | 2015-08-21 13:40:38 (GMT) |
commit | 163b5c668d33689aad9f2490bfc5318fba64fa47 (patch) | |
tree | 9f5f596187ab6c47883023d530289b952058ec38 /Python/ast.c | |
parent | f01b16c1fe2c7d350ccde273fb03ac10eab35229 (diff) | |
download | cpython-163b5c668d33689aad9f2490bfc5318fba64fa47.zip cpython-163b5c668d33689aad9f2490bfc5318fba64fa47.tar.gz cpython-163b5c668d33689aad9f2490bfc5318fba64fa47.tar.bz2 |
Fix a trivial typo.
Diffstat (limited to 'Python/ast.c')
-rw-r--r-- | Python/ast.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ast.c b/Python/ast.c index c1c3907..8b356fe 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -511,7 +511,7 @@ PyAST_Validate(mod_ty mod) /* Data structure used internally */ struct compiling { char *c_encoding; /* source encoding */ - PyArena *c_arena; /* arena for allocating memeory */ + PyArena *c_arena; /* Arena for allocating memory. */ PyObject *c_filename; /* filename */ PyObject *c_normalize; /* Normalization function from unicodedata. */ PyObject *c_normalize_args; /* Normalization argument tuple. */ |