Change staticforward and statichere to just use static.
Removed ^M from some line-ends.
This commit is contained in:
parent
a3cd9bbaa3
commit
50ceb68b4f
|
@ -1,6 +1,6 @@
|
|||
#include <Python.h>
|
||||
|
||||
staticforward PyTypeObject noddy_NoddyType;
|
||||
static PyTypeObject noddy_NoddyType;
|
||||
|
||||
typedef struct {
|
||||
PyObject_HEAD
|
||||
|
@ -29,7 +29,7 @@ noddy_noddy_dealloc(PyObject* self)
|
|||
PyObject_Del(self);
|
||||
}
|
||||
|
||||
statichere PyTypeObject noddy_NoddyType = {
|
||||
static PyTypeObject noddy_NoddyType = {
|
||||
PyObject_HEAD_INIT(NULL)
|
||||
0,
|
||||
"Noddy",
|
||||
|
|
Loading…
Reference in New Issue