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

(cherry picked from commit 53a54b781d)

Co-authored-by: zhanpon <pon.zhan@gmail.com>
This commit is contained in:
Miss Islington (bot) 2022-09-13 08:57:02 -07:00 committed by Pablo Galindo
parent 040bbd2ec6
commit 886fd3938b
No known key found for this signature in database
GPG key ID: FFE87404168BD847
2 changed files with 4 additions and 4 deletions

View file

@ -1699,7 +1699,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)
@ -1735,7 +1735,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
@ -1767,7 +1767,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>`.