##// END OF EJS Templates
Fix pdb issues in Python 3.13.1 (#14598)...
M Bussonnier -
r28973:be84e4b5 merge
parent child Browse files
Show More
@@ -550,7 +550,7 class Pdb(OldPdb):
550 So if frame is self.current_frame we instead return self.curframe_locals
550 So if frame is self.current_frame we instead return self.curframe_locals
551
551
552 """
552 """
553 if frame is self.curframe:
553 if frame is getattr(self, "curframe", None):
554 return self.curframe_locals
554 return self.curframe_locals
555 else:
555 else:
556 return frame.f_locals
556 return frame.f_locals
General Comments 0
You need to be logged in to leave comments. Login now