[Python-checkins] r76129 - in python/trunk/Lib/lib2to3: fixes/fix_operator.py tests/test_parser.py

benjamin.peterson python-checkins at python.org
Fri Nov 6 00:20:06 CET 2009


Author: benjamin.peterson
Date: Fri Nov  6 00:20:06 2009
New Revision: 76129

Log:
Merged revisions 76127-76128 via svnmerge from 
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3

........
  r76127 | benjamin.peterson | 2009-11-05 17:04:58 -0600 (Thu, 05 Nov 2009) | 1 line
  
  set svn:eol-style
........
  r76128 | benjamin.peterson | 2009-11-05 17:07:46 -0600 (Thu, 05 Nov 2009) | 1 line
  
  skip this test on windows to avoid newline horrors
........


Modified:
   python/trunk/Lib/lib2to3/   (props changed)
   python/trunk/Lib/lib2to3/fixes/fix_operator.py   (props changed)
   python/trunk/Lib/lib2to3/tests/test_parser.py

Modified: python/trunk/Lib/lib2to3/tests/test_parser.py
==============================================================================
--- python/trunk/Lib/lib2to3/tests/test_parser.py	(original)
+++ python/trunk/Lib/lib2to3/tests/test_parser.py	Fri Nov  6 00:20:06 2009
@@ -147,6 +147,9 @@
     """A cut-down version of pytree_idempotency.py."""
 
     def test_all_project_files(self):
+        if sys.platform.startswith("win"):
+            # XXX something with newlines goes wrong on Windows.
+            return
         for filepath in support.all_project_files():
             with open(filepath, "rb") as fp:
                 encoding = tokenize.detect_encoding(fp.readline)[0]


More information about the Python-checkins mailing list