diff options
author | Éric Araujo <merwok@netwok.org> | 2011-07-26 18:25:14 +0200 |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-07-26 18:25:14 +0200 |
commit | 9e1af03fbb2a9fc1472ac866add02c99b0c88b16 (patch) | |
tree | 25efce5bd9633ba8cb685c9c64464a49da941853 /Python/marshal.c | |
parent | 76748b7033cdd52a95d78d85f2ec15244e5d0fd8 (diff) | |
parent | a0e92a802815d55dafd303b39843ddd2b9784bdb (diff) | |
download | cpython-git-9e1af03fbb2a9fc1472ac866add02c99b0c88b16.tar.gz |
Branch merge.
I moved the NEWS entry for the reindent fix to the right release section.
Diffstat (limited to 'Python/marshal.c')
-rw-r--r-- | Python/marshal.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Python/marshal.c b/Python/marshal.c index 76d5690438..094f732382 100644 --- a/Python/marshal.c +++ b/Python/marshal.c @@ -57,7 +57,7 @@ typedef struct { 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 @@ typedef WFILE RFILE; /* Same struct with different invariants */ static int r_string(char *s, int n, RFILE *p) { - char * ptr; + char *ptr; int read, left; if (!p->readable) { @@ -569,7 +569,7 @@ r_long(RFILE *p) static PyObject * r_long64(RFILE *p) { - PyObject * result = NULL; + PyObject *result = NULL; long lo4 = r_long(p); long hi4 = r_long(p); |