From: Eric V. Smith Date: Fri, 21 Aug 2015 13:40:38 +0000 (-0400) Subject: Fix a trivial typo. X-Git-Tag: v3.6.0a1~1748 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=163b5c668d33689aad9f2490bfc5318fba64fa47;p=python Fix a trivial typo. --- diff --git a/Python/ast.c b/Python/ast.c index c1c3907b91..8b356fef4d 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. */