1
1
# SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) 2001-2023 , Python Software Foundation
2
+ # Copyright (C) 2001-2025 , Python Software Foundation
3
3
# This file is distributed under the same license as the Python package.
4
4
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
5
#
6
6
# Translators:
7
- # Transifex Bot <>, 2023
7
+ # Kamil Broniowski, 2025
8
8
#
9
9
#, fuzzy
10
10
msgid ""
11
11
msgstr ""
12
- "Project-Id-Version : Python 3.11 \n "
12
+ "Project-Id-Version : Python 3.12 \n "
13
13
"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 "
17
17
"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
18
18
"MIME-Version : 1.0\n "
19
19
"Content-Type : text/plain; charset=UTF-8\n "
@@ -32,12 +32,23 @@ msgstr ""
32
32
msgid "Guides and Tutorials"
33
33
msgstr ""
34
34
35
- msgid ":mod:`asyncio` --- Asynchronous I/O"
35
+ msgid ":mod:`! asyncio` --- Asynchronous I/O"
36
36
msgstr ""
37
37
38
38
msgid "Hello World!"
39
39
msgstr ""
40
40
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
+
41
52
msgid ""
42
53
"asyncio is a library to write **concurrent** code using the **async/await** "
43
54
"syntax."
@@ -48,6 +59,10 @@ msgid ""
48
59
"that provide high-performance network and web-servers, database connection "
49
60
"libraries, distributed task queues, etc."
50
61
msgstr ""
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."
51
66
52
67
msgid ""
53
68
"asyncio is often a perfect fit for IO-bound and high-level **structured** "
@@ -81,9 +96,9 @@ msgstr ""
81
96
82
97
msgid ""
83
98
"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;"
87
102
msgstr ""
88
103
89
104
msgid ""
@@ -96,10 +111,7 @@ msgid ""
96
111
"await syntax."
97
112
msgstr ""
98
113
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"
103
115
msgstr ""
104
116
105
117
msgid ""
@@ -108,6 +120,31 @@ msgid ""
108
120
"more information."
109
121
msgstr ""
110
122
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
+
111
148
msgid "Reference"
112
149
msgstr ""
113
150
0 commit comments