mirror of
https://github.com/python/cpython.git
synced 2025-07-31 23:23:11 +00:00
Fix test_compiler after adding unicode_literals
This commit is contained in:
parent
231346e23f
commit
311d071541
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue