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 80c188f commit 6d16a91Copy full SHA for 6d16a91
Modules/_queuemodule.c
@@ -8,7 +8,7 @@ class _queue.SimpleQueue "simplequeueobject *" "&PySimpleQueueType"
8
[clinic start generated code]*/
9
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=cf49af81bcbbbea6]*/
10
11
-extern PyTypeObject PySimpleQueueType; /* forward decl */
+static PyTypeObject PySimpleQueueType; /* forward decl */
12
13
static PyObject *EmptyError;
14
@@ -306,7 +306,7 @@ static PyMethodDef simplequeue_methods[] = {
306
};
307
308
309
-PyTypeObject PySimpleQueueType = {
+static PyTypeObject PySimpleQueueType = {
310
PyVarObject_HEAD_INIT(NULL, 0)
311
"_queue.SimpleQueue", /*tp_name*/
312
sizeof(simplequeueobject), /*tp_size*/
0 commit comments