diff options
author | Christian Heimes <christian@cheimes.de> | 2007-12-11 00:54:34 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2007-12-11 00:54:34 (GMT) |
commit | f15c66e1439b9eecf813ed737cd6210048b0c094 (patch) | |
tree | 647815bad1aa23f6a394b5c83accef2ae63f4f37 /Lib/test/test_float.py | |
parent | 0c64fb435aab0ae8f8ce93634c156b2eedede184 (diff) | |
download | cpython-f15c66e1439b9eecf813ed737cd6210048b0c094.zip cpython-f15c66e1439b9eecf813ed737cd6210048b0c094.tar.gz cpython-f15c66e1439b9eecf813ed737cd6210048b0c094.tar.bz2 |
The new float repr causes too much trouble and pain. I'm disabling the feature until we have sorted out the issues on all machines. 64bit machines seem to have issues and Guido has reported even worse.
Guido: It's pretty bad actually -- repr(1e5) comes out as '1.0'... Ditto for
repr(1eN) for most N... Both in 2.6 and in 3.0...
Diffstat (limited to 'Lib/test/test_float.py')
-rw-r--r-- | Lib/test/test_float.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_float.py b/Lib/test/test_float.py index 327eeae..ed5109f 100644 --- a/Lib/test/test_float.py +++ b/Lib/test/test_float.py @@ -134,7 +134,8 @@ def test_main(): FormatFunctionsTestCase, UnknownFormatTestCase, IEEEFormatTestCase, - ReprTestCase) + #ReprTestCase + ) if __name__ == '__main__': test_main() |