[Python-checkins] r82403 - python/trunk/Lib/test/test_os.py

benjamin.peterson python-checkins at python.org
Wed Jun 30 19:11:08 CEST 2010


Author: benjamin.peterson
Date: Wed Jun 30 19:11:08 2010
New Revision: 82403

Log:
mark test depending on ref counting

Modified:
   python/trunk/Lib/test/test_os.py

Modified: python/trunk/Lib/test/test_os.py
==============================================================================
--- python/trunk/Lib/test/test_os.py	(original)
+++ python/trunk/Lib/test/test_os.py	Wed Jun 30 19:11:08 2010
@@ -48,6 +48,7 @@
         os.closerange(first, first + 2)
         self.assertRaises(OSError, os.write, first, "a")
 
+    @test_support.cpython_only
     def test_rename(self):
         path = unicode(test_support.TESTFN)
         old = sys.getrefcount(path)


More information about the Python-checkins mailing list