bpo-30983: Revert changes which broke most buildbots (#3100)

* Revert "Add Bruno Penteado to ACKS (#3091)"

This reverts commit f978405b3f.

* Revert "bpo-30983: eval frame rename in pep 0523 broke gdb's python extension (#2803)"

This reverts commit 2e0f4db114.
This commit is contained in:
Victor Stinner 2017-08-16 11:02:05 +02:00 committed by GitHub
parent 7f066844a7
commit 7cc33998b8
2 changed files with 2 additions and 5 deletions

View file

@ -1184,7 +1184,6 @@ Berker Peksag
Andreas Pelme Andreas Pelme
Steven Pemberton Steven Pemberton
Bo Peng Bo Peng
Bruno "Polaco" Penteado
Santiago Peresón Santiago Peresón
George Peristerakis George Peristerakis
Thomas Perl Thomas Perl

View file

@ -1502,10 +1502,8 @@ class Frame(object):
return False return False
def is_evalframeex(self): def is_evalframeex(self):
'''Is this a PyEval_EvalFrameEx or _PyEval_EvalFrameDefault (PEP 0523) '''Is this a PyEval_EvalFrameEx frame?'''
frame?''' if self._gdbframe.name() == 'PyEval_EvalFrameEx':
if self._gdbframe.name() in ('PyEval_EvalFrameEx',
'_PyEval_EvalFrameDefault'):
''' '''
I believe we also need to filter on the inline I believe we also need to filter on the inline
struct frame_id.inline_depth, only regarding frames with struct frame_id.inline_depth, only regarding frames with