File tree Expand file tree Collapse file tree 4 files changed +6
-9
lines changed Expand file tree Collapse file tree 4 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -7,9 +7,6 @@ extern "C" {
7
7
8
8
PyAPI_DATA (PyTypeObject ) PySeqIter_Type ;
9
9
PyAPI_DATA (PyTypeObject ) PyCallIter_Type ;
10
- #ifdef Py_BUILD_CORE
11
- extern PyTypeObject _PyAnextAwaitable_Type ;
12
- #endif
13
10
14
11
#define PySeqIter_Check (op ) Py_IS_TYPE((op), &PySeqIter_Type)
15
12
Original file line number Diff line number Diff line change @@ -2049,11 +2049,12 @@ _PyObject_InitState(PyInterpreterState *interp)
2049
2049
}
2050
2050
2051
2051
2052
- extern PyTypeObject _Py_GenericAliasIterType ;
2053
- extern PyTypeObject _PyMemoryIter_Type ;
2052
+ extern PyTypeObject _PyAnextAwaitable_Type ;
2053
+ extern PyTypeObject _PyLegacyEventHandler_Type ;
2054
2054
extern PyTypeObject _PyLineIterator ;
2055
+ extern PyTypeObject _PyMemoryIter_Type ;
2055
2056
extern PyTypeObject _PyPositionsIterator ;
2056
- extern PyTypeObject _PyLegacyEventHandler_Type ;
2057
+ extern PyTypeObject _Py_GenericAliasIterType ;
2057
2058
2058
2059
static PyTypeObject * static_types [] = {
2059
2060
// The two most important base types: must be initialized first and
Original file line number Diff line number Diff line change @@ -69,7 +69,6 @@ def preprocess(filename,
69
69
cwd = os .path .abspath (cwd or '.' )
70
70
filename = _normpath (filename , cwd )
71
71
72
- print (filename )
73
72
postargs = POST_ARGS
74
73
if os .path .basename (filename ) not in USE_LIMITED_C_API :
75
74
postargs += ('-DPy_BUILD_CORE=1' ,)
Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ Objects/genobject.c - _PyCoroWrapper_Type -
57
57
Objects/interpreteridobject.c - PyInterpreterID_Type -
58
58
Objects/iterobject.c - PyCallIter_Type -
59
59
Objects/iterobject.c - PySeqIter_Type -
60
+ Objects/iterobject.c - _PyAnextAwaitable_Type -
60
61
Objects/listobject.c - PyListIter_Type -
61
62
Objects/listobject.c - PyListRevIter_Type -
62
63
Objects/listobject.c - PyList_Type -
@@ -70,6 +71,7 @@ Objects/moduleobject.c - PyModule_Type -
70
71
Objects/namespaceobject.c - _PyNamespace_Type -
71
72
Objects/object.c - _PyNone_Type -
72
73
Objects/object.c - _PyNotImplemented_Type -
74
+ Objects/object.c - _PyAnextAwaitable_Type -
73
75
Objects/odictobject.c - PyODictItems_Type -
74
76
Objects/odictobject.c - PyODictIter_Type -
75
77
Objects/odictobject.c - PyODictKeys_Type -
@@ -113,8 +115,6 @@ Objects/codeobject.c - _PyLineIterator -
113
115
Objects/codeobject.c - _PyPositionsIterator -
114
116
Objects/genericaliasobject.c - _Py_GenericAliasIterType -
115
117
# Not in a .h file:
116
- Objects/iterobject.c - _PyAnextAwaitable_Type -
117
- # Not in a .h file:
118
118
Objects/memoryobject.c - _PyMemoryIter_Type -
119
119
<
4099
td data-grid-cell-id="diff-8d1e9a0d5771dfc3a628047509e2d4a1027327bd89392e5a3ec5fbd3d08cfa19-119-119-2" data-line-anchor="diff-8d1e9a0d5771dfc3a628047509e2d4a1027327bd89392e5a3ec5fbd3d08cfa19R119" data-selected="false" role="gridcell" style="background-color:var(--bgColor-default);padding-right:24px" tabindex="-1" valign="top" class="focusable-grid-cell diff-text-cell right-side-diff-cell left-side">Objects/unicodeobject.c - _PyUnicodeASCIIIter_Type -
120
120
Objects/unionobject.c - _PyUnion_Type -
You can’t perform that action at this time.
0 commit comments