diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-01-04 23:22:44 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-01-04 23:22:44 (GMT) |
commit | b9d4963a989accce30234b7b74bce874c0142209 (patch) | |
tree | 63fa25095a756b9def7c84cf7eb88d68c2412e29 /Lib/bsddb | |
parent | b9c3ed4f82d3551c9906da55ddb8059ac3b5ce94 (diff) | |
download | cpython-b9d4963a989accce30234b7b74bce874c0142209.zip cpython-b9d4963a989accce30234b7b74bce874c0142209.tar.gz cpython-b9d4963a989accce30234b7b74bce874c0142209.tar.bz2 |
Issue #7092: Fix the DeprecationWarnings emitted by the standard library
when using the -3 flag. Patch by Florent Xicluna.
Diffstat (limited to 'Lib/bsddb')
-rw-r--r-- | Lib/bsddb/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/bsddb/__init__.py b/Lib/bsddb/__init__.py index 0af679f..07c7c9d 100644 --- a/Lib/bsddb/__init__.py +++ b/Lib/bsddb/__init__.py @@ -44,7 +44,7 @@ absolute_import = (sys.version_info[0] >= 3) if sys.py3kwarning: import warnings - warnings.warnpy3k("in 3.x, bsddb has been removed; " + warnings.warnpy3k("in 3.x, the bsddb module has been removed; " "please use the pybsddb project instead", DeprecationWarning, 2) |