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 serhiy.storchaka
Recipients gvanrossum, mark.dickinson, serhiy.storchaka, vstinner
Date 2015-01-13.09:59:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1421143160.19.0.639281892576.issue23229@psf.upfronthosting.co.za>
In-reply-to
Content
There are other names which exist only in math, but not in cmath.

>>> sorted(set(dir(math)) - set(dir(cmath)))
['atan2', 'ceil', 'copysign', 'degrees', 'erf', 'erfc', 'expm1', 'fabs', 'factorial', 'floor', 'fmod', 'frexp', 'fsum', 'gamma', 'hypot', 'inf', 'ldexp', 'lgamma', 'log1p', 'log2', 'modf', 'nan', 'pow', 'radians', 'trunc']

May be complex equivalents of all functions should be added for the same reasons?
History
Date User Action Args
2015-01-13 09:59:20serhiy.storchakasetrecipients: + serhiy.storchaka, gvanrossum, mark.dickinson, vstinner
2015-01-13 09:59:20serhiy.storchakasetmessageid: <1421143160.19.0.639281892576.issue23229@psf.upfronthosting.co.za>
2015-01-13 09:59:20serhiy.storchakalinkissue23229 messages
2015-01-13 09:59:19serhiy.storchakacreate