File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -3035,10 +3035,10 @@ branchesiter_dealloc(branchesiterator *bi)
30353035 PyObject_Free (bi );
30363036}
30373037
3038- PyTypeObject _PyBranchesIterator = {
3038+ static PyTypeObject _PyBranchesIterator = {
30393039 PyVarObject_HEAD_INIT (& PyType_Type , 0 )
30403040 "line_iterator" , /* tp_name */
3041- sizeof (branchesiterator ), /* tp_basicsize */
3041+ sizeof (branchesiterator ), /* tp_basicsize */
30423042 0 , /* tp_itemsize */
30433043 /* methods */
30443044 .tp_dealloc = (destructor )branchesiter_dealloc ,
Original file line number Diff line number Diff line change @@ -106,6 +106,8 @@ Python/context.c - PyContextToken_Type -
106106Python/context.c - PyContextVar_Type -
107107Python/context.c - PyContext_Type -
108108Python/instruction_sequence.c - _PyInstructionSequence_Type -
109+ Python/instrumentation.c - _PyLegacyBranchEventHandler_Type -
110+ Python/instrumentation.c - _PyBranchesIterator -
109111Python/traceback.c - PyTraceBack_Type -
110112
111113# #-----------------------
You can’t perform that action at this time.
0 commit comments