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/__future__.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/__future__.py')
-rw-r--r-- | Lib/__future__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/__future__.py b/Lib/__future__.py index de37336..8510ceb 100644 --- a/Lib/__future__.py +++ b/Lib/__future__.py @@ -66,4 +66,4 @@ class _Feature: return "Feature(" + `self.getOptionalRelease()` + ", " + \ `self.getMandatoryRelease()` + ")" -nested_scopes = _Feature((2, 1, 0, "beta", 1), (2, 2, 0, "final", 0)) +nested_scopes = _Feature((2, 1, 0, "beta", 1), (2, 2, 0, "alpha", 0)) |