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/dbhash.py | |
| 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/dbhash.py')
| -rw-r--r-- | Lib/dbhash.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/dbhash.py b/Lib/dbhash.py index 5ca0bc1..77a878e 100644 --- a/Lib/dbhash.py +++ b/Lib/dbhash.py @@ -3,7 +3,7 @@ import sys if sys.py3kwarning: import warnings - warnings.warnpy3k("in 3.x, dbhash has been removed", DeprecationWarning, 2) + warnings.warnpy3k("in 3.x, the dbhash module has been removed", DeprecationWarning, 2) try: import bsddb except ImportError: |
