[Python-checkins] cpython: Fix a trivial typo.

eric.smith python-checkins at python.org
Fri Aug 21 15:39:51 CEST 2015


https://hg.python.org/cpython/rev/45bb27eae8d3
changeset:   97463:45bb27eae8d3
parent:      97461:977e60f597de
user:        Eric V. Smith <eric at trueblade.com>
date:        Fri Aug 21 09:40:38 2015 -0400
summary:
  Fix a trivial typo.

files:
  Python/ast.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Python/ast.c b/Python/ast.c
--- a/Python/ast.c
+++ b/Python/ast.c
@@ -511,7 +511,7 @@
 /* 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. */

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list