diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-07-12 22:36:02 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-07-12 22:36:02 (GMT) |
commit | c4889c496ade6a1529a74054f8fcc2847d8cd0bb (patch) | |
tree | 996c3f196b2fe35c6c0e6c382cd1450b60594136 /Lib/symtable.py | |
parent | 9a1ae1a9605b2832e2cdfee1f35cbb811ca2729f (diff) | |
download | cpython-c4889c496ade6a1529a74054f8fcc2847d8cd0bb.zip cpython-c4889c496ade6a1529a74054f8fcc2847d8cd0bb.tar.gz cpython-c4889c496ade6a1529a74054f8fcc2847d8cd0bb.tar.bz2 |
Remove now-unnecessary "from __future__ import nested_scopes" stmts.
Diffstat (limited to 'Lib/symtable.py')
-rw-r--r-- | Lib/symtable.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/symtable.py b/Lib/symtable.py index 210c339..15549ee 100644 --- a/Lib/symtable.py +++ b/Lib/symtable.py @@ -1,5 +1,4 @@ """Interface to the compiler's internal symbol tables""" -from __future__ import nested_scopes import _symtable from _symtable import USE, DEF_GLOBAL, DEF_LOCAL, DEF_PARAM, \ |