@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version: Python 3.11\n"
1313"Report-Msgid-Bugs-To: \n"
14- "POT-Creation-Date: 2026-08-09 17:32 +0000\n"
14+ "POT-Creation-Date: 2026-08-11 18:06 +0000\n"
1515"PO-Revision-Date: 2025-09-22 16:51+0000\n"
1616"Last-Translator: python-doc bot, 2026\n"
1717"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -40,9 +40,31 @@ msgid ""
4040"`webbrowser` and :mod:`!turtledemo`."
4141msgstr ""
4242
43+ msgid "Tests"
44+ msgstr "Testy"
45+
46+ msgid ""
47+ ":gh:`149776`: Fix test_socket on Linux kernel 7.1 and newer: skip UDP Lite "
48+ "tests if it's not supported. Patch by Victor Stinner."
49+ msgstr ""
50+
4351msgid "Security"
4452msgstr "Bezpieczeństwo"
4553
54+ msgid ""
55+ ":gh:`153030`: Fixed quadratic complexity in incremental parsing of long "
56+ "unterminated constructs (such as tags or comments) in :class:`html.parser."
57+ "HTMLParser`, which could be exploited for a denial of service."
58+ msgstr ""
59+
60+ msgid ""
61+ ":gh:`152674`: The :class:`xml.etree.ElementTree.Element` methods :meth:`~xml."
62+ "etree.ElementTree.Element.findall`, :meth:`~xml.etree.ElementTree.Element."
63+ "iterfind` and :meth:`~xml.etree.ElementTree.Element.find` avoid quadratic "
64+ "behavior when using XPath index predicates (``[1]``, ``[last()]``, ``[last()-"
65+ "N]``) on XML documents with many same-tag siblings."
66+ msgstr ""
67+
4668msgid ""
4769":gh:`151987`: The :meth:`tarfile.TarFile.extract` method now applies the "
4870"given filter when it extracts a link target from the archive as a fallback."
@@ -53,13 +75,26 @@ msgid ""
5375"stream is reached."
5476msgstr ""
5577
78+ msgid ""
79+ ":gh:`151544`: :file:`Modules/Setup.local` is no longer used as a landmark to "
80+ "discover whether Python is running in a source tree, as it could potentially "
81+ "affect actual installs. The :file:`pybuilddir.txt` file is now the sole "
82+ "indicator of running in a source tree."
83+ msgstr ""
84+
5685msgid ""
5786":gh:`151558`: Fixed an vulnerability in the :mod:`tarfile` ``data`` and "
5887"``tar`` extraction filters where crafted archives could create a symlink "
5988"pointing outside the destination directory. This was a bypass of "
6089"CVE-2025-4330."
6190msgstr ""
6291
92+ msgid ""
93+ ":gh:`150599`: Fix a possible stack buffer overflow in :mod:`bz2` when a :"
94+ "class:`bz2.BZ2Decompressor` is reused after a decompression error. The "
95+ "decompressor now becomes unusable after libbz2 reports an error."
96+ msgstr ""
97+
6398msgid ""
6499":gh:`150743`: :mod:`http.client` now limits the number of chunked-response "
65100"trailer lines it will read to 100, and the number of interim (1xx) responses "
@@ -69,6 +104,11 @@ msgid ""
69104"g22w-6fr4."
70105msgstr ""
71106
107+ msgid ""
108+ ":gh:`149698`: Update bundled `libexpat <https://libexpat.github.io/>`_ to "
109+ "version 2.8.1 for the fix for CVE-2026-45186."
110+ msgstr ""
111+
72112msgid ""
73113":gh:`87451`: The :mod:`ftplib` module's undocumented ``ftpcp`` function no "
74114"longer trusts the IPv4 address value returned from the source server in "
@@ -88,6 +128,20 @@ msgid ""
88128"filter."
89129msgstr ""
90130
131+ msgid ""
132+ ":gh:`149079`: Fix a potential denial of service in :func:`unicodedata."
133+ "normalize`. The canonical ordering step of Unicode normalization used a "
134+ "quadratic-time insertion sort for reordering combining characters, which "
135+ "could be exploited with crafted input containing many combining characters "
136+ "in non-canonical order. Replaced with a linear-time counting sort for long "
137+ "runs."
138+ msgstr ""
139+
140+ msgid ""
141+ ":gh:`149017`: Update bundled `libexpat <https://libexpat.github.io/>`_ to "
142+ "version 2.8.0."
143+ msgstr ""
144+
91145msgid ""
92146":gh:`148808`: Added buffer boundary check when using ``nbytes`` parameter "
93147"with :meth:`!asyncio.AbstractEventLoop.sock_recvfrom_into`. Only relevant "
@@ -115,6 +169,13 @@ msgid ""
115169"\"foo..bar\") are no longer skipped."
116170msgstr ""
117171
172+ msgid ""
173+ ":gh:`146333`: Fix quadratic backtracking in :class:`configparser."
174+ "RawConfigParser` option parsing regexes (``OPTCRE`` and ``OPTCRE_NV``). A "
175+ "crafted configuration line with many whitespace characters could cause "
176+ "excessive CPU usage."
177+ msgstr ""
178+
118179msgid ""
119180":gh:`146211`: Reject CR/LF characters in tunnel request headers for the "
120181"HTTPConnection.set_tunnel() method."
@@ -150,9 +211,31 @@ msgid ""
150211"open`."
151212msgstr ""
152213
214+ msgid ""
215+ ":gh:`143927`: Normalize all line endings (CR, CRLF, and LF) to LF+TAB when "
216+ "writing multi-line configparser values."
217+ msgstr ""
218+
153219msgid "Library"
154220msgstr "Biblioteka"
155221
222+ msgid ""
223+ ":gh:`109638`: Fix exponential time in :meth:`csv.Sniffer.sniff` for a sample "
224+ "which contains many quote characters. A doubled quote character is now also "
225+ "detected in a field which contains the delimiter or a line break."
226+ msgstr ""
227+
228+ msgid ""
229+ ":gh:`98820`: Fix quadratic time in :meth:`csv.Sniffer.sniff` for a sample "
230+ "which contains quoted fields, in particular for a single column of quoted "
231+ "fields."
232+ msgstr ""
233+
234+ msgid ""
235+ ":gh:`149231`: In :mod:`tomllib`, the number of parts in TOML keys is now "
236+ "limited."
237+ msgstr ""
238+
156239msgid ""
157240":gh:`146083`: Update bundled `libexpat <https://libexpat.github.io/>`_ to "
158241"version 2.7.5."
@@ -172,6 +255,19 @@ msgid ""
172255"attacks. Patch by Bénédikt Tran."
173256msgstr ""
174257
258+ msgid ""
259+ ":gh:`100372`: :meth:`ssl.SSLContext.load_verify_locations` no longer "
260+ "incorrectly accepts some cases of trailing data when parsing DER."
261+ msgstr ""
262+
263+ msgid "Build"
264+ msgstr "Build"
265+
266+ msgid ""
267+ ":gh:`153438`: Update Windows build and installer tooling and documentation "
268+ "to use the current download URL for ``nuget.exe``."
269+ msgstr ""
270+
175271msgid "Python 3.11.15 final"
176272msgstr ""
177273
@@ -524,9 +620,6 @@ msgid ""
524620"multissltests to use 3.0.15, 3.1.7, and 3.2.3."
525621msgstr ""
526622
527- msgid "Tests"
528- msgstr "Testy"
529-
530623msgid ""
531624":gh:`125041`: Re-enable skipped tests for :mod:`zlib` on the s390x "
532625"architecture: only skip checks of the compressed bytes, which can be "
@@ -1122,9 +1215,6 @@ msgid ""
11221215"newer Docutils."
11231216msgstr ""
11241217
1125- msgid "Build"
1126- msgstr "Build"
1127-
11281218msgid ""
11291219":gh:`116313`: Get WASI builds to work under wasmtime 18 w/ WASI 0.2/preview2 "
11301220"primitives."
0 commit comments