diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2008-03-27 05:02:57 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2008-03-27 05:02:57 (GMT) |
commit | 311d071541ba1fd8615ecf604026e96d547c1d80 (patch) | |
tree | d1356bc652da3c7709eb18c8487b983a4ea5adef | |
parent | 231346e23f3bcb5102199712b998ca7f2354dfdd (diff) | |
download | cpython-311d071541ba1fd8615ecf604026e96d547c1d80.zip cpython-311d071541ba1fd8615ecf604026e96d547c1d80.tar.gz cpython-311d071541ba1fd8615ecf604026e96d547c1d80.tar.bz2 |
Fix test_compiler after adding unicode_literals
-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 d94fcdd..fd5e5df 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 |