[issue2498] bdb modernized

2008-03-28 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Commited with a message in r60218 -- status: open -> closed __ Tracker <[EMAIL PROTECTED]> __ _

[issue2498] bdb modernized

2008-03-28 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: Go ahead and commit -- and don't forget the issue number :) -- assignee: georg.brandl -> benjamin.peterson resolution: -> accepted __ Tracker <[EMAIL PROTECTED]> _

[issue2498] bdb modernized

2008-03-27 Thread Benjamin Peterson
New submission from Benjamin Peterson <[EMAIL PROTECTED]>: bdb.py has several places like this: try: try: pass except BdbQuit: pass finally: pass These can be modernized to the > 2.5 syntax. -- assignee: georg.brandl components: Library (Lib) files: bdb_modern.patch keywords: pat