diff options
author | Matthias Klose <doko@ubuntu.com> | 2010-03-15 12:49:46 (GMT) |
---|---|---|
committer | Matthias Klose <doko@ubuntu.com> | 2010-03-15 12:49:46 (GMT) |
commit | 9550aa1c8146d0c480c1164215418bb21d6a3c3e (patch) | |
tree | b269885779af70bb98391990beef847e40c02ab3 | |
parent | 68f52178d9a77bb598664a090019f8f971d3de7d (diff) | |
download | cpython-9550aa1c8146d0c480c1164215418bb21d6a3c3e.zip cpython-9550aa1c8146d0c480c1164215418bb21d6a3c3e.tar.gz cpython-9550aa1c8146d0c480c1164215418bb21d6a3c3e.tar.bz2 |
- Issue #6949: Allow the _dbm extension to be built with db 4.8.x.
-rw-r--r-- | Misc/NEWS | 2 | ||||
-rw-r--r-- | setup.py | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -781,6 +781,8 @@ Library Extension Modules ----------------- +- Issue #6949: Allow the _dbm extension to be built with db 4.8.x. + - Issue #6544: fix a reference leak in the kqueue implementation's error handling. @@ -651,7 +651,7 @@ class PyBuildExt(build_ext): # a release. Most open source OSes come with one or more # versions of BerkeleyDB already installed. - max_db_ver = (4, 7) + max_db_ver = (4, 8) min_db_ver = (3, 3) db_setup_debug = False # verbose debug prints from this script? |