summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-06-30 17:39:45 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-06-30 17:39:45 (GMT)
commit1cc6df97bc866fb7cda495f0ebfa7e7595235a85 (patch)
treee983055edf87bc7223fd2e0421a680f922b22b1c /Lib
parentd24305489bc4be2d699b0d291faca8a49f501145 (diff)
downloadcpython-1cc6df97bc866fb7cda495f0ebfa7e7595235a85.zip
cpython-1cc6df97bc866fb7cda495f0ebfa7e7595235a85.tar.gz
cpython-1cc6df97bc866fb7cda495f0ebfa7e7595235a85.tar.bz2
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 ........
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_os.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py
index 4b7ded2..14a9a7a 100644
--- a/Lib/test/test_os.py
+++ b/Lib/test/test_os.py
@@ -58,6 +58,7 @@ class FileTests(unittest.TestCase):
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)