Skip to content

Commit 7cc3399

Browse files
authored
bpo-30983: Revert changes which broke most buildbots (#3100)
* Revert "Add Bruno Penteado to ACKS (#3091)" This reverts commit f978405. * Revert "bpo-30983: eval frame rename in pep 0523 broke gdb's python extension (#2803)" This reverts commit 2e0f4db.
1 parent 7f06684 commit 7cc3399

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

Misc/ACKS

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1184,7 +1184,6 @@ Berker Peksag
11841184
Andreas Pelme
11851185
Steven Pemberton
11861186
Bo Peng
1187-
Bruno "Polaco" Penteado
11881187
Santiago Peresón
11891188
George Peristerakis
11901189
Thomas Perl

Tools/gdb/libpython.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1502,10 +1502,8 @@ def is_python_frame(self):
15021502
return False
15031503

15041504
def is_evalframeex(self):
1505-
'''Is this a PyEval_EvalFrameEx or _PyEval_EvalFrameDefault (PEP 0523)
1506-
frame?'''
1507-
if self._gdbframe.name() in ('PyEval_EvalFrameEx',
1508-
'_PyEval_EvalFrameDefault'):
1505+
'''Is this a PyEval_EvalFrameEx frame?'''
1506+
if self._gdbframe.name() == 'PyEval_EvalFrameEx':
15091507
'''
15101508
I believe we also need to filter on the inline
15111509
struct frame_id.inline_depth, only regarding frames with

0 commit comments

Comments
 (0)