[issue23229] add inf, nan, infj, nanj to cmath module

Mark Dickinson report at bugs.python.org
Tue Jan 13 18:27:32 CET 2015


Mark Dickinson added the comment:

> Having them in the cmath module provides a place
to document them which will then be searchable.

Okay, makes sense.

One of the reasons I'm a bit unhappy with the idea of adding infj and nanj is that it seems like an encouragement to expect "eval(repr(z))" to work (i.e., recover the original value of z), and because Python doesn't have strict imaginary numbers (i.e., numbers with no real part at all), that fails:

>>> from math import inf, nan
>>> infj = complex(0.0, inf)
>>> nanj = complex(0.0, nan)
>>> z = complex(0.0, -inf)
>>> w = eval(repr(z))
>>> z
-infj
>>> w  # real part has the "wrong" sign
(-0-infj)

But that's a pretty hollow objection, because this really has nothing to do with inf and nan; it's a problem with finite values, too:

>>> z = complex(0.0, -3.4)
>>> w = eval(repr(z))
>>> z
-3.4j
>>> w
(-0-3.4j)

So I'll add infj and nanj if the consensus is that they're useful.

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue23229>
_______________________________________


More information about the Python-bugs-list mailing list