diff options
author | Georg Brandl <georg@python.org> | 2010-07-14 08:54:40 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-07-14 08:54:40 (GMT) |
commit | b639c14c32a737224382bfc5a690e0c05766e090 (patch) | |
tree | 4f4f24a411309a92c5253bd3eef03f73a271ba26 | |
parent | b0eb5da018785ca384679b990b8548338883c645 (diff) | |
download | cpython-b639c14c32a737224382bfc5a690e0c05766e090.zip cpython-b639c14c32a737224382bfc5a690e0c05766e090.tar.gz cpython-b639c14c32a737224382bfc5a690e0c05766e090.tar.bz2 |
#9235: fix missing import of sys.
-rw-r--r-- | Tools/gdb/libpython.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tools/gdb/libpython.py b/Tools/gdb/libpython.py index 0d59981..ac4aff5 100644 --- a/Tools/gdb/libpython.py +++ b/Tools/gdb/libpython.py @@ -43,6 +43,7 @@ The module also extends gdb with some python-specific commands. from __future__ import with_statement import gdb import locale +import sys # Look up the gdb.Type for some standard types: _type_char_ptr = gdb.lookup_type('char').pointer() # char* |