Merge pull request #4925 from blueyed/pm-super

pdb: post_mortem: use super()
This commit is contained in:
Daniel Hahler
2019-03-15 00:50:46 +01:00
committed by GitHub

View File

@@ -263,9 +263,9 @@ def _find_last_non_hidden_frame(stack):
def post_mortem(t):
class Pdb(pytestPDB._pdb_cls):
class Pdb(pytestPDB._pdb_cls, object):
def get_stack(self, f, t):
stack, i = pdb.Pdb.get_stack(self, f, t)
stack, i = super(Pdb, self).get_stack(f, t)
if f is None:
i = _find_last_non_hidden_frame(stack)
return stack, i