[pypy-svn] r78426 - pypy/branch/fast-forward/pypy/objspace/std/test

afa at codespeak.net afa at codespeak.net
Thu Oct 28 23:42:49 CEST 2010


Author: afa
Date: Thu Oct 28 23:42:48 2010
New Revision: 78426

Modified:
   pypy/branch/fast-forward/pypy/objspace/std/test/test_strutil.py
Log:
update: '0x' is *no more* a correct hexadecimal number


Modified: pypy/branch/fast-forward/pypy/objspace/std/test/test_strutil.py
==============================================================================
--- pypy/branch/fast-forward/pypy/objspace/std/test/test_strutil.py	(original)
+++ pypy/branch/fast-forward/pypy/objspace/std/test/test_strutil.py	Thu Oct 28 23:42:48 2010
@@ -48,10 +48,6 @@
                  ('0x10', 0, 16),
                  ('0XE',  0, 14),
                  ('0',    0, 0),
-                 ('0x',   0, 0),    # according to CPython so far
-                 ('0X',   0, 0),    #     "           "
-                 ('0x',  16, 0),    #     "           "
-                 ('0X',  16, 0),    #     "           "
                  ('0b11', 2, 3),
                  ('0B10', 2, 2),
                  ('0o77', 8, 63),



More information about the Pypy-commit mailing list