gh-96706: [doc] Don't recomment deprecated use of get_event_loop() in examples (#96707)

This commit is contained in:
zhanpon 2022-09-12 04:56:30 +09:00 committed by GitHub
parent a36235d5c7
commit 53a54b781d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -1675,7 +1675,7 @@ event loop::
print('Hello World')
loop.stop()
loop = asyncio.get_event_loop()
loop = asyncio.new_event_loop()
# Schedule a call to hello_world()
loop.call_soon(hello_world, loop)
@ -1711,7 +1711,7 @@ after 5 seconds, and then stops the event loop::
else:
loop.stop()
loop = asyncio.get_event_loop()
loop = asyncio.new_event_loop()
# Schedule the first call to display_date()
end_time = loop.time() + 5.0
@ -1743,7 +1743,7 @@ Wait until a file descriptor received some data using the
# Create a pair of connected file descriptors
rsock, wsock = socketpair()
loop = asyncio.get_event_loop()
loop = asyncio.new_event_loop()
def reader():
data = rsock.recv(100)

View File

@ -267,7 +267,7 @@ See also the main documentation section about the
.. rubric:: Examples
* :ref:`Using asyncio.get_event_loop() and loop.run_forever()
* :ref:`Using asyncio.new_event_loop() and loop.run_forever()
<asyncio_example_lowlevel_helloworld>`.
* :ref:`Using loop.call_later() <asyncio_example_call_later>`.