[Python-checkins] cpython (merge 3.2 -> default): Merge 3.2

eric.araujo python-checkins at python.org
Fri Aug 12 19:56:04 CEST 2011


http://hg.python.org/cpython/rev/363cdf7af849
changeset:   71844:363cdf7af849
parent:      71842:3b6655a72d1c
parent:      71843:d04a31a43a15
user:        Éric Araujo <merwok at netwok.org>
date:        Fri Aug 12 19:53:13 2011 +0200
summary:
  Merge 3.2

files:
  Tools/scripts/lfcr.py |  12 ++++++------
  1 files changed, 6 insertions(+), 6 deletions(-)


diff --git a/Tools/scripts/lfcr.py b/Tools/scripts/lfcr.py
--- a/Tools/scripts/lfcr.py
+++ b/Tools/scripts/lfcr.py
@@ -9,16 +9,16 @@
         if os.path.isdir(filename):
             print(filename, "Directory!")
             continue
-        data = open(filename, "rb").read()
-        if '\0' in data:
+        with open(filename, "rb") as f:
+            data = f.read()
+        if b'\0' in data:
             print(filename, "Binary!")
             continue
-        newdata = re.sub("\r?\n", "\r\n", data)
+        newdata = re.sub(b"\r?\n", b"\r\n", data)
         if newdata != data:
             print(filename)
-            f = open(filename, "wb")
-            f.write(newdata)
-            f.close()
+            with open(filename, "wb") as f:
+                f.write(newdata)
 
 if __name__ == '__main__':
     main()

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list