[pypy-svn] r8574 - pypy/dist/pypy/objspace/std/test

arigo at codespeak.net arigo at codespeak.net
Tue Jan 25 17:19:37 CET 2005


Author: arigo
Date: Tue Jan 25 17:19:37 2005
New Revision: 8574

Modified:
   pypy/dist/pypy/objspace/std/test/test_stringformat.py
Log:
A test that failed before Ludovic's fix in intobject.py.


Modified: pypy/dist/pypy/objspace/std/test/test_stringformat.py
==============================================================================
--- pypy/dist/pypy/objspace/std/test/test_stringformat.py	(original)
+++ pypy/dist/pypy/objspace/std/test/test_stringformat.py	Tue Jan 25 17:19:37 2005
@@ -69,6 +69,7 @@
         assert '23' == '%d' % 23
         assert '17' == '%x' % 23
         assert '0x17' == '%#x' % 23
+        assert '0x0' == '%#x' % 0
         assert '23' == '%s' % 23
         assert '23' == '%r' % 23
 



More information about the Pypy-commit mailing list