Skip to content

Commit 26886e7

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent bc44145 commit 26886e7

2 files changed

Lines changed: 78 additions & 4 deletions

File tree

library/warnings.po

Lines changed: 42 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.15\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-06-02 00:16+0000\n"
14+
"POT-Creation-Date: 2026-06-15 18:22+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:02+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -804,8 +804,47 @@ msgid ""
804804
"`False` (the default) the context manager returns :class:`None` on entry. If "
805805
"*record* is :const:`True`, a list is returned that is progressively "
806806
"populated with objects as seen by a custom :func:`showwarning` function "
807-
"(which also suppresses output to ``sys.stdout``). Each object in the list "
808-
"has attributes with the same names as the arguments to :func:`showwarning`."
807+
"(which also suppresses output to ``sys.stderr``). Each object in the list is "
808+
"guaranteed to have the following attributes:"
809+
msgstr ""
810+
811+
msgid "``message``: the warning message (an instance of :exc:`Warning`)"
812+
msgstr ""
813+
814+
msgid "``category``: the warning category (a subclass of :exc:`Warning`)"
815+
msgstr ""
816+
817+
msgid "``filename``: the file name where the warning occurred (:class:`str`)"
818+
msgstr ""
819+
820+
msgid "``lineno``: the line number in the file (:class:`int`)"
821+
msgstr ""
822+
823+
msgid "``file``: the file object used for output (if any), or ``None``"
824+
msgstr ""
825+
826+
msgid "``line``: the line of source code (if available), or ``None``"
827+
msgstr ""
828+
829+
msgid ""
830+
"``source``: the original object that generated the warning (if available), "
831+
"or ``None``"
832+
msgstr ""
833+
834+
msgid ""
835+
"``module``: the module name where the warning occurred (:class:`str`), or "
836+
"``None``"
837+
msgstr ""
838+
839+
msgid "The ``source`` attribute was added."
840+
msgstr ""
841+
842+
msgid "The ``module`` attribute was added."
843+
msgstr ""
844+
845+
msgid ""
846+
"The type of these objects is not specified and may change; only the presence "
847+
"of these attributes is guaranteed."
809848
msgstr ""
810849

811850
msgid ""

whatsnew/changelog.po

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.15\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-06-13 15:28+0000\n"
14+
"POT-Creation-Date: 2026-06-15 18:22+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"
@@ -53,6 +53,11 @@ msgstr "Testy"
5353
msgid ":gh:`151130`: Add more tests for ``PyWeakref_*`` C API."
5454
msgstr ""
5555

56+
msgid ""
57+
":gh:`148853`: Fix tests failing on FreeBSD in test.support's "
58+
"in_systemd_nspawn_sync_suppressed() due to unreadable /run directory."
59+
msgstr ""
60+
5661
msgid "Security"
5762
msgstr "Bezpieczeństwo"
5863

@@ -77,6 +82,24 @@ msgstr ""
7782
msgid "Library"
7883
msgstr "Biblioteka"
7984

85+
msgid ""
86+
":gh:`151426`: Fix impossible stack traces (callers and callees cross called, "
87+
"orphans and incorrect lines) in the Tachyon profiler when caching frames, by "
88+
"snapshotting the stack chunks before walking the frame chain on a cache "
89+
"miss. Patch by Maurycy Pawłowski-Wieroński."
90+
msgstr ""
91+
92+
msgid ""
93+
":gh:`151403`: Fixed a crash in :class:`subprocess.Popen` (and "
94+
"``_posixsubprocess.fork_exec``) when an ``argv`` item's :meth:`~os.PathLike."
95+
"__fspath__` concurrently mutates the ``args`` sequence being converted."
96+
msgstr ""
97+
98+
msgid ""
99+
":gh:`151390`: Colorize ``match`` in the :term:`REPL` when followed by a "
100+
"unary ``+`` or ``-`` operator. Patch by Bartosz Sławecki."
101+
msgstr ""
102+
80103
msgid ""
81104
":gh:`151126`: Fix crash on unset :exc:`MemoryError` on allocation failure "
82105
"in :func:`ctypes.get_errno`."
@@ -90,6 +113,12 @@ msgid ""
90113
"_path_splitroot` was not set properly."
91114
msgstr ""
92115

116+
msgid ""
117+
":gh:`149671`: Restore compatibility with setuptools ``-nspkg.pth`` files in "
118+
"the :mod:`site` module. Inject ``sitedir`` variable in the frame which "
119+
"executes pth code. Patch by Victor Stinner."
120+
msgstr ""
121+
93122
msgid ""
94123
":gh:`151295`: Fixed a crash (use-after-free) in :meth:`bytes.join` and :meth:"
95124
"`bytearray.join` that could occur if an item's :meth:`~object.__buffer__` "
@@ -215,6 +244,12 @@ msgstr ""
215244
msgid "Core and Builtins"
216245
msgstr "Core i builtiny"
217246

247+
msgid ""
248+
":gh:`151461`: Fix direct execution of files with invalid source encodings to "
249+
"report the underlying codec lookup or decoding error instead of the generic "
250+
"``SyntaxError: encoding problem`` message. Patch by Bartosz Sławecki."
251+
msgstr ""
252+
218253
msgid ""
219254
":gh:`151297`: Fix an invalid pointer dereference that could occur when "
220255
"calling :c:func:`PyObject_Realloc` with a NULL pointer in :term:`free-"

0 commit comments

Comments
 (0)