[Python-checkins] r74117 - in python/trunk/Lib/lib2to3: tests/test_refactor.py

benjamin.peterson python-checkins at python.org
Mon Jul 20 19:24:30 CEST 2009


Author: benjamin.peterson
Date: Mon Jul 20 19:24:30 2009
New Revision: 74117

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

........
  r74116 | benjamin.peterson | 2009-07-20 12:22:35 -0500 (Mon, 20 Jul 2009) | 1 line
  
  placate windows
........


Modified:
   python/trunk/Lib/lib2to3/   (props changed)
   python/trunk/Lib/lib2to3/tests/test_refactor.py

Modified: python/trunk/Lib/lib2to3/tests/test_refactor.py
==============================================================================
--- python/trunk/Lib/lib2to3/tests/test_refactor.py	(original)
+++ python/trunk/Lib/lib2to3/tests/test_refactor.py	Mon Jul 20 19:24:30 2009
@@ -215,7 +215,7 @@
         expected = ["hi.py"]
         check(tree, expected)
         tree = ["hi.py",
-                "a_dir/stuff.py"]
+                os.path.join("a_dir", "stuff.py")]
         check(tree, tree)
 
     def test_file_encoding(self):


More information about the Python-checkins mailing list