mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
gh-106869: Use new PyMemberDef constant names (#106871)
* Remove '#include "structmember.h"'. * If needed, add <stddef.h> to get offsetof() function. * Update Parser/asdl_c.py to regenerate Python/Python-ast.c. * Replace: * T_SHORT => Py_T_SHORT * T_INT => Py_T_INT * T_LONG => Py_T_LONG * T_FLOAT => Py_T_FLOAT * T_DOUBLE => Py_T_DOUBLE * T_STRING => Py_T_STRING * T_OBJECT => _Py_T_OBJECT * T_CHAR => Py_T_CHAR * T_BYTE => Py_T_BYTE * T_UBYTE => Py_T_UBYTE * T_USHORT => Py_T_USHORT * T_UINT => Py_T_UINT * T_ULONG => Py_T_ULONG * T_STRING_INPLACE => Py_T_STRING_INPLACE * T_BOOL => Py_T_BOOL * T_OBJECT_EX => Py_T_OBJECT_EX * T_LONGLONG => Py_T_LONGLONG * T_ULONGLONG => Py_T_ULONGLONG * T_PYSSIZET => Py_T_PYSSIZET * T_NONE => _Py_T_NONE * READONLY => Py_READONLY * PY_AUDIT_READ => Py_AUDIT_READ * READ_RESTRICTED => Py_AUDIT_READ * PY_WRITE_RESTRICTED => _Py_WRITE_RESTRICTED * RESTRICTED => (READ_RESTRICTED | _Py_WRITE_RESTRICTED)
This commit is contained in:
parent
ed08238327
commit
1a3faba9f1
78 changed files with 472 additions and 464 deletions
|
@ -38,7 +38,7 @@
|
|||
#include "pycore_moduleobject.h" // _PyModule_GetState()
|
||||
#include "pycore_pylifecycle.h" // _Py_IsInterpreterFinalizing()
|
||||
#include "pycore_pystate.h" // _PyInterpreterState_GET
|
||||
#include "structmember.h" // PyMemberDef
|
||||
|
||||
|
||||
|
||||
#ifndef WINDOWS_LEAN_AND_MEAN
|
||||
|
@ -54,13 +54,13 @@
|
|||
PyLong_FromUnsignedLong((unsigned long) handle)
|
||||
#define PYNUM_TO_HANDLE(obj) ((HANDLE)PyLong_AsUnsignedLong(obj))
|
||||
#define F_POINTER "k"
|
||||
#define T_POINTER T_ULONG
|
||||
#define T_POINTER Py_T_ULONG
|
||||
#else
|
||||
#define HANDLE_TO_PYNUM(handle) \
|
||||
PyLong_FromUnsignedLongLong((unsigned long long) handle)
|
||||
#define PYNUM_TO_HANDLE(obj) ((HANDLE)PyLong_AsUnsignedLongLong(obj))
|
||||
#define F_POINTER "K"
|
||||
#define T_POINTER T_ULONGLONG
|
||||
#define T_POINTER Py_T_ULONGLONG
|
||||
#endif
|
||||
|
||||
#define F_HANDLE F_POINTER
|
||||
|
@ -322,7 +322,7 @@ static PyMethodDef overlapped_methods[] = {
|
|||
static PyMemberDef overlapped_members[] = {
|
||||
{"event", T_HANDLE,
|
||||
offsetof(OverlappedObject, overlapped) + offsetof(OVERLAPPED, hEvent),
|
||||
READONLY, "overlapped event handle"},
|
||||
Py_READONLY, "overlapped event handle"},
|
||||
{NULL}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue