diff options
Diffstat (limited to 'Lib/__future__.py')
-rw-r--r-- | Lib/__future__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/__future__.py b/Lib/__future__.py index 65416ae..4cba7ed 100644 --- a/Lib/__future__.py +++ b/Lib/__future__.py @@ -68,3 +68,4 @@ class _Feature: nested_scopes = _Feature((2, 1, 0, "beta", 1), (2, 2, 0, "alpha", 0)) generators = _Feature((2, 2, 0, "alpha", 1), (2, 3, 0, "final", 0)) +division = _Feature((2, 2, 0, "alpha", 2), (3, 0, 0, "alpha", 0)) |