[Python-checkins] cpython (3.3): bump Python-ast.c

benjamin.peterson python-checkins at python.org
Thu Feb 20 05:07:29 CET 2014


http://hg.python.org/cpython/rev/8d1528dddc7d
changeset:   89297:8d1528dddc7d
branch:      3.3
parent:      89279:d89178781873
user:        Benjamin Peterson <benjamin at python.org>
date:        Wed Feb 19 23:05:26 2014 -0500
summary:
  bump Python-ast.c

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


diff --git a/Python/Python-ast.c b/Python/Python-ast.c
--- a/Python/Python-ast.c
+++ b/Python/Python-ast.c
@@ -6960,11 +6960,11 @@
     PyObject *req_type[3];
     char *req_name[] = {"Module", "Expression", "Interactive"};
     int isinstance;
-    
+
     req_type[0] = (PyObject*)Module_type;
     req_type[1] = (PyObject*)Expression_type;
     req_type[2] = (PyObject*)Interactive_type;
-    
+
     assert(0 <= mode && mode <= 2);
 
     init_types();

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


More information about the Python-checkins mailing list