Author: Antonio Cuni <[email protected]>
Branch: py3k
Changeset: r54973:18ed5d8ffcf1
Date: 2012-05-08 14:51 +0200
http://bitbucket.org/pypy/pypy/changeset/18ed5d8ffcf1/
Log: py3k-ify
diff --git a/pypy/interpreter/astcompiler/test/test_compiler.py
b/pypy/interpreter/astcompiler/test/test_compiler.py
--- a/pypy/interpreter/astcompiler/test/test_compiler.py
+++ b/pypy/interpreter/astcompiler/test/test_compiler.py
@@ -922,7 +922,7 @@
ops.RETURN_VALUE: 1}
source = """def f():
- return u"\U00012345abcdef"[3]
+ return "\U00012345abcdef"[3]
"""
counts = self.count_instructions(source)
assert counts == {ops.LOAD_CONST: 2, ops.BINARY_SUBSCR: 1,
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit