Issue #28203: Fix incorrect type in error message from complex(1.0, {2:3}). Patch by Soumya Sharma.
diff --git a/Misc/ACKS b/Misc/ACKS
index f590f6c..ed93e99 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1349,6 +1349,7 @@
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 @@
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.