Issue 21729: Use with statement in dbm.dumb (original) (raw)

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

classification

Title: Use `with` statement in dbm.dumb
Type: enhancement Stage: resolved
Components: Library (Lib) Versions: Python 3.4, Python 3.5, Python 2.7

process

Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: serhiy.storchaka Nosy List: Claudiu.Popa, python-dev, rhettinger, serhiy.storchaka
Priority: low Keywords: patch

Created on 2014-06-12 07:24 by Claudiu.Popa, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
dbm_with_open.patch Claudiu.Popa,2014-06-12 07:24 review
Messages (5)
msg220335 - (view) Author: PCManticore (Claudiu.Popa) * (Python triager) Date: 2014-06-12 07:24
Hello. Here's a short patch for dbm.dumb, which uses in various places the `with` statement for opening and closing files. Thanks.
msg220379 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2014-06-12 20:07
Serhiy, after reviewing this, consider backporting it. The original code doesn't have a try/finally around the close() call and that could be considered a bug.
msg221559 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2014-06-25 17:06
Ah, month ago I wrote large patch which use 'with' in various places in stdlib for opening and closing files. But then I dropped it because afraid that it can be considered as code churn.
msg221561 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-06-25 17:40
New changeset fdbcb11e0323 by Serhiy Storchaka in branch '3.4': Issue #21729: Used the "with" statement in the dbm.dumb module to ensure http://hg.python.org/cpython/rev/fdbcb11e0323 New changeset e41b4e8c0c1d by Serhiy Storchaka in branch 'default': Issue #21729: Used the "with" statement in the dbm.dumb module to ensure http://hg.python.org/cpython/rev/e41b4e8c0c1d New changeset 893e79196fb3 by Serhiy Storchaka in branch '2.7': Issue #21729: Used the "with" statement in the dbm.dumb module to ensure http://hg.python.org/cpython/rev/893e79196fb3
msg221563 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2014-06-25 17:49
Thanks Claudiu. Committed with yet one "with".
History
Date User Action Args
2022-04-11 14:58:04 admin set github: 65928
2014-06-25 17:49:51 serhiy.storchaka set status: open -> closedresolution: fixedmessages: + stage: commit review -> resolved
2014-06-25 17:40:12 python-dev set nosy: + python-devmessages: +
2014-06-25 17:06:10 serhiy.storchaka set stage: patch review -> commit reviewmessages: + versions: + Python 2.7, Python 3.4
2014-06-12 20:07:33 rhettinger set nosy: + rhettingermessages: +
2014-06-12 08:11:25 serhiy.storchaka set priority: normal -> lowassignee: serhiy.storchakastage: patch review
2014-06-12 07:24:41 Claudiu.Popa create