We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 010ec55 commit 733a5a6Copy full SHA for 733a5a6
library/asyncio.po
@@ -34,7 +34,7 @@ msgid "Guides and Tutorials"
34
msgstr "Przewodniki i samouczki"
35
36
msgid ":mod:`!asyncio` --- Asynchronous I/O"
37
-msgstr ""
+msgstr ":mod:`!asyncio` --- Asynchroniczne I/O"
38
39
msgid "Hello World!"
40
msgstr "Hello World!"
@@ -49,6 +49,14 @@ msgid ""
49
"\n"
50
"asyncio.run(main())"
51
msgstr ""
52
+"import asyncio\n"
53
+"\n"
54
+"async def main():\n"
55
+" print('Hello ...')\n"
56
+" await asyncio.sleep(1)\n"
57
+" print('... World!')\n"
58
59
+"asyncio.run(main())"
60
61
msgid ""
62
"asyncio is a library to write **concurrent** code using the **async/await** "
0 commit comments