cpython (3.2): Fix style in code added by edba722f3b02
http://hg.python.org/cpython/rev/9e293f617544 changeset: 71554:9e293f617544 branch: 3.2 user: Éric Araujo <merwok@netwok.org> date: Tue Jul 26 17:23:57 2011 +0200 summary: Fix style in code added by edba722f3b02 files: Python/marshal.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Python/marshal.c b/Python/marshal.c --- a/Python/marshal.c +++ b/Python/marshal.c @@ -57,7 +57,7 @@ int error; /* see WFERR_* values */ int depth; /* If fp == NULL, the following are valid: */ - PyObject * readable; /* Stream-like object being read from */ + PyObject *readable; /* Stream-like object being read from */ PyObject *str; char *ptr; char *end; @@ -470,7 +470,7 @@ static int r_string(char *s, int n, RFILE *p) { - char * ptr; + char *ptr; int read, left; if (!p->readable) { @@ -569,7 +569,7 @@ static PyObject * r_long64(RFILE *p) { - PyObject * result = NULL; + PyObject *result = NULL; long lo4 = r_long(p); long hi4 = r_long(p); -- Repository URL: http://hg.python.org/cpython
participants (1)
-
eric.araujo