mirror of
https://github.com/python/cpython.git
synced 2025-10-13 18:33:34 +00:00
Change staticforward and statichere to just use static.
Removed ^M from some line-ends.
This commit is contained in:
parent
a3cd9bbaa3
commit
50ceb68b4f
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
#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)
|
||||||
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",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue