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 c3f6bdc commit 143a97fCopy full SHA for 143a97f
Modules/_contextvarsmodule.c
@@ -52,6 +52,7 @@ PyInit__contextvars(void)
52
(PyObject *)&PyContext_Type) < 0)
53
{
54
Py_DECREF(&PyContext_Type);
55
+ Py_DECREF(m);
56
return NULL;
57
}
58
@@ -60,6 +61,7 @@ PyInit__contextvars(void)
60
61
(PyObject *)&PyContextVar_Type) < 0)
62
63
Py_DECREF(&PyContextVar_Type);
64
65
66
67
@@ -68,6 +70,7 @@ PyInit__contextvars(void)
68
70
(PyObject *)&PyContextToken_Type) < 0)
69
71
72
Py_DECREF(&PyContextToken_Type);
73
74
75
76
0 commit comments