[Python-checkins] r78975 - in python/branches/py3k: Misc/NEWS setup.py
matthias.klose
python-checkins at python.org
Mon Mar 15 13:49:46 CET 2010
Author: matthias.klose
Date: Mon Mar 15 13:49:46 2010
New Revision: 78975
Log:
- Issue #6949: Allow the _dbm extension to be built with db 4.8.x.
Modified:
python/branches/py3k/Misc/NEWS
python/branches/py3k/setup.py
Modified: python/branches/py3k/Misc/NEWS
==============================================================================
--- python/branches/py3k/Misc/NEWS (original)
+++ python/branches/py3k/Misc/NEWS Mon Mar 15 13:49:46 2010
@@ -781,6 +781,8 @@
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.
Modified: python/branches/py3k/setup.py
==============================================================================
--- python/branches/py3k/setup.py (original)
+++ python/branches/py3k/setup.py Mon Mar 15 13:49:46 2010
@@ -651,7 +651,7 @@
# 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?
More information about the Python-checkins
mailing list