This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: bdb modernized
Type: enhancement Stage:
Components: Library (Lib) Versions: Python 2.6
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: benjamin.peterson Nosy List: benjamin.peterson, georg.brandl
Priority: normal Keywords: patch

Created on 2008-03-27 21:03 by benjamin.peterson, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
bdb_modern.patch benjamin.peterson, 2008-03-27 21:03
Messages (3)
msg64607 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2008-03-27 21:03
bdb.py has several places like this:
try:
    try: pass
    except BdbQuit: pass
finally: pass
These can be modernized to the > 2.5 syntax.
msg64619 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2008-03-28 07:53
Go ahead and commit -- and don't forget the issue number :)
msg64652 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2008-03-28 20:57
Commited with a message in r60218
History
Date User Action Args
2022-04-11 14:56:32adminsetgithub: 46750
2008-03-28 20:57:26benjamin.petersonsetstatus: open -> closed
messages: + msg64652
2008-03-28 07:54:01georg.brandlsetassignee: georg.brandl -> benjamin.peterson
resolution: accepted
messages: + msg64619
2008-03-27 21:03:02benjamin.petersoncreate