File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -754,7 +754,7 @@ struct _is {
754
754
* and should be placed at the beginning. */
755
755
struct _ceval_state ceval ;
756
756
757
- /* This structure is carefully allocated so that it's correctly aligned
757
+ /* This structure is carefully allocated so that it's correctly aligned
758
758
* to avoid undefined behaviors during LOAD and STORE. The '_malloced'
759
759
* field stores the allocated pointer address that will later be freed.
760
760
*/
@@ -941,18 +941,18 @@ struct _is {
941
941
942
942
Py_ssize_t _interactive_src_count ;
943
943
944
- /* the initial PyInterpreterState.threads.head */
945
- _PyThreadStateImpl _initial_thread ;
946
- // _initial_thread should be the last field of PyInterpreterState.
947
- // See https://github.com/python/cpython/issues/127117.
948
-
949
944
#if !defined(Py_GIL_DISABLED ) && defined(Py_STACKREF_DEBUG )
950
945
uint64_t next_stackref ;
951
946
_Py_hashtable_t * open_stackrefs_table ;
952
947
# ifdef Py_STACKREF_CLOSE_DEBUG
953
948
_Py_hashtable_t * closed_stackrefs_table ;
954
949
# endif
955
950
#endif
951
+
952
+ /* the initial PyInterpreterState.threads.head */
953
+ _PyThreadStateImpl _initial_thread ;
954
+ // _initial_thread should be the last field of PyInterpreterState.
955
+ // See https://github.com/python/cpython/issues/127117.
956
956
};
957
957
958
958
You can’t perform that action at this time.
0 commit comments