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

+1-1
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

+1-1
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

+7-1
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

+85-3
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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"

howto/gdb_helpers.po

+1-1
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: 2024-02-25 01:11+0000\n"
1616
"Last-Translator: Stefan Ocetkiewicz <stefan.ocetkiewicz@gmail.com>, 2024\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

howto/sorting.po

+1-1
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-05-31 14:14+0000\n"
15+
"POT-Creation-Date: 2024-06-21 14:14+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:53+0000\n"
1717
"Last-Translator: Krzysztof Abramowicz, 2022\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

library/asyncio-api-index.po

+1-1
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:54+0000\n"
1717
"Last-Translator: Igor Zubrycki <igorzubrycki@gmail.com>, 2021\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

library/datatypes.po

+1-1
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 01:04+0000\n"
1717
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2022\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

library/debug.po

+1-1
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 01:04+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"

library/email.examples.po

+1-1
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 01:05+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"

library/exceptions.po

+1-1
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 01:05+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"

library/functional.po

+1-1
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 01:06+0000\n"
1616
"Last-Translator: Krzysztof Abramowicz, 2022\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

library/functions.po

+1-1
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 01:06+0000\n"
1818
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2024\n"
1919
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

library/functools.po

+1-1
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 01:06+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"

library/importlib.metadata.po

+1-1
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 01:08+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"

library/index.po

+1-1
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 01:08+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"

library/internet.po

+1-1
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 01:08+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"

library/numeric.po

+1-1
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 01:10+0000\n"
1616
"Last-Translator: Krzysztof Abramowicz, 2022\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

library/stdtypes.po

+4-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ msgid ""
1515
msgstr ""
1616
"Project-Id-Version: Python 3.13\n"
1717
"Report-Msgid-Bugs-To: \n"
18-
"POT-Creation-Date: 2024-06-14 14:16+0000\n"
18+
"POT-Creation-Date: 2024-06-28 14:15+0000\n"
1919
"PO-Revision-Date: 2021-06-28 01:13+0000\n"
2020
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
2121
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -1284,7 +1284,9 @@ msgstr ""
12841284
msgid "reverses the items of *s* in place"
12851285
msgstr ""
12861286

1287-
msgid "*t* must have the same length as the slice it is replacing."
1287+
msgid ""
1288+
"If *k* is not equal to ``1``, *t* must have the same length as the slice it "
1289+
"is replacing."
12881290
msgstr ""
12891291

12901292
msgid ""

library/text.po

+1-1
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 01:15+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"

library/urllib.parse.po

+2-2
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-14 14:16+0000\n"
15+
"POT-Creation-Date: 2024-06-28 14:15+0000\n"
1616
"PO-Revision-Date: 2021-06-28 01:17+0000\n"
1717
"Last-Translator: Waldemar Stoczkowski, 2023\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -235,7 +235,7 @@ msgid "Added IPv6 URL parsing capabilities."
235235
msgstr ""
236236

237237
msgid ""
238-
"The fragment is now parsed for all URL schemes (unless *allow_fragment* is "
238+
"The fragment is now parsed for all URL schemes (unless *allow_fragments* is "
239239
"false), in accordance with :rfc:`3986`. Previously, an allowlist of schemes "
240240
"that support fragments existed."
241241
msgstr ""

library/zipfile.po

+1-1
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 01:18+0000\n"
1717
"Last-Translator: Waldemar Stoczkowski, 2023\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

0 commit comments

Comments
 (0)