summaryrefslogtreecommitdiffstats
path: root/Python/ast.c
diff options
context:
space:
mode:
authorEric V. Smith <eric@trueblade.com>2015-08-21 13:40:38 (GMT)
committerEric V. Smith <eric@trueblade.com>2015-08-21 13:40:38 (GMT)
commit163b5c668d33689aad9f2490bfc5318fba64fa47 (patch)
tree9f5f596187ab6c47883023d530289b952058ec38 /Python/ast.c
parentf01b16c1fe2c7d350ccde273fb03ac10eab35229 (diff)
downloadcpython-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.c2
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. */