Commit 50ceb68b authored by Fred Drake's avatar Fred Drake

Change staticforward and statichere to just use static.

Removed ^M from some line-ends.
parent a3cd9bba
#include <Python.h> #include <Python.h>
staticforward PyTypeObject noddy_NoddyType; static PyTypeObject noddy_NoddyType;
typedef struct { typedef struct {
PyObject_HEAD PyObject_HEAD
...@@ -29,7 +29,7 @@ noddy_noddy_dealloc(PyObject* self) ...@@ -29,7 +29,7 @@ noddy_noddy_dealloc(PyObject* self)
PyObject_Del(self); PyObject_Del(self);
} }
statichere PyTypeObject noddy_NoddyType = { static PyTypeObject noddy_NoddyType = {
PyObject_HEAD_INIT(NULL) PyObject_HEAD_INIT(NULL)
0, 0,
"Noddy", "Noddy",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment