]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
So there is some merit in slogging through ~4800 lines of cvs log.
authorMichael W. Hudson <mwh@python.net>
Sun, 17 Mar 2002 17:54:32 +0000 (17:54 +0000)
committerMichael W. Hudson <mwh@python.net>
Sun, 17 Mar 2002 17:54:32 +0000 (17:54 +0000)
commit3ffb948c1882de347a04b50765d7ea829c5aed2f
tree66d3a03a4224a592dfcb41e795fe3629150d8f92
parent98305a0d3413977368478d8ec94fd1c4dba6e999
So there is some merit in slogging through ~4800 lines of cvs log.

Bring tempfile.py up to date from the trunk.  There have been three
checkins (all by Tim):

SF bug #509805 tempfile.gettempdir not threadsafe
This is an ancient race when multiple threads call gettempdir() (or
anything relying on it) for the first time.

Fixed x-platform via the Big Hammer of rearranging the code to serialize
the first calls.  Subsequent calls are as fast as before.

Note that the Python test suite can't provoke this bug:  it requires
setting up multiple threads making the very first calls into tempfile,
but the test suite uses tempfile several times before getting to
test_threadedtempfile.

Bugfix candidate.

[and]

New TemporaryFile implementation for Windows:  this doesn't need a
TemproraryFileWrapper wrapper anymore, and should be immune from the
problem that a temp file inherited by a spawned process caused an
attempt to close the temp file in the spawning process to blow
up (the unlink in TemporaryFileWrapper.close() blew up with a
"Permission denied" error because, despite that the temp file got
closed in the spawning process, the spawned process still had it open
by virtue of C-level file descriptor inheritance).  In context,
that bug took days to figure out <wink/sigh>.

[and]

Thanks to Detlef Lannert for pointing out a typo in the code that
uses _DummyMutex on platforms without threads.

The first and third of these are pretty clearly bugfixes; I think the
second is too.
Lib/tempfile.py