Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 50ceb68

Browse files
committed
Change staticforward and statichere to just use static.
Removed ^M from some line-ends.
1 parent a3cd9bb commit 50ceb68

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Doc/ext/noddy.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include <Python.h>
22

3-
staticforward PyTypeObject noddy_NoddyType;
3+
static PyTypeObject noddy_NoddyType;
44

55
typedef struct {
66
PyObject_HEAD
@@ -29,7 +29,7 @@ noddy_noddy_dealloc(PyObject* self)
2929
PyObject_Del(self);
3030
}
3131

32-
statichere PyTypeObject noddy_NoddyType = {
32+
static PyTypeObject noddy_NoddyType = {
3333
PyObject_HEAD_INIT(NULL)
3434
0,
3535
"Noddy",

0 commit comments

Comments
 (0)