Revision: 5439
http://jython.svn.sourceforge.net/jython/?rev=5439&view=rev
Author: fwierzbicki
Date: 2008-10-16 18:58:39 +0000 (Thu, 16 Oct 2008)
Log Message:
-----------
This is well tested in test_hexoct.py
Removed Paths:
-------------
trunk/jython/bugtests/test133.py
Deleted: trunk/jython/bugtests/test133.py
===================================================================
--- trunk/jython/bugtests/test133.py 2008-10-16 18:56:04 UTC (rev 5438)
+++ trunk/jython/bugtests/test133.py 2008-10-16 18:58:39 UTC (rev 5439)
@@ -1,20 +0,0 @@
-"""
-Test some hex conversions.
-"""
-
-import support
-
-support.compare('%x' % -1, "ffffffff")
-
-support.compare(str(hex(-1l)), "-0x1L")
-
-if int("0", 16) != 0:
- raise support.TestError("Should return 0")
-
-#Test removed. %x can handle longs in 2.0
-#try:
-# print '%x' % 0x100000000L
-#except OverflowError, e:
-# support.compare(e, "long int too long")
-#else:
-# raise support.TestError("Should raise a OverflowException")
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|