summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2016-08-29 12:56:58 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2016-08-29 12:56:58 (GMT)
commit84e6311dee71bb104e1779c89cf22ff703799086 (patch)
tree24edd9ad6b2909704f43a402f65ea31e6095be90 /Misc
parent8631da64bb1f163026b7be82884f8e5b506e0e66 (diff)
downloadcpython-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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 519a787..36cf589 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.