[issue11125] csv documentation should not use open() without close()

2011-02-04 Thread Éric Araujo
Éric Araujo added the comment: Agreed. I have to take some time to update my patch on the other bug. Hope you won’t mind me closing this one as duplicate. -- nosy: +eric.araujo resolution: -> duplicate stage: -> committed/rejected status: open -> closed superseder: -> Use with sta

[issue11125] csv documentation should not use open() without close()

2011-02-04 Thread Eric Smith
New submission from Eric Smith : Many places open() is shown as a parameter to a csv method, but close() can't be called. This is not a practice we should be advocating. Better would be to show a 'with' statement, or at least a note explaining this isn't an ideal usage. -- assignee: d