We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dae34aa commit d53cd79Copy full SHA for d53cd79
trepan/processor/command/python.py
@@ -94,12 +94,16 @@ def run(self, args):
94
pass
95
96
97
- banner_tmpl = """trepan3k python shell%s
98
-Use dbgr(*string*) to issue debugger command: *string*"""
+ banner_tmpl = """\033[1mIPython trepan3k shell%s\033[0m
+
99
+Use dbgr(\x1b[3mstring\x1b[0m) to issue non-continuing debugger command.
100
+"""
101
102
debug = len(args) > 1 and args[1] == "-d"
103
if debug:
- banner_tmpl += "\nVariable 'debugger' contains a trepan" "debugger object."
104
+ banner_tmpl += (
105
+ "\nVariable \x1b[3mdebugger\x1b[0m) contains a trepan debugger object."
106
+ )
107
108
109
my_locals = {}
0 commit comments