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 86bfed3 commit 6cfe45aCopy full SHA for 6cfe45a
Modules/_testbuffer.c
@@ -8,13 +8,13 @@
8
9
10
/* struct module */
11
-PyObject *structmodule = NULL;
12
-PyObject *Struct = NULL;
13
-PyObject *calcsize = NULL;
+static PyObject *structmodule = NULL;
+static PyObject *Struct = NULL;
+static PyObject *calcsize = NULL;
14
15
/* cache simple format string */
16
static const char *simple_fmt = "B";
17
-PyObject *simple_format = NULL;
+static PyObject *simple_format = NULL;
18
#define SIMPLE_FORMAT(fmt) (fmt == NULL || strcmp(fmt, "B") == 0)
19
#define FIX_FORMAT(fmt) (fmt == NULL ? "B" : fmt)
20
0 commit comments