summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-12-26 10:30:41 (GMT)
committerGitHub <noreply@github.com>2017-12-26 10:30:41 (GMT)
commit13a6c098c215921e35004f9d3a9b70f601e56500 (patch)
treecda014f1d730c1b10abc45484b9e2cf7ea04aa33 /Misc
parenta8f4e15f3d33084862ddd3a7d58cd00034e94f16 (diff)
downloadcpython-13a6c098c215921e35004f9d3a9b70f601e56500.zip
cpython-13a6c098c215921e35004f9d3a9b70f601e56500.tar.gz
cpython-13a6c098c215921e35004f9d3a9b70f601e56500.tar.bz2
bpo-32259: Make a TypeError message when unpack non-iterable more specific. (#4903)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2017-12-16-14-30-21.bpo-32259.GoOJiX.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2017-12-16-14-30-21.bpo-32259.GoOJiX.rst b/Misc/NEWS.d/next/Core and Builtins/2017-12-16-14-30-21.bpo-32259.GoOJiX.rst
new file mode 100644
index 0000000..1129c75
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2017-12-16-14-30-21.bpo-32259.GoOJiX.rst
@@ -0,0 +1,2 @@
+The error message of a TypeError raised when unpack non-iterable is now more
+specific.