[Python-Dev] [Python-checkins] cpython (2.7): Issue #8746: Correct faulty configure checks so that os.chflags() and (original) (raw)
Éric Araujo merwok at netwok.org
Tue Jul 26 16:39:31 CEST 2011
- Previous message: [Python-Dev] [Python-checkins] cpython: Issue #11784: Improve multiprocessing.Process.join() documentation. Patch by
- Next message: [Python-Dev] [Python-checkins] cpython (2.7): Issue #8746: Correct faulty configure checks so that os.chflags() and
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Hi,
changeset: 71030:abfe28e7e5cd branch: 2.7 user: Ned Deily <nad at acm.org>
diff --git a/Lib/test/testposix.py b/Lib/test/testposix.py --- a/Lib/test/testposix.py +++ b/Lib/test/testposix.py @@ -11,10 +11,12 @@ import os import pwd import shutil +import stat import sys import unittest import warnings
+DUMMYSYMLINK = '%s/dummy-symlink' % os.getenv('TMPDIR', '/tmp')
Why not let the tempfile module do this for you?
Regards
- Previous message: [Python-Dev] [Python-checkins] cpython: Issue #11784: Improve multiprocessing.Process.join() documentation. Patch by
- Next message: [Python-Dev] [Python-checkins] cpython (2.7): Issue #8746: Correct faulty configure checks so that os.chflags() and
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]