From b639c14c32a737224382bfc5a690e0c05766e090 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Wed, 14 Jul 2010 08:54:40 +0000 Subject: [PATCH] #9235: fix missing import of sys. --- Tools/gdb/libpython.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Tools/gdb/libpython.py b/Tools/gdb/libpython.py index 0d599811d9f..ac4aff5e32a 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*