mirror of
https://github.com/python/cpython.git
synced 2025-11-02 03:01:58 +00:00
Finish getting rid of statichere/staticforward
This commit is contained in:
parent
914a81841f
commit
227b5339ed
8 changed files with 25 additions and 25 deletions
|
|
@ -53,7 +53,7 @@ typedef struct {
|
|||
HANDLE handle;
|
||||
} sp_handle_object;
|
||||
|
||||
staticforward PyTypeObject sp_handle_type;
|
||||
static PyTypeObject sp_handle_type;
|
||||
|
||||
static PyObject*
|
||||
sp_handle_new(HANDLE handle)
|
||||
|
|
@ -127,7 +127,7 @@ sp_handle_as_int(sp_handle_object* self)
|
|||
|
||||
static PyNumberMethods sp_handle_as_number;
|
||||
|
||||
statichere PyTypeObject sp_handle_type = {
|
||||
static PyTypeObject sp_handle_type = {
|
||||
PyObject_HEAD_INIT(NULL)
|
||||
0, /*ob_size*/
|
||||
"_subprocess_handle", sizeof(sp_handle_object), 0,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue