summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2015-05-18 05:47:15 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2015-05-18 05:47:15 (GMT)
commit0a29e898cd9f8ca49008baba8e739422fd9276a8 (patch)
tree154a862658202ebcd276d68ec856700ef9334f06 /Misc
parent610a51f364f6cb5ffb5167d9bf4dcecc1815107c (diff)
downloadcpython-0a29e898cd9f8ca49008baba8e739422fd9276a8.zip
cpython-0a29e898cd9f8ca49008baba8e739422fd9276a8.tar.gz
cpython-0a29e898cd9f8ca49008baba8e739422fd9276a8.tar.bz2
Issue #21931: Fix error handling in msilib.FCICreate().
Patch by Jeffrey Armstrong.
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 2599b82..ed646ad 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -48,6 +48,10 @@ Core and Builtins
Library
-------
+- Issue #21931: msilib.FCICreate() now raises TypeError in the case of a bad
+ argument instead of a ValueError with a bogus FCI error number.
+ Patch by Jeffrey Armstrong.
+
- Issue #23796: peak and read1 methods of BufferedReader now raise ValueError
if they called on a closed object. Patch by John Hergenroeder.