mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Issue #8746: Use tempfile module to get tempdir and randomize the
link file name.
This commit is contained in:
commit
0975dedfe0
1 changed files with 3 additions and 1 deletions
|
@ -13,10 +13,12 @@ import fcntl
|
||||||
import pwd
|
import pwd
|
||||||
import shutil
|
import shutil
|
||||||
import stat
|
import stat
|
||||||
|
import tempfile
|
||||||
import unittest
|
import unittest
|
||||||
import warnings
|
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):
|
class PosixTester(unittest.TestCase):
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue