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+ # Stan Ulbrych, 2025
88#
99#, fuzzy
1010msgid ""
1111msgstr ""
12- "Project-Id-Version : Python 3.11 \n "
12+ "Project-Id-Version : Python 3.13 \n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2023-05-19 14:13 +0000\n "
14+ "POT-Creation-Date : 2025-01-24 14:16 +0000\n "
1515"PO-Revision-Date : 2021-06-28 00:55+0000\n "
16- "Last-Translator : Transifex Bot <>, 2023 \n "
16+ "Last-Translator : Stan Ulbrych, 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 "
@@ -125,19 +125,19 @@ msgid "On Windows, :class:`ProactorEventLoop` is now used by default."
125125msgstr ""
126126
127127msgid ""
128- "In Python versions 3.10.9, 3.11.1 and 3.12 the :meth:`get_event_loop` method "
129- "of the default asyncio policy emits a : exc:`DeprecationWarning` if there is "
130- "no running event loop and no current loop is set . In some future Python "
131- "release this will become an error."
128+ "The :meth:`get_event_loop` method of the default asyncio policy now emits a : "
129+ "exc:`DeprecationWarning` if there is no current event loop set and it "
130+ "decides to create one . In some future Python release this will become an "
131+ "error."
132132msgstr ""
133133
134134msgid ""
135135"An alternative event loop policy that uses the :class:`SelectorEventLoop` "
136136"event loop implementation."
137137msgstr ""
138138
139- msgid ":ref:` Availability <availability>`: Windows. "
140- msgstr ""
139+ msgid "Availability"
140+ msgstr "Dostępność "
141141
142142msgid ""
143143"An alternative event loop policy that uses the :class:`ProactorEventLoop` "
@@ -249,7 +249,7 @@ msgstr ""
249249
250250msgid ""
251251"There is no noticeable overhead when handling a big number of children "
252- "(*O(1)* each time a child terminates), but starting a thread per process "
252+ "(*O* \\ (1) each time a child terminates), but starting a thread per process "
253253"requires extra memory."
254254msgstr ""
255255
@@ -274,7 +274,7 @@ msgstr ""
274274
275275msgid ""
276276"The solution is safe but it has a significant overhead when handling a big "
277- "number of processes (*O(n)* each time a :py:data:`SIGCHLD` is received)."
277+ "number of processes (*O* \\ (*n*) each time a :py:data:`SIGCHLD` is received)."
278278msgstr ""
279279
280280msgid ""
@@ -285,8 +285,8 @@ msgstr ""
285285
286286msgid ""
287287"This solution is as safe as :class:`MultiLoopChildWatcher` and has the same "
288- "*O(N)* complexity but requires a running event loop in the main thread to "
289- "work."
288+ "*O* \\ (*n*) complexity but requires a running event loop in the main thread "
289+ "to work."
290290msgstr ""
291291
292292msgid ""
@@ -297,7 +297,7 @@ msgstr ""
297297
298298msgid ""
299299"There is no noticeable overhead when handling a big number of children "
300- "(*O(1)* each time a child terminates)."
300+ "(*O* \\ (1) each time a child terminates)."
301301msgstr ""
302302
303303msgid ""
@@ -323,3 +323,18 @@ msgid ""
323323"`DefaultEventLoopPolicy` and override the methods for which custom behavior "
324324"is wanted, e.g.::"
325325msgstr ""
326+
327+ msgid ""
328+ "class MyEventLoopPolicy(asyncio.DefaultEventLoopPolicy):\n"
329+ "\n"
330+ " def get_event_loop(self):\n"
331+ " \"\"\" Get the event loop.\n"
332+ "\n"
333+ " This may be None or an instance of EventLoop.\n"
334+ " \"\"\" \n"
335+ " loop = super().get_event_loop()\n"
336+ " # Do something with loop ...\n"
337+ " return loop\n"
338+ "\n"
339+ "asyncio.set_event_loop_policy(MyEventLoopPolicy())"
340+ msgstr ""
0 commit comments