Make PySimpleQueueType static. (GH-8175)
This commit is contained in:
parent
ced350b195
commit
9b50a7f29b
|
@ -8,7 +8,7 @@ class _queue.SimpleQueue "simplequeueobject *" "&PySimpleQueueType"
|
||||||
[clinic start generated code]*/
|
[clinic start generated code]*/
|
||||||
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=cf49af81bcbbbea6]*/
|
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=cf49af81bcbbbea6]*/
|
||||||
|
|
||||||
extern PyTypeObject PySimpleQueueType; /* forward decl */
|
static PyTypeObject PySimpleQueueType; /* forward decl */
|
||||||
|
|
||||||
static PyObject *EmptyError;
|
static PyObject *EmptyError;
|
||||||
|
|
||||||
|
@ -306,7 +306,7 @@ static PyMethodDef simplequeue_methods[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
PyTypeObject PySimpleQueueType = {
|
static PyTypeObject PySimpleQueueType = {
|
||||||
PyVarObject_HEAD_INIT(NULL, 0)
|
PyVarObject_HEAD_INIT(NULL, 0)
|
||||||
"_queue.SimpleQueue", /*tp_name*/
|
"_queue.SimpleQueue", /*tp_name*/
|
||||||
sizeof(simplequeueobject), /*tp_size*/
|
sizeof(simplequeueobject), /*tp_size*/
|
||||||
|
|
Loading…
Reference in New Issue