We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c158796 commit d1a3434Copy full SHA for d1a3434
libptmalloc2.py
@@ -38,8 +38,7 @@
38
39
except ImportError:
40
is_gdb = False
41
- print("Not running inside of GDB, limited functionality...")
42
- pass
+ print("[libptmalloc] Not running inside of GDB, limited functionality")
43
44
#try:
45
from printutils import *
prettyprinters.py
@@ -4,9 +4,8 @@
4
import gdb
5
is_gdb = True
6
7
- print("Not running inside of GDB, limited functionality")
+ print("[prettyprinters] Not running inside of GDB, limited functionality")
8
9
10
11
class malloc_par_printer:
12
"pretty printer for the malloc_par struct (mp_)"
0 commit comments