From e411e9931272cd22247095fc2af8d26d58eeddd6 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Fri, 14 Jun 2013 21:28:17 -0400 Subject: [PATCH] [1.5.x] Fixed #20604 - Fixed file example in docs. Thanks Chris Lasher for the report. Backport of a1122e14a6 from master --- docs/topics/files.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/topics/files.txt b/docs/topics/files.txt index fb3cdd4af9d..96e0557cc4c 100644 --- a/docs/topics/files.txt +++ b/docs/topics/files.txt @@ -85,9 +85,9 @@ The following approach may be used to close files automatically:: # Create a Python file object using open() and the with statement >>> with open('/tmp/hello.world', 'w') as f: - >>> myfile = File(f) - >>> for line in myfile: - >>> print line + ... myfile = File(f) + ... myfile.write('Hello World') + ... >>> myfile.closed True >>> f.closed