diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2008-03-27 05:02:57 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2008-03-27 05:02:57 +0000 |
commit | 311d071541ba1fd8615ecf604026e96d547c1d80 (patch) | |
tree | d1356bc652da3c7709eb18c8487b983a4ea5adef /Lib/compiler/future.py | |
parent | 231346e23f3bcb5102199712b998ca7f2354dfdd (diff) | |
download | cpython-git-311d071541ba1fd8615ecf604026e96d547c1d80.tar.gz |
Fix test_compiler after adding unicode_literals
Diffstat (limited to 'Lib/compiler/future.py')
-rw-r--r-- | Lib/compiler/future.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/compiler/future.py b/Lib/compiler/future.py index d94fcddc7e..fd5e5dfb37 100644 --- a/Lib/compiler/future.py +++ b/Lib/compiler/future.py @@ -16,7 +16,8 @@ def is_future(stmt): class FutureParser: features = ("nested_scopes", "generators", "division", - "absolute_import", "with_statement", "print_function") + "absolute_import", "with_statement", "print_function", + "unicode_literals") def __init__(self): self.found = {} # set |