[Python-checkins] r82405 - in python/branches/py3k: Lib/test/test_os.py

benjamin.peterson python-checkins at python.org
Wed Jun 30 19:39:45 CEST 2010


Author: benjamin.peterson
Date: Wed Jun 30 19:39:45 2010
New Revision: 82405

Log:
Merged revisions 82403 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r82403 | benjamin.peterson | 2010-06-30 12:11:08 -0500 (Wed, 30 Jun 2010) | 1 line
  
  mark test depending on ref counting
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Lib/test/test_os.py

Modified: python/branches/py3k/Lib/test/test_os.py
==============================================================================
--- python/branches/py3k/Lib/test/test_os.py	(original)
+++ python/branches/py3k/Lib/test/test_os.py	Wed Jun 30 19:39:45 2010
@@ -58,6 +58,7 @@
         os.closerange(first, first + 2)
         self.assertRaises(OSError, os.write, first, b"a")
 
+    @support.cpython_only
     def test_rename(self):
         path = support.TESTFN
         old = sys.getrefcount(path)


More information about the Python-checkins mailing list