This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients eric.smith, lemburg, mark.dickinson, pitrou, stutzbach
Date 2014-10-10.15:35:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1412955313.16.0.545983222946.issue22604@psf.upfronthosting.co.za>
In-reply-to
Content
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?)
History
Date User Action Args
2014-10-10 15:35:13pitrousetrecipients: + pitrou, lemburg, mark.dickinson, eric.smith, stutzbach
2014-10-10 15:35:13pitrousetmessageid: <1412955313.16.0.545983222946.issue22604@psf.upfronthosting.co.za>
2014-10-10 15:35:13pitroulinkissue22604 messages
2014-10-10 15:35:13pitroucreate