This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

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:\loewis\31\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.
History
Date User Action Args
2009-08-13 17:42:22loewissetrecipients: + loewis, gregory.p.smith, mkc, amaury.forgeotdarc, yorick, d_kagedal, benjamin.peterson, fpmc
2009-08-13 17:42:22loewissetmessageid: <1250185342.22.0.347249721005.issue3392@psf.upfronthosting.co.za>
2009-08-13 17:42:20loewislinkissue3392 messages
2009-08-13 17:42:19loewiscreate