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 Matúš Valo
Recipients Matúš Valo
Date 2017-12-12.11:14:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1513077242.25.0.213398074469.issue32287@psf.upfronthosting.co.za>
In-reply-to
Content
When trying to impor _pyio from python3 in Cygwin, import fails with exception:
$ python3
Python 3.6.3 (default, Oct 31 2017, 19:00:36)
[GCC 6.4.0] on cygwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import _pyio
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python3.6/_pyio.py", line 17, in <module>
    from msvcrt import setmode as _setmode
ModuleNotFoundError: No module named 'msvcrt'

This issue is breaking cherrypy server (cheroot component):
https://github.com/cherrypy/cheroot/blob/86c6b246ec7cb704c6f96123556db1a083301634/cheroot/makefile.py#L5
History
Date User Action Args
2017-12-12 11:14:02Matúš Valosetrecipients: + Matúš Valo
2017-12-12 11:14:02Matúš Valosetmessageid: <1513077242.25.0.213398074469.issue32287@psf.upfronthosting.co.za>
2017-12-12 11:14:02Matúš Valolinkissue32287 messages
2017-12-12 11:14:02Matúš Valocreate