Kaydet (Commit) ba2eab25 authored tarafından Ned Deily's avatar Ned Deily

Issue #8746: Use tempfile module to get tempdir and randomize the

link file name.
üst 76748b70
......@@ -12,10 +12,12 @@ import os
import pwd
import shutil
import stat
import tempfile
import unittest
import warnings
_DUMMY_SYMLINK = '%s/dummy-symlink' % os.getenv('TMPDIR', '/tmp')
_DUMMY_SYMLINK = os.path.join(tempfile.gettempdir(),
support.TESTFN + '-dummy-symlink')
class PosixTester(unittest.TestCase):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment