summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2016-09-24 14:26:36 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2016-09-24 14:26:36 (GMT)
commit613f8e513cf171a335318221b6050d470a1d765f (patch)
tree3fe6661b6a39246e34d85745b8bbd836cbcb7623 /Misc
parent8609cda961a773f6eaafe7944f73d70407500ac7 (diff)
downloadcpython-613f8e513cf171a335318221b6050d470a1d765f.zip
cpython-613f8e513cf171a335318221b6050d470a1d765f.tar.gz
cpython-613f8e513cf171a335318221b6050d470a1d765f.tar.bz2
Issue #28203: Fix incorrect type in error message from complex(1.0, {2:3}). Patch by Soumya Sharma.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index f590f6c..ed93e99 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1349,6 +1349,7 @@ Daniel Shahaf
Mark Shannon
Ha Shao
Richard Shapiro
+Soumya Sharma
Varun Sharma
Daniel Shaulov
Vlad Shcherbina
diff --git a/Misc/NEWS b/Misc/NEWS
index cf97628..8c9dcc3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: TBA
Core and Builtins
-----------------
+- Issue #28203: Fix incorrect type in error message from
+ ``complex(1.0, {2:3})``. Patch by Soumya Sharma.
+
- Issue #27955: Fallback on reading /dev/urandom device when the getrandom()
syscall fails with EPERM, for example when blocked by SECCOMP.