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/test/test_generators.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/test/test_generators.py')
-rw-r--r-- | Lib/test/test_generators.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_generators.py b/Lib/test/test_generators.py index 1b5dfb0..a5b2c37 100644 --- a/Lib/test/test_generators.py +++ b/Lib/test/test_generators.py @@ -1,5 +1,3 @@ -from __future__ import nested_scopes - tutorial_tests = """ Let's try a simple generator: |