Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c2af9e commit 3747ab5Copy full SHA for 3747ab5
numpy/core/tests/test_umath.py
@@ -397,6 +397,9 @@ def test_ldexp(self):
397
self._check_ldexp('i')
398
self._check_ldexp('l')
399
400
+ @dec.knownfailureif(sys.platform == 'win32' and sys.version_info < (2, 6),
401
+ "python.org < 2.6 binaries have broken ldexp in the "
402
+ "C runtime")
403
def test_ldexp_overflow(self):
404
imax = np.iinfo(np.dtype('l')).max
405
imin = np.iinfo(np.dtype('l')).min
0 commit comments