Skip to content

Commit c687678

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 7185187 commit c687678

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+149
-48
lines changed

about.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2024-06-07 14:15+0000\n"
15+
"POT-Creation-Date: 2024-06-21 14:14+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1717
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2023\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

c-api/abstract.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2024-06-07 14:15+0000\n"
15+
"POT-Creation-Date: 2024-06-21 14:14+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1717
"Last-Translator: Krzysztof Wierzbicki <krzwierz79@gmail.com>, 2021\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

c-api/dict.po

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ msgid ""
1414
msgstr ""
1515
"Project-Id-Version: Python 3.13\n"
1616
"Report-Msgid-Bugs-To: \n"
17-
"POT-Creation-Date: 2024-06-07 14:15+0000\n"
17+
"POT-Creation-Date: 2024-06-28 14:15+0000\n"
1818
"PO-Revision-Date: 2021-06-28 00:48+0000\n"
1919
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
2020
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -261,6 +261,12 @@ msgid ""
261261
"so long as the set of keys does not change. For example::"
262262
msgstr ""
263263

264+
msgid ""
265+
"The function is not thread-safe in the :term:`free-threaded <free "
266+
"threading>` build without external synchronization. You can use :c:macro:"
267+
"`Py_BEGIN_CRITICAL_SECTION` to lock the dictionary while iterating over it::"
268+
msgstr ""
269+
264270
msgid ""
265271
"Iterate over mapping object *b* adding key-value pairs to dictionary *a*. "
266272
"*b* may be a dictionary, or any object supporting :c:func:`PyMapping_Keys` "

c-api/init.po

Lines changed: 85 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-06-21 14:14+0000\n"
14+
"POT-Creation-Date: 2024-06-28 14:15+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:49+0000\n"
1616
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2023\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -467,8 +467,18 @@ msgid ""
467467
"`Py_NewInterpreter` below) that were created and not yet destroyed since the "
468468
"last call to :c:func:`Py_Initialize`. Ideally, this frees all memory "
469469
"allocated by the Python interpreter. This is a no-op when called for a "
470-
"second time (without calling :c:func:`Py_Initialize` again first). Normally "
471-
"the return value is ``0``. If there were errors during finalization "
470+
"second time (without calling :c:func:`Py_Initialize` again first)."
471+
msgstr ""
472+
473+
msgid ""
474+
"Since this is the reverse of :c:func:`Py_Initialize`, it should be called in "
475+
"the same thread with the same interpreter active. That means the main "
476+
"thread and the main interpreter. This should never be called while :c:func:"
477+
"`Py_RunMain` is running."
478+
msgstr ""
479+
480+
msgid ""
481+
"Normally the return value is ``0``. If there were errors during finalization "
472482
"(flushing buffered data), ``-1`` is returned."
473483
msgstr ""
474484

@@ -2109,6 +2119,78 @@ msgid ""
21092119
"issue a fatal error."
21102120
msgstr ""
21112121

2122+
msgid "Python Critical Section API"
2123+
msgstr ""
2124+
2125+
msgid ""
2126+
"The critical section API provides a deadlock avoidance layer on top of per-"
2127+
"object locks for :term:`free-threaded <free threading>` CPython. They are "
2128+
"intended to replace reliance on the :term:`global interpreter lock`, and are "
2129+
"no-ops in versions of Python with the global interpreter lock."
2130+
msgstr ""
2131+
2132+
msgid ""
2133+
"Critical sections avoid deadlocks by implicitly suspending active critical "
2134+
"sections and releasing the locks during calls to :c:func:"
2135+
"`PyEval_SaveThread`. When :c:func:`PyEval_RestoreThread` is called, the most "
2136+
"recent critical section is resumed, and its locks reacquired. This means "
2137+
"the critical section API provides weaker guarantees than traditional locks "
2138+
"-- they are useful because their behavior is similar to the :term:`GIL`."
2139+
msgstr ""
2140+
2141+
msgid ""
2142+
"The functions and structs used by the macros are exposed for cases where C "
2143+
"macros are not available. They should only be used as in the given macro "
2144+
"expansions. Note that the sizes and contents of the structures may change in "
2145+
"future Python versions."
2146+
msgstr ""
2147+
2148+
msgid ""
2149+
"Operations that need to lock two objects at once must use :c:macro:"
2150+
"`Py_BEGIN_CRITICAL_SECTION2`. You *cannot* use nested critical sections to "
2151+
"lock more than one object at once, because the inner critical section may "
2152+
"suspend the outer critical sections. This API does not provide a way to "
2153+
"lock more than two objects at once."
2154+
msgstr ""
2155+
2156+
msgid "Example usage::"
2157+
msgstr ""
2158+
2159+
msgid ""
2160+
"In the above example, :c:macro:`Py_SETREF` calls :c:macro:`Py_DECREF`, which "
2161+
"can call arbitrary code through an object's deallocation function. The "
2162+
"critical section API avoids potentital deadlocks due to reentrancy and lock "
2163+
"ordering by allowing the runtime to temporarily suspend the critical section "
2164+
"if the code triggered by the finalizer blocks and calls :c:func:"
2165+
"`PyEval_SaveThread`."
2166+
msgstr ""
2167+
2168+
msgid ""
2169+
"Acquires the per-object lock for the object *op* and begins a critical "
2170+
"section."
2171+
msgstr ""
2172+
2173+
msgid "In the free-threaded build, this macro expands to::"
2174+
msgstr ""
2175+
2176+
msgid "In the default build, this macro expands to ``{``."
2177+
msgstr ""
2178+
2179+
msgid "Ends the critical section and releases the per-object lock."
2180+
msgstr ""
2181+
2182+
msgid "In the default build, this macro expands to ``}``."
2183+
msgstr ""
2184+
2185+
msgid ""
2186+
"Acquires the per-objects locks for the objects *a* and *b* and begins a "
2187+
"critical section. The locks are acquired in a consistent order (lowest "
2188+
"address first) to avoid lock ordering deadlocks."
2189+
msgstr ""
2190+
2191+
msgid "Ends the critical section and releases the per-object locks."
2192+
msgstr ""
2193+
21122194
msgid "PyEval_InitThreads()"
21132195
msgstr ""
21142196

c-api/memoryview.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-05-31 14:14+0000\n"
14+
"POT-Creation-Date: 2024-06-21 14:14+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:49+0000\n"
1616
"Last-Translator: haaritsubaki, 2023\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

contents.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-06-07 14:15+0000\n"
14+
"POT-Creation-Date: 2024-06-21 14:14+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1616
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2021\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

faq/extending.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-05-31 14:14+0000\n"
14+
"POT-Creation-Date: 2024-06-21 14:14+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:52+0000\n"
1616
"Last-Translator: Stefan Ocetkiewicz <stefan.ocetkiewicz@gmail.com>, 2021\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

faq/index.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-06-07 14:15+0000\n"
14+
"POT-Creation-Date: 2024-06-21 14:14+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:52+0000\n"
1616
"Last-Translator: Seweryn Piórkowski <seweryn.piorkowski@gmail.com>, 2021\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

faq/installed.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-06-07 14:15+0000\n"
14+
"POT-Creation-Date: 2024-06-21 14:14+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:52+0000\n"
1616
"Last-Translator: Krzysztof Abramowicz, 2022\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

faq/windows.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.13\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2024-06-07 14:15+0000\n"
16+
"POT-Creation-Date: 2024-06-21 14:14+0000\n"
1717
"PO-Revision-Date: 2021-06-28 00:52+0000\n"
1818
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2022\n"
1919
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy