History log of /external/python/cpython2/Lib/test/test_cmath.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
0d2fac1fba893a8af7324a698589d7db43114825 23-Jun-2015 Antoine Pitrou <solipsis@pitrou.net> Issue #24489: ensure a previously set C errno doesn't disturb cmath.polar().
/external/python/cpython2/Lib/test/test_cmath.py
1f70221b861a3714735251d57695b2f472d0599b 10-Dec-2013 Zachary Ware <zachary.ware@gmail.com> Issue #19572: More silently skipped tests explicitly skipped.
/external/python/cpython2/Lib/test/test_cmath.py
b3be23ad27f35bae55638e2ccf0bbb121d8e66ed 05-Mar-2010 Benjamin Peterson <benjamin@python.org> remove the svn:executable property from files that don't have shebang lines
/external/python/cpython2/Lib/test/test_cmath.py
a4f46e129294c686ef1effdd89c459bd9a624e6d 07-Feb-2010 Georg Brandl <georg@python.org> Remove unused imports in test modules.
/external/python/cpython2/Lib/test/test_cmath.py
603ae9e371fee4e2f61375cd9738559acacae987 20-Dec-2009 Mark Dickinson <dickinsm@gmail.com> Issue #7554: Various fixups in test_cmath.py: remove code duplication,
use new-style formatting. Thanks Florent Xicluna for the patch.
/external/python/cpython2/Lib/test/test_cmath.py
3e0bafef25940b3fe80f327b64c304c0bef83924 20-Dec-2009 Mark Dickinson <dickinsm@gmail.com> Fix for consistency with py3k keyword-only version of assertAlmostEqual
/external/python/cpython2/Lib/test/test_cmath.py
1d2ae215aa94ce59f88585de447067e3df252716 20-Dec-2009 Mark Dickinson <dickinsm@gmail.com> Issue #7554: Fix incorrect usage of rAssertAlmostEqual. Thanks Florent Xicluna.
/external/python/cpython2/Lib/test/test_cmath.py
5c8da86f3a515ce1a6d5f27fd15e3c5f4d8e931e 01-Jul-2009 Benjamin Peterson <benjamin@python.org> convert usage of fail* to assert*
/external/python/cpython2/Lib/test/test_cmath.py
6f34109384f3a78d5f4f8bdd418a89caca19631e 19-Apr-2008 Christian Heimes <christian@cheimes.de> I finally got the time to update and merge Mark's and my trunk-math branch. The patch is collaborated work of Mark Dickinson and me. It was mostly done a few months ago. The patch fixes a lot of loose ends and edge cases related to operations with NaN, INF, very small values and complex math.

The patch also adds acosh, asinh, atanh, log1p and copysign to all platforms. Finally it fixes differences between platforms like different results or exceptions for edge cases. Have fun :)
/external/python/cpython2/Lib/test/test_cmath.py
2b869943fa284be9f3b9572df10b334f12962aa6 17-Mar-2007 Georg Brandl <georg@python.org> Patch #1675423: PyComplex_AsCComplex() now tries to convert an object
to complex using its __complex__() method before falling back to the
__float__() method. Therefore, the functions in the cmath module now
can operate on objects that define a __complex__() method.
(backport)
/external/python/cpython2/Lib/test/test_cmath.py
b67ad7e67159365faa1e61d436df99010bc7c97d 14-Jun-2004 Raymond Hettinger <python@rcn.com> Patch #826074: cmath.log optional base argument, fixes #823209
(Contributed by Andrew Gaul.)
/external/python/cpython2/Lib/test/test_cmath.py
04f357cffef6d764f2f0ff2671dabde75ec250d1 23-Jul-2002 Barry Warsaw <barry@python.org> Get rid of relative imports in all unittests. Now anything that
imports e.g. test_support must do so using an absolute package name
such as "import test.test_support" or "from test import test_support".

This also updates the README in Lib/test, and gets rid of the
duplicate data dirctory in Lib/test/data (replaced by
Lib/email/test/data).

Now Tim and Jack can have at it. :)
/external/python/cpython2/Lib/test/test_cmath.py
f785042433f0c43ed1ba2ba0388fc51d79bcf5c3 17-Jan-2001 Fredrik Lundh <fredrik@pythonware.com> a bold attempt to fix things broken by MAL's verify patch: import
'verify' iff it's used by a test module...
/external/python/cpython2/Lib/test/test_cmath.py
3661908a6ac75026e4504d9f62a6ac2e2fb2ec5e 17-Jan-2001 Marc-André Lemburg <mal@egenix.com> This patch removes all uses of "assert" in the regression test suite
and replaces them with a new API verify(). As a result the regression
suite will also perform its tests in optimization mode.

Written by Marc-Andre Lemburg. Copyright assigned to Guido van Rossum.
/external/python/cpython2/Lib/test/test_cmath.py
41360a4696f488e49e5409b3b1baf1fff6ae0044 26-Mar-1998 Guido van Rossum <guido@python.org> Mass check-in after untabifying all files that need it.
/external/python/cpython2/Lib/test/test_cmath.py
f85f052035d92fe2d33d4cf5e4a6111c33c23189 20-Dec-1996 Roger E. Masse <rmasse@newcnri.cnri.reston.va.us> Very very small comment change.
/external/python/cpython2/Lib/test/test_cmath.py
fab8ab80674375b945e93792701c672af98da067 20-Dec-1996 Roger E. Masse <rmasse@newcnri.cnri.reston.va.us> Many scripts, but small changes. Update the way the scripts obtain the
'verbose' flag ala GvR updated test harness architecture.

Old way:

verbose = 0
if __name__ == '__main__':
verbose = 1

New way:

from test_support import verbose

Some other small readablility and functionality updates.
/external/python/cpython2/Lib/test/test_cmath.py
3daddda165d66df767251c70b418d7f86820293d 09-Dec-1996 Roger E. Masse <rmasse@newcnri.cnri.reston.va.us> New test module for complex math module
/external/python/cpython2/Lib/test/test_cmath.py