Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72db345 commit 6c0ba44Copy full SHA for 6c0ba44
1 file changed
Python/marshal.c
@@ -57,7 +57,7 @@ typedef struct {
57
int error; /* see WFERR_* values */
58
int depth;
59
/* If fp == NULL, the following are valid: */
60
- PyObject * readable; /* Stream-like object being read from */
+ PyObject *readable; /* Stream-like object being read from */
61
PyObject *str;
62
char *ptr;
63
char *end;
@@ -470,7 +470,7 @@ typedef WFILE RFILE; /* Same struct with different invariants */
470
static int
471
r_string(char *s, int n, RFILE *p)
472
{
473
- char * ptr;
+ char *ptr;
474
int read, left;
475
476
if (!p->readable) {
@@ -569,7 +569,7 @@ r_long(RFILE *p)
569
static PyObject *
570
r_long64(RFILE *p)
571
572
- PyObject * result = NULL;
+ PyObject *result = NULL;
573
long lo4 = r_long(p);
574
long hi4 = r_long(p);
575
0 commit comments