Skip to content

Commit 1dc6e51

Browse files
committed
ungendered octopus
1 parent e5fafc4 commit 1dc6e51

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Doc/howto/a-conceptual-overview-of-asyncio.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,15 @@ This is a regular 'ol Python function::
7272
def hello_printer():
7373
print(
7474
"Hi, I am a lowly, simple printer, though I have all I "
75-
"need in life -- \nfresh paper and a loving octopus-wife."
75+
"need in life -- \nfresh paper and my dearly beloved octopus "
76+
"partner in crime."
7677
)
7778

7879
Calling a regular function invokes its logic or body::
7980

8081
>>> hello_printer()
8182
Hi, I am a lowly, simple printer, though I have all I need in life --
82-
fresh paper and a loving octopus-wife.
83+
fresh paper and my dearly beloved octopus partner in crime.
8384

8485
The :ref:`async def <async def>`, as opposed to just a plain ``def``, makes
8586
this an asynchronous function (or "coroutine function").

0 commit comments

Comments
 (0)