DebugClients/Python3/DebugBase.py

branch
5_4_x
changeset 3641
8cfe4af1af36
parent 3160
209a07d7e401
equal deleted inserted replaced
3639:5234afd7a6d7 3641:8cfe4af1af36
802 802
803 fn = self.fix_frame_filename(frame) 803 fn = self.fix_frame_filename(frame)
804 804
805 # Eliminate things like <string> and <stdin>. 805 # Eliminate things like <string> and <stdin>.
806 if fn[0] == '<': 806 if fn[0] == '<':
807 return 1 807 return True
808 808
809 #XXX - think of a better way to do this. It's only a convience for 809 #XXX - think of a better way to do this. It's only a convience for
810 #debugging the debugger - when the debugger code is in the current 810 #debugging the debugger - when the debugger code is in the current
811 #directory. 811 #directory.
812 if os.path.basename(fn) in [ 812 if os.path.basename(fn) in [

eric ide

mercurial