We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8cef21 commit bbbc6c2Copy full SHA for bbbc6c2
library/asyncio.po
@@ -48,11 +48,21 @@ msgid ""
48
"\n"
49
"asyncio.run(main())"
50
msgstr ""
51
+"import asyncio\n"
52
+"\n"
53
+"async def main():\n"
54
+" print('Hello ...')\n"
55
+" await asyncio.sleep(1)\n"
56
+" print('... World!')\n"
57
58
+"asyncio.run(main())"
59
60
msgid ""
61
"asyncio is a library to write **concurrent** code using the **async/await** "
62
"syntax."
63
64
+"asyncio jest biblioteką do pisania **równoległego** kodu przy użyciu składni "
65
+"**async/await**."
66
67
68
"asyncio is used as a foundation for multiple Python asynchronous frameworks "
0 commit comments