diff options
author | Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) <greg@krypto.org> | 2016-09-08 13:47:41 -0700 |
---|---|---|
committer | Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) <greg@krypto.org> | 2016-09-08 13:47:41 -0700 |
commit | a68c1bca7bd35571dd1bab736fd69452eca8394e (patch) | |
tree | ae3988fac9148839a46d00b40ff32288af062d59 /Tools/gdb/libpython.py | |
parent | 18a7d2b4555af5f8f8a1c370339e334503b1ec09 (diff) | |
download | cpython-git-a68c1bca7bd35571dd1bab736fd69452eca8394e.tar.gz |
Remove legacy "from __future__ import with_statement" lines.
Diffstat (limited to 'Tools/gdb/libpython.py')
-rwxr-xr-x | Tools/gdb/libpython.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/gdb/libpython.py b/Tools/gdb/libpython.py index 75f1ccbd44..3e95b4441d 100755 --- a/Tools/gdb/libpython.py +++ b/Tools/gdb/libpython.py @@ -44,7 +44,7 @@ The module also extends gdb with some python-specific commands. # NOTE: some gdbs are linked with Python 3, so this file should be dual-syntax # compatible (2.6+ and 3.0+). See #19308. -from __future__ import print_function, with_statement +from __future__ import print_function import gdb import os import locale |