[Python-checkins] cpython (3.2): put * in the normal place

benjamin.peterson python-checkins at python.org
Sun Sep 2 22:37:17 CEST 2012


http://hg.python.org/cpython/rev/0c6a09b982d8
changeset:   78841:0c6a09b982d8
branch:      3.2
parent:      78838:a5e28f9924c3
user:        Benjamin Peterson <benjamin at python.org>
date:        Sun Sep 02 16:36:01 2012 -0400
summary:
  put * in the normal place

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


diff --git a/Python/ast.c b/Python/ast.c
--- a/Python/ast.c
+++ b/Python/ast.c
@@ -47,9 +47,9 @@
 #define COMP_SETCOMP  2
 
 static identifier
-new_identifier(const char* n, PyArena *arena)
+new_identifier(const char *n, PyArena *arena)
 {
-    PyObject* id = PyUnicode_DecodeUTF8(n, strlen(n), NULL);
+    PyObject *id = PyUnicode_DecodeUTF8(n, strlen(n), NULL);
     Py_UNICODE *u;
     if (!id)
         return NULL;

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


More information about the Python-checkins mailing list