Message91524
| Author |
loewis |
| Recipients |
amaury.forgeotdarc, benjamin.peterson, d_kagedal, fpmc, gregory.p.smith, loewis, mkc, yorick |
| Date |
2009年08月13日.17:42:19 |
| SpamBayes Score |
3.7506797e-07 |
| Marked as misclassified |
No |
| Message-id |
<1250185342.22.0.347249721005.issue3392@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
Unfortunately, this change has broken windows support of the subprocess
module, which now reports, on "import subprocess".
>>> import subprocess
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\loewis31円\python\lib\subprocess.py", line 390, in <module>
_PIPE_BUF = getattr(select, 'PIPE_BUF', 512)
NameError: name 'select' is not defined
As a consequence, even building Python on Windows now fails, so setting
the priority to "release blocker". One solution would be to move the
"import select" to being top-level. |
|