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: files in the csv documentation's examples are not closed
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.2, Python 3.3, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ezio.melotti Nosy List: berdario, brett.cannon, docs@python, ezio.melotti, python-dev
Priority: normal Keywords: patch

Created on 2012-09-12 15:56 by berdario, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
doc.diff berdario, 2012-09-12 15:56 review
Messages (4)
msg170394 - (view) Author: (berdario) Date: 2012-09-12 15:56
I changed the examples to use the with statement
msg170408 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2012-09-12 17:32
Quick glance at the patch LGTM. I don't have commit access handy so I can't do it myself ATM.
msg170502 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-09-15 02:52
New changeset ade667076c14 by Ezio Melotti in branch '2.7':
#15932: use with statement in csv doc examples.
http://hg.python.org/cpython/rev/ade667076c14

New changeset 8a06fb321074 by Ezio Melotti in branch '3.2':
#15932: use with statement in csv doc examples.  Patch by Dario Bertini.
http://hg.python.org/cpython/rev/8a06fb321074

New changeset a5a8d255daee by Ezio Melotti in branch 'default':
#15932: merge with 3.2.
http://hg.python.org/cpython/rev/a5a8d255daee
msg170503 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2012-09-15 02:53
Fixed, thanks for the patch!
History
Date User Action Args
2022-04-11 14:57:35adminsetgithub: 60136
2012-09-15 02:53:48ezio.melottisetstatus: open -> closed

assignee: docs@python -> ezio.melotti
versions: + Python 2.7, Python 3.2, Python 3.3
messages: + msg170503
type: enhancement
resolution: fixed
stage: commit review -> resolved
2012-09-15 02:52:51python-devsetnosy: + python-dev
messages: + msg170502
2012-09-12 17:32:03brett.cannonsetnosy: + brett.cannon

messages: + msg170408
stage: commit review
2012-09-12 15:56:30berdariocreate