[issue22107] tempfile module misinterprets access denied error on Windows

2020-05-14 Thread Tor Colvin
Change by Tor Colvin : -- nosy: +Tor.Colvin ___ Python tracker <https://bugs.python.org/issue22107> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21772] platform.uname() not EINTR safe

2014-06-16 Thread Tor Colvin
Tor Colvin added the comment: 2.7.6 or 3.4.1 with OS X 10.8. I can only reproduce it an automated test environment when the load is high on the machine. I've also seen it with 10.6/10.7. It's definitely inconsistently reproducible. -- ___ Python

[issue21772] platform.uname() not EINTR safe

2014-06-15 Thread Tor Colvin
New submission from Tor Colvin: platform.uname() periodically spews EINTR errors on mac - so use subproces.communicate() which is EINTR safe after http://bugs.python.org/issue1068268 Calling f.read() on naked os.open() output can produce IOError: [Errno 4] Interrupted system call. Attached