]> granicus.if.org Git - python/commitdiff
Use sys.platform instead of os.name to detect Windows in asyncio docs. Patch by Akira Li.
authorGuido van Rossum <guido@python.org>
Mon, 2 Nov 2015 17:15:47 +0000 (09:15 -0800)
committerGuido van Rossum <guido@python.org>
Mon, 2 Nov 2015 17:15:47 +0000 (09:15 -0800)
Doc/library/asyncio-eventloops.rst
Doc/library/asyncio-subprocess.rst

index afb8b9f35b447f253b1247216cf2335644cc26ce..48825b2956022bea73c7c1758c3d121437f08529 100644 (file)
@@ -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.
-
index c0704cde2ce3b38cc7a006dd9603c49b2bad21b0..21dae54e38fbd7e08f25e841d951a4cc795ea95e 100644 (file)
@@ -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)