Skip to content

Commit f96e484

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 16e1d01 commit f96e484

5 files changed

Lines changed: 83 additions & 21 deletions

File tree

library/inspect.po

Lines changed: 54 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-05-13 17:14+0000\n"
14+
"POT-Creation-Date: 2026-05-19 17:38+0000\n"
1515
"PO-Revision-Date: 2026-05-08 17:18+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2026\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -576,17 +576,69 @@ msgstr ""
576576
msgid "Return ``True`` if the object is a bound method written in Python."
577577
msgstr ""
578578

579-
msgid "Return ``True`` if the object is a :term:`package`."
579+
msgid "For example, given this class::"
580+
msgstr ""
581+
582+
msgid ""
583+
">>> class Greeter:\n"
584+
"... def say_hello(self):\n"
585+
"... print('hello!')"
586+
msgstr ""
587+
588+
msgid ""
589+
"A bound method (also known as an *instance method*) is created when "
590+
"accessing ``say_hello`` (a :term:`function` defined in the ``Greeter`` "
591+
"namespace) through an instance of the ``Greeter`` class::"
592+
msgstr ""
593+
594+
msgid ""
595+
">>> instance = Greeter()\n"
596+
"\n"
597+
">>> instance.say_hello\n"
598+
"<bound method Greeter.say_hello of <__main__.Greeter object ...>>\n"
599+
">>> ismethod(instance.say_hello)\n"
600+
"True\n"
601+
">>> isfunction(instance.say_hello)\n"
602+
"False"
603+
msgstr ""
604+
605+
msgid ""
606+
"Accessing ``say_hello`` through the ``Greeter`` class will return the "
607+
"function itself. For this function, :func:`ismethod` will return ``False``, "
608+
"but :func:`isfunction` will return ``True``::"
609+
msgstr ""
610+
611+
msgid ""
612+
">>> Greeter.say_hello\n"
613+
"<function Greeter.say_hello at 0x7f7503854a90>\n"
614+
">>> ismethod(Greeter.say_hello)\n"
615+
"False\n"
616+
">>> isfunction(Greeter.say_hello)\n"
617+
"True"
618+
msgstr ""
619+
620+
msgid "See :ref:`typesmethods` for details."
580621
msgstr ""
581622

582623
msgid ""
583624
"Return ``True`` if the object is a Python function, which includes functions "
584625
"created by a :term:`lambda` expression."
585626
msgstr ""
586627

628+
msgid "See the note for :func:`~inspect.ismethod` for an example."
629+
msgstr ""
630+
631+
msgid "Return ``True`` if the object is a :term:`package`."
632+
msgstr ""
633+
587634
msgid "Return ``True`` if the object is a Python generator function."
588635
msgstr ""
589636

637+
msgid ""
638+
"It also returns ``True`` for bound methods created from Python generator "
639+
"functions (see :ref:`typesmethods` for more information)."
640+
msgstr ""
641+
590642
msgid ""
591643
"Functions wrapped in :func:`functools.partial` now return ``True`` if the "
592644
"wrapped function is a Python generator function."

library/shutil.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-05-08 19:31+0000\n"
14+
"POT-Creation-Date: 2026-05-19 17:38+0000\n"
1515
"PO-Revision-Date: 2026-05-08 17:18+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2026\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -855,8 +855,8 @@ msgstr ""
855855
msgid ""
856856
"Never extract archives from untrusted sources without prior inspection. It "
857857
"is possible that files are created outside of the path specified in the "
858-
"*extract_dir* argument, e.g. members that have absolute filenames starting "
859-
"with \"/\" or filenames with two dots \"..\"."
858+
"*extract_dir* argument, for example, members that have absolute filenames or "
859+
"filenames with \"..\" components."
860860
msgstr ""
861861

862862
msgid ""

library/ssl.po

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-05-08 19:31+0000\n"
14+
"POT-Creation-Date: 2026-05-19 17:38+0000\n"
1515
"PO-Revision-Date: 2026-05-08 17:18+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2026\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -1997,7 +1997,7 @@ msgid ""
19971997
"The attributes :attr:`~SSLContext.maximum_version`, :attr:`~SSLContext."
19981998
"minimum_version` and :attr:`SSLContext.options` all affect the supported SSL "
19991999
"and TLS versions of the context. The implementation does not prevent invalid "
2000-
"combination. For example a context with :attr:`OP_NO_TLSv1_2` in :attr:"
2000+
"combinations. For example a context with :attr:`OP_NO_TLSv1_2` in :attr:"
20012001
"`~SSLContext.options` and :attr:`~SSLContext.maximum_version` set to :attr:"
20022002
"`TLSVersion.TLSv1_2` will not be able to establish a TLS 1.2 connection."
20032003
msgstr ""
@@ -2938,15 +2938,12 @@ msgstr ""
29382938

29392939
msgid ""
29402940
">>> client_context = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT)\n"
2941-
">>> client_context.minimum_version = ssl.TLSVersion.TLSv1_3\n"
2941+
">>> client_context.minimum_version = ssl.TLSVersion.TLSv1_2\n"
29422942
">>> client_context.maximum_version = ssl.TLSVersion.TLSv1_3"
29432943
msgstr ""
2944-
">>> client_context = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT)\n"
2945-
">>> client_context.minimum_version = ssl.TLSVersion.TLSv1_3\n"
2946-
">>> client_context.maximum_version = ssl.TLSVersion.TLSv1_3"
29472944

29482945
msgid ""
2949-
"The SSL context created above will only allow TLSv1.3 and later (if "
2946+
"The SSL client context created above will only allow TLSv1.2 and TLSv1.3 (if "
29502947
"supported by your system) connections to a server. :const:"
29512948
"`PROTOCOL_TLS_CLIENT` implies certificate validation and hostname checks by "
29522949
"default. You have to load certificates into the context."

library/zipfile.po

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-05-08 19:31+0000\n"
14+
"POT-Creation-Date: 2026-05-19 17:38+0000\n"
1515
"PO-Revision-Date: 2026-05-08 17:18+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2026\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -432,9 +432,9 @@ msgstr ""
432432

433433
msgid ""
434434
"Never extract archives from untrusted sources without prior inspection. It "
435-
"is possible that files are created outside of *path*, e.g. members that have "
436-
"absolute filenames starting with ``\"/\"`` or filenames with two dots ``\".."
437-
"\"``. This module attempts to prevent that. See :meth:`extract` note."
435+
"is possible that files are created outside of *path*, for example, members "
436+
"that have absolute filenames or filenames with \"..\" components. This "
437+
"module attempts to prevent that. See :meth:`extract` note."
438438
msgstr ""
439439

440440
msgid ""
@@ -604,10 +604,10 @@ msgid ""
604604
"The :class:`Path` class does not sanitize filenames within the ZIP archive. "
605605
"Unlike the :meth:`ZipFile.extract` and :meth:`ZipFile.extractall` methods, "
606606
"it is the caller's responsibility to validate or sanitize filenames to "
607-
"prevent path traversal vulnerabilities (e.g., filenames containing \"..\" or "
608-
"absolute paths). When handling untrusted archives, consider resolving "
609-
"filenames using :func:`os.path.abspath` and checking against the target "
610-
"directory with :func:`os.path.commonpath`."
607+
"prevent path traversal vulnerabilities (for example, absolute paths or paths "
608+
"with \"..\" components). When handling untrusted archives, consider "
609+
"resolving filenames using :func:`os.path.abspath` and checking against the "
610+
"target directory with :func:`os.path.commonpath`."
611611
msgstr ""
612612

613613
msgid ""

whatsnew/changelog.po

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-05-17 15:44+0000\n"
14+
"POT-Creation-Date: 2026-05-19 17:38+0000\n"
1515
"PO-Revision-Date: 2026-05-08 17:19+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2026\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -82,11 +82,21 @@ msgstr ""
8282
msgid "Library"
8383
msgstr "Biblioteka"
8484

85+
msgid ""
86+
":gh:`146452`: Fix race condition when pickling dictionaries in free threaded "
87+
"builds. Also reduce critical section cover."
88+
msgstr ""
89+
8590
msgid ""
8691
":gh:`149921`: Fix reference leaks in error paths of the :mod:`!"
8792
"_interpchannels` and :mod:`!_interpqueues` extension modules."
8893
msgstr ""
8994

95+
msgid ""
96+
":gh:`149816`: Fix a race condition in ``_random.Random.__init__`` method in "
97+
"free-threading mode."
98+
msgstr ""
99+
90100
msgid ""
91101
":gh:`149801`: Add IANA registered names and aliases with leading zeros "
92102
"before number (like IBM00858, CP00858, IBM01140, CP01140) for corresponding "
@@ -133,6 +143,9 @@ msgstr ""
133143
msgid "Core and Builtins"
134144
msgstr "Core i builtiny"
135145

146+
msgid ":gh:`149590`: Fix crash when faulthandler is imported more than once."
147+
msgstr ""
148+
136149
msgid ""
137150
":gh:`149816`: Fix a race condition in :class:`memoryview` with free-"
138151
"threading."

0 commit comments

Comments
 (0)