diff options
author | Collin Winter <collinw@gmail.com> | 2007-08-22 21:45:20 (GMT) |
---|---|---|
committer | Collin Winter <collinw@gmail.com> | 2007-08-22 21:45:20 (GMT) |
commit | a65e94c1bf30259e0367d136054328c107ff41da (patch) | |
tree | 3e52a58cdad9ac85144590d72641e2f065d7382e /Lib/bsddb/test/test_dbtables.py | |
parent | 865ea892018f4ff823496b2d0636c47c7ef06231 (diff) | |
download | cpython-a65e94c1bf30259e0367d136054328c107ff41da.zip cpython-a65e94c1bf30259e0367d136054328c107ff41da.tar.gz cpython-a65e94c1bf30259e0367d136054328c107ff41da.tar.bz2 |
Convert raise statements in bsddb.
Diffstat (limited to 'Lib/bsddb/test/test_dbtables.py')
-rw-r--r-- | Lib/bsddb/test/test_dbtables.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/bsddb/test/test_dbtables.py b/Lib/bsddb/test/test_dbtables.py index 970f253..b03971b 100644 --- a/Lib/bsddb/test/test_dbtables.py +++ b/Lib/bsddb/test/test_dbtables.py @@ -355,7 +355,7 @@ class TableDBTestCase(unittest.TestCase): # success, the string value in mappings isn't callable pass else: - raise RuntimeError, "why was TypeError not raised for bad callable?" + raise RuntimeError("why was TypeError not raised for bad callable?") # Delete key in select conditions values = self.tdb.Select( |