diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-09-25 22:27:43 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-09-25 22:27:43 (GMT) |
commit | b5cf301b8e7e23ed5fddc369d24c856e48e9b27b (patch) | |
tree | c9a7a91316d8e4a575ac8f380461954d9925b1dc /Misc | |
parent | 7de5f2997266befa489af273f35703f3828dca24 (diff) | |
download | cpython-b5cf301b8e7e23ed5fddc369d24c856e48e9b27b.zip cpython-b5cf301b8e7e23ed5fddc369d24c856e48e9b27b.tar.gz cpython-b5cf301b8e7e23ed5fddc369d24c856e48e9b27b.tar.bz2 |
#3929: dbm.open() would try to raise a tuple. This does not work anymore with python 3.0.
Reviewed by Georg Brandl.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -20,6 +20,10 @@ Core and Builtins Library ------- +- Issue #3929: When the database cannot be opened, dbm.open() would incorrectly + raise a TypeError: "'tuple' object is not callable" instead of the expected + dbm.error. + - Bug #3884: Make the turtle module toplevel again. - Issue #3547: Fixed ctypes structures bitfields of varying integer |