From 311d071541ba1fd8615ecf604026e96d547c1d80 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Thu, 27 Mar 2008 05:02:57 +0000 Subject: Fix test_compiler after adding unicode_literals --- Lib/compiler/future.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- cgit v0.12