11# SOME DESCRIPTIVE TITLE.
2- # Copyright (C) 2001-2023 , Python Software Foundation
2+ # Copyright (C) 2001-2025 , Python Software Foundation
33# This file is distributed under the same license as the Python package.
44# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55#
66# Translators:
7- # Transifex Bot <>, 2023
7+ # Kamil Broniowski, 2025
88#
99#, fuzzy
1010msgid ""
1111msgstr ""
12- "Project-Id-Version : Python 3.11 \n "
12+ "Project-Id-Version : Python 3.12 \n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2023-05-19 14:13 +0000\n "
15- "PO-Revision-Date : 2021-06-28 00:55 +0000\n "
16- "Last-Translator : Transifex Bot <>, 2023 \n "
14+ "POT-Creation-Date : 2025-01-24 14:52 +0000\n "
15+ "PO-Revision-Date : 2024-05-11 00:33 +0000\n "
16+ "Last-Translator : Kamil Broniowski, 2025 \n "
1717"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
1818"MIME-Version : 1.0\n "
1919"Content-Type : text/plain; charset=UTF-8\n "
@@ -32,12 +32,23 @@ msgstr ""
3232msgid "Guides and Tutorials"
3333msgstr ""
3434
35- msgid ":mod:`asyncio` --- Asynchronous I/O"
35+ msgid ":mod:`! asyncio` --- Asynchronous I/O"
3636msgstr ""
3737
3838msgid "Hello World!"
3939msgstr ""
4040
41+ msgid ""
42+ "import asyncio\n"
43+ "\n"
44+ "async def main():\n"
45+ " print('Hello ...')\n"
46+ " await asyncio.sleep(1)\n"
47+ " print('... World!')\n"
48+ "\n"
49+ "asyncio.run(main())"
50+ msgstr ""
51+
4152msgid ""
4253"asyncio is a library to write **concurrent** code using the **async/await** "
4354"syntax."
@@ -48,6 +59,10 @@ msgid ""
4859"that provide high-performance network and web-servers, database connection "
4960"libraries, distributed task queues, etc."
5061msgstr ""
62+ "asyncio jest używane jako podstawa dla wielu Python asynchronicznych "
63+ "frameworków, które zapewniają wysoką wydajność sieci i serwerów "
64+ "internetowych, bibliotek połączeń z bazami danych, rozproszonych kolejek "
65+ "zadań itp."
5166
5267msgid ""
5368"asyncio is often a perfect fit for IO-bound and high-level **structured** "
@@ -81,9 +96,9 @@ msgstr ""
8196
8297msgid ""
8398"create and manage :ref:`event loops <asyncio-event-loop>`, which provide "
84- "asynchronous APIs for :meth :`networking <loop.create_server >`, running :meth :"
85- "`subprocesses <loop.subprocess_exec >`, handling :meth :`OS signals <loop. "
86- "add_signal_handler >`, etc;"
99+ "asynchronous APIs for :ref :`networking <loop_create_server >`, running :ref :"
100+ "`subprocesses <loop_subprocess_exec >`, handling :ref :`OS signals "
101+ "<loop_add_signal_handler >`, etc;"
87102msgstr ""
88103
89104msgid ""
@@ -96,10 +111,7 @@ msgid ""
96111"await syntax."
97112msgstr ""
98113
99- msgid "You can experiment with an ``asyncio`` concurrent context in the REPL:"
100- msgstr ""
101-
102- msgid ":ref:`Availability <availability>`: not Emscripten, not WASI."
114+ msgid "Availability"
103115msgstr ""
104116
105117msgid ""
@@ -108,6 +120,31 @@ msgid ""
108120"more information."
109121msgstr ""
110122
123+ msgid "asyncio REPL"
124+ msgstr ""
125+
126+ msgid "You can experiment with an ``asyncio`` concurrent context in the REPL:"
127+ msgstr ""
128+
129+ msgid ""
130+ "$ python -m asyncio\n"
131+ "asyncio REPL ...\n"
132+ "Use \" await\" directly instead of \" asyncio.run()\" .\n"
133+ "Type \" help\" , \" copyright\" , \" credits\" or \" license\" for more "
134+ "information.\n"
135+ ">>> import asyncio\n"
136+ ">>> await asyncio.sleep(10, result='hello')\n"
137+ "'hello'"
138+ msgstr ""
139+
140+ msgid ""
141+ "Raises an :ref:`auditing event <auditing>` ``cpython.run_stdin`` with no "
142+ "arguments."
143+ msgstr ""
144+
145+ msgid "(also 3.11.10, 3.10.15, 3.9.20, and 3.8.20) Emits audit events."
146+ msgstr ""
147+
111148msgid "Reference"
112149msgstr ""
113150
0 commit comments