diff options
Diffstat (limited to 'Python')
-rw-r--r-- | Python/specialize.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/specialize.c b/Python/specialize.c index dcf4be7..5892f54 100644 --- a/Python/specialize.c +++ b/Python/specialize.c @@ -1,5 +1,6 @@ #include "Python.h" #include "pycore_code.h" +#include "pycore_descrobject.h" // _PyMethodWrapper_Type #include "pycore_dict.h" #include "pycore_function.h" // _PyFunction_GetVersionForCurrentState() #include "pycore_global_strings.h" // _Py_ID() @@ -7,9 +8,8 @@ #include "pycore_moduleobject.h" #include "pycore_object.h" #include "pycore_opcode.h" // _PyOpcode_Caches -#include "structmember.h" // struct PyMemberDef, T_OFFSET_EX -#include "pycore_descrobject.h" #include "pycore_pylifecycle.h" // _PyOS_URandomNonblock() +#include "structmember.h" // struct PyMemberDef, T_OFFSET_EX #include <stdlib.h> // rand() |