#9235: fix missing import of sys.

This commit is contained in:
Georg Brandl 2010-07-14 08:54:40 +00:00
parent b0eb5da018
commit b639c14c32
1 changed files with 1 additions and 0 deletions

View File

@ -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*