DebugClients/Python3/DebugBase.py

changeset 3640
2bf828881e86
parent 3591
2f2a4a76dd22
child 3670
f0cb7579c0b4
equal deleted inserted replaced
3638:cede64100e13 3640:2bf828881e86
806 806
807 fn = self.fix_frame_filename(frame) 807 fn = self.fix_frame_filename(frame)
808 808
809 # Eliminate things like <string> and <stdin>. 809 # Eliminate things like <string> and <stdin>.
810 if fn[0] == '<': 810 if fn[0] == '<':
811 return 1 811 return True
812 812
813 #XXX - think of a better way to do this. It's only a convience for 813 #XXX - think of a better way to do this. It's only a convience for
814 #debugging the debugger - when the debugger code is in the current 814 #debugging the debugger - when the debugger code is in the current
815 #directory. 815 #directory.
816 if os.path.basename(fn) in [ 816 if os.path.basename(fn) in [

eric ide

mercurial