summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAlexandre Vassalotti <alexandre@peadrop.com>2013-11-30 04:47:15 (GMT)
committerAlexandre Vassalotti <alexandre@peadrop.com>2013-11-30 04:47:15 (GMT)
commit9730e335353b9cdb6f8016e27566ca7b43e42d09 (patch)
tree8e62d2e7c4ae35e5ad76c1adc9f7dd7e283b9c00 /Misc
parented7dc14d6a9598532ea535c340fce47404314c4e (diff)
downloadcpython-9730e335353b9cdb6f8016e27566ca7b43e42d09.zip
cpython-9730e335353b9cdb6f8016e27566ca7b43e42d09.tar.gz
cpython-9730e335353b9cdb6f8016e27566ca7b43e42d09.tar.bz2
Issue #3693: Fix array obscure error message when given a str.
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 c9b1f04..3092821 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,10 @@ Core and Builtins
Library
-------
+- Issue #3693: Make the error message more helpful when the array.array()
+ constructor is given a str. Move the array module typecode documentation to
+ the docstring of the constructor.
+
- Issue #19698: Removed exec_module() methods from
importlib.machinery.BuiltinImporter and ExtensionFileLoader.