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 a3cd9bb commit 50ceb68Copy full SHA for 50ceb68
1 file changed
Doc/ext/noddy.c
@@ -1,6 +1,6 @@
1
#include <Python.h>
2
3
-staticforward PyTypeObject noddy_NoddyType;
+static PyTypeObject noddy_NoddyType;
4
5
typedef struct {
6
PyObject_HEAD
@@ -29,7 +29,7 @@ noddy_noddy_dealloc(PyObject* self)
29
PyObject_Del(self);
30
}
31
32
-statichere PyTypeObject noddy_NoddyType = {
+static PyTypeObject noddy_NoddyType = {
33
PyObject_HEAD_INIT(NULL)
34
0,
35
"Noddy",
0 commit comments