File tree 2 files changed +9
-6
lines changed
2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -187,16 +187,19 @@ struct _ts {
187
187
/* The following fields are here to avoid allocation during init.
188
188
The data is exposed through PyThreadState pointer fields.
189
189
These fields should not be accessed directly outside of init.
190
+ This is indicated by an underscore prefix on the field names.
190
191
191
192
All other PyInterpreterState pointer fields are populated when
192
193
needed and default to NULL.
193
194
*/
195
+ // Note some fields do not have a leading underscore for backward
196
+ // compatibility. See https://bugs.python.org/issue45953#msg412046.
194
197
195
198
/* The thread's exception stack entry. (Always the last entry.) */
196
- _PyErr_StackItem _exc_state ;
199
+ _PyErr_StackItem exc_state ;
197
200
198
201
/* The bottom-most frame on the stack. */
199
- CFrame _root_cframe ;
202
+ CFrame root_cframe ;
200
203
};
201
204
202
205
Original file line number Diff line number Diff line change @@ -776,9 +776,9 @@ init_threadstate(PyThreadState *tstate,
776
776
tstate -> recursion_limit = interp -> ceval .recursion_limit ,
777
777
tstate -> recursion_remaining = interp -> ceval .recursion_limit ,
778
778
779
- tstate -> exc_info = & tstate -> _exc_state ;
779
+ tstate -> exc_info = & tstate -> exc_state ;
780
780
781
- tstate -> cframe = & tstate -> _root_cframe ;
781
+ tstate -> cframe = & tstate -> root_cframe ;
782
782
tstate -> datastack_chunk = NULL ;
783
783
tstate -> datastack_top = NULL ;
784
784
tstate -> datastack_limit = NULL ;
@@ -1016,10 +1016,10 @@ PyThreadState_Clear(PyThreadState *tstate)
1016
1016
Py_CLEAR (tstate -> curexc_value );
1017
1017
Py_CLEAR (tstate -> curexc_traceback );
1018
1018
1019
- Py_CLEAR (tstate -> _exc_state .exc_value );
1019
+ Py_CLEAR (tstate -> exc_state .exc_value );
1020
1020
1021
1021
/* The stack of exception states should contain just this thread. */
1022
- if (verbose && tstate -> exc_info != & tstate -> _exc_state ) {
1022
+ if (verbose && tstate -> exc_info != & tstate -> exc_state ) {
1023
1023
fprintf (stderr ,
1024
1024
"PyThreadState_Clear: warning: thread still has a generator\n" );
1025
1025
}
You can’t perform that action at this time.
0 commit comments