diff options
author | Michael W. Hudson <mwh@python.net> | 2002-03-17 17:54:32 (GMT) |
---|---|---|
committer | Michael W. Hudson <mwh@python.net> | 2002-03-17 17:54:32 (GMT) |
commit | 3ffb948c1882de347a04b50765d7ea829c5aed2f (patch) | |
tree | 66d3a03a4224a592dfcb41e795fe3629150d8f92 /Mac/Contrib/PythonScript/PyScriptTest.py | |
parent | 98305a0d3413977368478d8ec94fd1c4dba6e999 (diff) | |
download | cpython-3ffb948c1882de347a04b50765d7ea829c5aed2f.zip cpython-3ffb948c1882de347a04b50765d7ea829c5aed2f.tar.gz cpython-3ffb948c1882de347a04b50765d7ea829c5aed2f.tar.bz2 |
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.
Diffstat (limited to 'Mac/Contrib/PythonScript/PyScriptTest.py')
0 files changed, 0 insertions, 0 deletions