commit
6c8bcf601c
|
@ -0,0 +1 @@
|
||||||
|
Fix pypy3.6 (nightly) on windows.
|
|
@ -789,7 +789,11 @@ def _py36_windowsconsoleio_workaround(stream):
|
||||||
|
|
||||||
See https://github.com/pytest-dev/py/issues/103
|
See https://github.com/pytest-dev/py/issues/103
|
||||||
"""
|
"""
|
||||||
if not sys.platform.startswith("win32") or sys.version_info[:2] < (3, 6):
|
if (
|
||||||
|
not sys.platform.startswith("win32")
|
||||||
|
or sys.version_info[:2] < (3, 6)
|
||||||
|
or hasattr(sys, "pypy_version_info")
|
||||||
|
):
|
||||||
return
|
return
|
||||||
|
|
||||||
# bail out if ``stream`` doesn't seem like a proper ``io`` stream (#2666)
|
# bail out if ``stream`` doesn't seem like a proper ``io`` stream (#2666)
|
||||||
|
|
Loading…
Reference in New Issue