diff options
author | Guido van Rossum <guido@python.org> | 2015-11-02 17:15:47 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2015-11-02 17:15:47 (GMT) |
commit | 8778c6b77e52d1ebc1925a0c221de062bec30edf (patch) | |
tree | 0f4271c2c8adc83572f007798133bbb6c8055fcc /Doc/library | |
parent | d65c9496da3485ac077fa8fd374b061afdd3605e (diff) | |
download | cpython-8778c6b77e52d1ebc1925a0c221de062bec30edf.zip cpython-8778c6b77e52d1ebc1925a0c221de062bec30edf.tar.gz cpython-8778c6b77e52d1ebc1925a0c221de062bec30edf.tar.bz2 |
Use sys.platform instead of os.name to detect Windows in asyncio docs. Patch by Akira Li.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/asyncio-eventloops.rst | 5 | ||||
-rw-r--r-- | Doc/library/asyncio-subprocess.rst | 4 |
2 files changed, 4 insertions, 5 deletions
diff --git a/Doc/library/asyncio-eventloops.rst b/Doc/library/asyncio-eventloops.rst index afb8b9f..48825b2 100644 --- a/Doc/library/asyncio-eventloops.rst +++ b/Doc/library/asyncio-eventloops.rst @@ -57,9 +57,9 @@ asyncio currently provides two implementations of event loops: Example to use a :class:`ProactorEventLoop` on Windows:: - import asyncio, os + import asyncio, sys - if os.name == 'nt': + if sys.platform == 'win32': loop = asyncio.ProactorEventLoop() asyncio.set_event_loop(loop) @@ -196,4 +196,3 @@ Access to the global loop policy Set the current event loop policy. If *policy* is ``None``, the default policy is restored. - diff --git a/Doc/library/asyncio-subprocess.rst b/Doc/library/asyncio-subprocess.rst index c0704cd..21dae54 100644 --- a/Doc/library/asyncio-subprocess.rst +++ b/Doc/library/asyncio-subprocess.rst @@ -12,9 +12,9 @@ On Windows, the default event loop is :class:`SelectorEventLoop` which does not support subprocesses. :class:`ProactorEventLoop` should be used instead. Example to use it on Windows:: - import asyncio, os + import asyncio, sys - if os.name == 'nt': + if sys.platform == 'win32': loop = asyncio.ProactorEventLoop() asyncio.set_event_loop(loop) |