Message347644
| Author |
daveb |
| Recipients |
ZackerySpytz, daveb, eryksun, josh.r, paul.moore, steve.dower, tim.golden, vstinner, zach.ware |
| Date |
2019-07-10.23:57:40 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1562803060.76.0.772911999677.issue37549@roundup.psfhosted.org> |
| In-reply-to |
|
| Content |
Results with Python 3.7.4 on Windows 7
>>> import os, msvcrt
>>> msvcrt.get_osfhandle(0)
15
>>> os.set_handle_inheritable(msvcrt.get_osfhandle(0), False)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
OSError: [WinError 87] The parameter is incorrect
>>> |
|