Issue 2498: bdb modernized - Python tracker (original) (raw)

This issue has been migrated to GitHub: https://github.com/python/cpython/issues/46750

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:32 admin set github: 46750
2008-03-28 20:57:26 benjamin.peterson set status: open -> closedmessages: +
2008-03-28 07:54:01 georg.brandl set assignee: georg.brandl -> benjamin.petersonresolution: acceptedmessages: +
2008-03-27 21:03:02 benjamin.peterson create