[pypy-commit] pypy rpython-unicode-formatting: a branch where to add support for % formatting to unicode strings in rpython

antocuni noreply at buildbot.pypy.org
Wed Jul 18 14:44:07 CEST 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: rpython-unicode-formatting
Changeset: r56132:61073e926d0b
Date: 2012-07-18 11:40 +0200
http://bitbucket.org/pypy/pypy/changeset/61073e926d0b/

Log:	a branch where to add support for % formatting to unicode strings in
	rpython

diff --git a/pypy/rlib/test/test_objectmodel.py b/pypy/rlib/test/test_objectmodel.py
--- a/pypy/rlib/test/test_objectmodel.py
+++ b/pypy/rlib/test/test_objectmodel.py
@@ -429,6 +429,7 @@
     exc = py.test.raises(TypeError, "f(1, 2, 3)")
     assert exc.value.message == "f argument number 2 must be of type <type 'str'>"
     py.test.raises(TypeError, "f('hello', 'world', 3)")
+    
 
 def test_enforceargs_defaults():
     @enforceargs(int, int)


More information about the pypy-commit mailing list