@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version: Python 3.15\n"
1313"Report-Msgid-Bugs-To: \n"
14- "POT-Creation-Date: 2026-06-25 16:18 +0000\n"
14+ "POT-Creation-Date: 2026-06-27 15:10 +0000\n"
1515"PO-Revision-Date: 2025-09-16 00:02+0000\n"
1616"Last-Translator: python-doc bot, 2026\n"
1717"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -60,6 +60,67 @@ msgid ""
6060"exc:`MemoryError` happens. Patch by Amrutha Modela."
6161msgstr ""
6262
63+ msgid ""
64+ ":gh:`71880`: :class:`curses.textpad.Textbox` now lets the lower-right cell "
65+ "of the window be edited. Writing it with :meth:`~curses.window.addch` would "
66+ "move the cursor past the end of the window, raising an error and scrolling a "
67+ "scrollable window, so it is now written with :meth:`~curses.window.insch`, "
68+ "which keeps the cursor in place."
69+ msgstr ""
70+
71+ msgid ""
72+ ":gh:`88758`: :meth:`!tkinter.Misc.focus_get`, :meth:`!focus_displayof`, :"
73+ "meth:`!focus_lastfor` and :meth:`!winfo_containing` now return ``None`` "
74+ "instead of raising :exc:`KeyError` when the widget was not created by :mod:"
75+ "`tkinter` (for example a torn-off menu)."
76+ msgstr ""
77+
78+ msgid ""
79+ ":gh:`38464`: :meth:`!tkinter.Misc.nametowidget` now resolves the auto-"
80+ "generated names of cloned menus (a menu used as a menubar or a cascade) back "
81+ "to the original widget."
82+ msgstr ""
83+
84+ msgid ""
85+ ":gh:`80937`: Fix a memory leak in :mod:`tkinter` when a Tcl command created "
86+ "with ``createcommand`` was not explicitly removed before the interpreter was "
87+ "deleted. The command no longer keeps the interpreter alive through a "
88+ "reference cycle."
89+ msgstr ""
90+
91+ msgid ""
92+ ":gh:`152246`: Fix the pure-Python :mod:`zoneinfo` parser accepting an "
93+ "invalid POSIX TZ transition rule with a non-period separator. Patch by "
94+ "tonghuaroot."
95+ msgstr ""
96+
97+ msgid ""
98+ ":gh:`139816`: Fix a hang in :mod:`tkinter` on interactive Python built "
99+ "without :mod:`readline`. An exception raised in a callback no longer causes "
100+ "the event loop to stop and wait for the user to press Enter; pending "
101+ "callbacks now keep running until input is actually available on stdin."
102+ msgstr ""
103+
104+ msgid ""
105+ ":gh:`139145`: Fix a busy loop in :mod:`tkinter` on interactive Python. When "
106+ "a Tcl command running its own event loop (such as ``vwait`` or :meth:`!"
107+ "wait_variable`) was active and input arrived on stdin, the event loop kept "
108+ "spinning at 100% CPU. The stdin file handler is now removed as soon as input "
109+ "is available. Based on a patch by Michiel de Hoon."
110+ msgstr ""
111+
112+ msgid ""
113+ ":gh:`152212`: Fix the pure-Python :mod:`zoneinfo` parser accepting a POSIX "
114+ "TZ string with a ``std`` abbreviation but no offset. This is invalid per "
115+ "POSIX and now raises :exc:`ValueError`, matching the C accelerator. Patch by "
116+ "tonghuaroot."
117+ msgstr ""
118+
119+ msgid ""
120+ ":gh:`152156`: Fix a possible crash in :func:`concurrent.interpreters.create` "
121+ "under limited memory conditions."
122+ msgstr ""
123+
63124msgid ""
64125":gh:`151763`: Fix crash in :func:`!_interpqueues.create` whe :exc:"
65126"`MemoryError` happens on queue creation."
@@ -76,6 +137,11 @@ msgid ""
76137"second part is zero, matching the pure-Python implementation."
77138msgstr ""
78139
140+ msgid ""
141+ ":gh:`152052`: The :mod:`json` C accelerator now correctly reports an "
142+ "unterminated string for a ``\\uXXXX`` escape at the end of the input."
143+ msgstr ""
144+
79145msgid ""
80146":gh:`152060`: Fix :meth:`datetime.datetime.fromisoformat` raising :exc:"
81147"`AssertionError` instead of :exc:`ValueError` for some malformed strings in "
@@ -125,6 +191,23 @@ msgstr ""
125191msgid "Core and Builtins"
126192msgstr "Core i builtiny"
127193
194+ msgid ""
195+ ":gh:`152235`: Defer GC tracking of :meth:`set.intersection`, :meth:`set."
196+ "difference`, :meth:`set.symmetric_difference`, :meth:`set.union` and ``set."
197+ "__sub__``. Patch by Donghee Na."
198+ msgstr ""
199+
200+ msgid ""
201+ ":gh:`152235`: Defer GC tracking of a :class:`set` or :class:`frozenset` to "
202+ "the end of its construction from iterable. Patch by Donghee Na."
203+ msgstr ""
204+
205+ msgid ""
206+ ":gh:`151722`: :meth:`!frozendict.fromkeys` now only tracks the :class:"
207+ "`frozendict` in the garbage collector once the dictionary is fully "
208+ "initialized. Patch by Donghee Na and Victor Stinner."
209+ msgstr ""
210+
128211msgid ""
129212":gh:`151763`: Fixes possible crash on :class:`types.CodeType` deallocation."
130213msgstr ""
0 commit comments