[pypy-svn] r11738 - pypy/dist/lib-python/modified-2.3.4/test
arigo at codespeak.net
arigo at codespeak.net
Sun May 1 23:03:48 CEST 2005
Author: arigo
Date: Sun May 1 23:03:47 2005
New Revision: 11738
Modified:
pypy/dist/lib-python/modified-2.3.4/test/test_complex.py
Log:
Yet another reduction of number of tests to allow test_complex not to time out.
Modified: pypy/dist/lib-python/modified-2.3.4/test/test_complex.py
==============================================================================
--- pypy/dist/lib-python/modified-2.3.4/test/test_complex.py (original)
+++ pypy/dist/lib-python/modified-2.3.4/test/test_complex.py Sun May 1 23:03:47 2005
@@ -68,7 +68,7 @@
self.assertClose(q, x)
def test_div(self):
- simple_real = [-2.0, 0.0, 1.0, 5.0]
+ simple_real = [-2.0, 0.0, 1.0]
simple_complex = [complex(x, y) for x in simple_real for y in simple_real]
for x in simple_complex:
for y in simple_complex:
More information about the Pypy-commit
mailing list