mirror of https://github.com/python/cpython.git
bpo-30983: Revert changes which broke most buildbots (#3100)
* Revert "Add Bruno Penteado to ACKS (#3091)" This reverts commitf978405b3f
. * Revert "bpo-30983: eval frame rename in pep 0523 broke gdb's python extension (#2803)" This reverts commit2e0f4db114
.
This commit is contained in:
parent
7f066844a7
commit
7cc33998b8
|
@ -1184,7 +1184,6 @@ Berker Peksag
|
|||
Andreas Pelme
|
||||
Steven Pemberton
|
||||
Bo Peng
|
||||
Bruno "Polaco" Penteado
|
||||
Santiago Peresón
|
||||
George Peristerakis
|
||||
Thomas Perl
|
||||
|
|
|
@ -1502,10 +1502,8 @@ def is_python_frame(self):
|
|||
return False
|
||||
|
||||
def is_evalframeex(self):
|
||||
'''Is this a PyEval_EvalFrameEx or _PyEval_EvalFrameDefault (PEP 0523)
|
||||
frame?'''
|
||||
if self._gdbframe.name() in ('PyEval_EvalFrameEx',
|
||||
'_PyEval_EvalFrameDefault'):
|
||||
'''Is this a PyEval_EvalFrameEx frame?'''
|
||||
if self._gdbframe.name() == 'PyEval_EvalFrameEx':
|
||||
'''
|
||||
I believe we also need to filter on the inline
|
||||
struct frame_id.inline_depth, only regarding frames with
|
||||
|
|
Loading…
Reference in New Issue