[Python-checkins] r87004 - python/branches/py3k/Lib/unittest/test/test_program.py

michael.foord python-checkins at python.org
Sat Dec 4 02:43:59 CET 2010


Author: michael.foord
Date: Sat Dec  4 02:43:59 2010
New Revision: 87004

Log:
Correct comment in unittest test

Modified:
   python/branches/py3k/Lib/unittest/test/test_program.py

Modified: python/branches/py3k/Lib/unittest/test/test_program.py
==============================================================================
--- python/branches/py3k/Lib/unittest/test/test_program.py	(original)
+++ python/branches/py3k/Lib/unittest/test/test_program.py	Sat Dec  4 02:43:59 2010
@@ -336,7 +336,7 @@
 
     def testParseArgsAbsolutePathsThatCannotBeConverted(self):
         program = self.program
-        # will this test work on Windows? (is '/...' considered absolute?)
+        # even on Windows '/...' is considered absolute by os.path.abspath
         argv = ['progname', '/foo/bar/baz.py', '/green/red.py']
         self._patch_isfile(argv)
 


More information about the Python-checkins mailing list