diff options
author | Guido van Rossum <guido@python.org> | 2003-11-10 02:27:19 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2003-11-10 02:27:19 (GMT) |
commit | 967b063add196bc2da55fdb81f91a802600b7b7b (patch) | |
tree | ee03b4c7b73b13b0559d1bfb1115de6901d6c8bd | |
parent | b25615939663823c462c4d441f5c808a9aa38891 (diff) | |
download | cpython-967b063add196bc2da55fdb81f91a802600b7b7b.zip cpython-967b063add196bc2da55fdb81f91a802600b7b7b.tar.gz cpython-967b063add196bc2da55fdb81f91a802600b7b7b.tar.bz2 |
Plug tempfile.mktemp() hole (Iustin Pop).
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -435,6 +435,7 @@ Dan Pierson Martijn Pieters François Pinard Michael Piotrowski +Iustin Pop John Popplewell Amrit Prem Paul Prescod @@ -104,6 +104,9 @@ Extension modules Library ------- +- Plugged a minor hole in tempfile.mktemp() due to the use of + os.path.exists(), switched to using os.lstat() directly if possible. + - heapq.py has been converted to C for improved performance - traceback.format_exc has been added (similar to print_exc but it returns |