[pypy-svn] pypy default: also test assignment to byte literals

gutworth commits-noreply at bitbucket.org
Wed Apr 13 01:01:58 CEST 2011


Author: Benjamin Peterson <benjamin at python.org>
Branch: 
Changeset: r43318:5bc5b474b1f9
Date: 2011-04-12 18:02 -0500
http://bitbucket.org/pypy/pypy/changeset/5bc5b474b1f9/

Log:	also test assignment to byte literals

diff --git a/pypy/interpreter/astcompiler/test/test_astbuilder.py b/pypy/interpreter/astcompiler/test/test_astbuilder.py
--- a/pypy/interpreter/astcompiler/test/test_astbuilder.py
+++ b/pypy/interpreter/astcompiler/test/test_astbuilder.py
@@ -755,6 +755,7 @@
             ("{x : x for x in z}", "dict comprehension"),
             ("'str'", "literal"),
             ("u'str'", "literal"),
+            ("b'bytes'", "literal"),
             ("()", "()"),
             ("23", "literal"),
             ("{}", "literal"),


More information about the Pypy-commit mailing list