diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2016-08-29 12:56:58 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2016-08-29 12:56:58 (GMT) |
commit | 84e6311dee71bb104e1779c89cf22ff703799086 (patch) | |
tree | 24edd9ad6b2909704f43a402f65ea31e6095be90 /Misc | |
parent | 8631da64bb1f163026b7be82884f8e5b506e0e66 (diff) | |
download | cpython-84e6311dee71bb104e1779c89cf22ff703799086.zip cpython-84e6311dee71bb104e1779c89cf22ff703799086.tar.gz cpython-84e6311dee71bb104e1779c89cf22ff703799086.tar.bz2 |
Issue 23229: add cmath.inf, cmath.nan, cmath.infj and cmath.nanj.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -49,6 +49,10 @@ Core and Builtins Library ------- +- Issue #23229: Add new ``cmath`` constants: ``cmath.inf`` and ``cmath.nan`` to + match ``math.inf`` and ``math.nan``, and also ``cmath.infj`` and + ``cmath.nanj`` to match the format used by complex repr. + - Issue #27861: Fixed a crash in sqlite3.Connection.cursor() when a factory creates not a cursor. Patch by Xiang Zhang. |