Message229011
This only happens in debug mode:
>>> complex(0.0, 0.0) / complex(float('nan'), 0.0)
python: Objects/complexobject.c:98: _Py_c_quot: Assertion `b.imag != 0.0' failed.
In release mode, this gives:
>>> complex(0.0, 0.0) / complex(float('nan'), 0.0)
(nan+nanj)
(is it the right result?) |
|
Date |
User |
Action |
Args |
2014-10-10 15:35:13 | pitrou | set | recipients:
+ pitrou, lemburg, mark.dickinson, eric.smith, stutzbach |
2014-10-10 15:35:13 | pitrou | set | messageid: <1412955313.16.0.545983222946.issue22604@psf.upfronthosting.co.za> |
2014-10-10 15:35:13 | pitrou | link | issue22604 messages |
2014-10-10 15:35:13 | pitrou | create | |
|