Skip to content

Commit d1a3434

Browse files
Cedric HalbronnCedric Halbronn
Cedric Halbronn
authored and
Cedric Halbronn
committed
info message
1 parent c158796 commit d1a3434

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

libptmalloc2.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@
3838

3939
except ImportError:
4040
is_gdb = False
41-
print("Not running inside of GDB, limited functionality...")
42-
pass
41+
print("[libptmalloc] Not running inside of GDB, limited functionality")
4342

4443
#try:
4544
from printutils import *

prettyprinters.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@
44
import gdb
55
is_gdb = True
66
except ImportError:
7-
print("Not running inside of GDB, limited functionality")
7+
print("[prettyprinters] Not running inside of GDB, limited functionality")
88
is_gdb = False
9-
pass
109

1110
class malloc_par_printer:
1211
"pretty printer for the malloc_par struct (mp_)"

0 commit comments

Comments
 (0)