File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11(gcd.py:10): <module>
2- -> 10 [38;5;94m """[39m
2+ -> 10 [38;5;166m """[39m
33Set basename (short filenames) in debugger output is on.
44Set event tracing is on.
55Set stopping before def or class statements is off.
Original file line number Diff line number Diff line change 11(gcd.py:10): <module>
2- -> 10 [38;5;94m """[39m
2+ -> 10 [38;5;166m """[39m
33Set basename (short filenames) in debugger output is on.
44Set event tracing is on.
55Set stopping before def or class statements is off.
66Set confirmation of potentially dangerous operations is off.
77line - gcd.py:10
88line - gcd.py:11
99(gcd.py:11): <module>
10- -- 11 [38;5;24 ;01mimport[39;00m [38;5;0msys[39m
11- 11 -> [38;5;24 ;01mimport[39;00m [38;5;0msys[39m
10+ -- 11 [38;5;28 ;01mimport[39;00m [38;5;31;01msys[39;00m
11+ 11 -> [38;5;28 ;01mimport[39;00m [38;5;31;01msys[39;00m
1212Set stopping before def or class statements is on.
1313line - gcd.py:13
1414line - gcd.py:26
1515line - gcd.py:40
1616(gcd.py:40): <module>
17- -- 40 [38;5;24 ;01mif[39;00m [38;5;0m__name__ [39m[38;5;166;01m ==[39;00m[38 ;5;64m '[39m[38 ;5;64m__main__[39m[38 ;5;64m '[39m[38;5;0;01m:[39;00m
18- 40 -> [38;5;24 ;01mif[39;00m [38;5;0m__name__ [39m[38;5;166;01m ==[39;00m[38 ;5;64m '[39m[38 ;5;64m__main__[39m[38 ;5;64m '[39m[38;5;0;01m:[39;00m
17+ -- 40 [38;5;28 ;01mif[39;00m [38;5;95m__name__ [39m[38;5;236m ==[39m[48 ;5;15m '[49m[48 ;5;15m__main__[49m[48 ;5;15m '[49m:
18+ 40 -> [38;5;28 ;01mif[39;00m [38;5;95m__name__ [39m[38;5;236m ==[39m[48 ;5;15m '[49m[48 ;5;15m__main__[49m[48 ;5;15m '[49m:
1919Set stopping before def or class statements is off.
2020line - gcd.py:41
2121(gcd.py:41): <module>
22- -- 41 [38;5;0mcheck_args[39m[38;5;0;01m([39;00m[38;5;0;01m)[39;00m
23- 41 -> [38;5;0mcheck_args[39m[38;5;0;01m([39;00m[38;5;0;01m)[39;00m
22+ -- 41 check_args()
23+ 41 -> check_args()
2424trepan2: That's all, folks...
Original file line number Diff line number Diff line change @@ -85,10 +85,10 @@ def main(dbg=None, sys_argv=list(sys.argv)):
8585 mainpyfile = whence_file (mainpyfile )
8686 is_readable = readable (mainpyfile )
8787 if is_readable is None :
88- print ("%s: Python script file '{mainpyfile} ' does not exist" % __title__ )
88+ print ("%s: Python script file '%s ' does not exist" % ( __title__ , mainpyfile ) )
8989 sys .exit (1 )
9090 elif not is_readable :
91- print ("%s: Can't read Python script file '{mainpyfile} '" % __title__ )
91+ print ("%s: Can't read Python script file '%s '" % ( __title__ , mainpyfile ) )
9292 sys .exit (1 )
9393 return
9494
Original file line number Diff line number Diff line change 2626
2727width = computed_displaywidth ()
2828is_dark_bg = is_dark_background ()
29- default_style = "monokai " if is_dark_bg else "tango"
29+ default_style = "colorful " if is_dark_bg else "tango"
3030
3131# Below are the default debugger settings. The debugger object version
3232# of this may change. A setting is something a user may want to
Original file line number Diff line number Diff line change 7676
7777color_scheme [Generic .Strong ] = ("*black*" , "*white*" )
7878color_scheme [Name .Variable ] = ("_black_" , "_white_" )
79- color_scheme [Generic .Emph ] = ("blue" , "brightcyan " )
79+ color_scheme [Generic .Emph ] = ("blue" , "blue " )
8080
8181pygments_version_tuple = tuple ([int (num ) for num in pygments_version .split ("." )[:2 ]])
8282purple = "magenta" if pygments_version_tuple >= (2 , 5 ) else "purple"
You can’t perform that action at this time.
0 commit comments