[pypy-commit] pypy py3k: py3k-ify

antocuni noreply at buildbot.pypy.org
Thu Apr 19 09:58:44 CEST 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: py3k
Changeset: r54516:2f004a1b7830
Date: 2012-04-19 09:51 +0200
http://bitbucket.org/pypy/pypy/changeset/2f004a1b7830/

Log:	py3k-ify

diff --git a/pypy/objspace/std/test/test_stringformat.py b/pypy/objspace/std/test/test_stringformat.py
--- a/pypy/objspace/std/test/test_stringformat.py
+++ b/pypy/objspace/std/test/test_stringformat.py
@@ -44,7 +44,7 @@
             def __getitem__(self, key):
                 return key
         assert '%(key)s'%MyMapping2() == 'key'
-        assert u'%(key)s'%MyMapping2() == u'key'
+        #assert u'%(key)s'%MyMapping2() == u'key'  # no py3k
 
 class AppTestStringObject:
 


More information about the pypy-commit mailing list