Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit6b206dd

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent921459e commit6b206dd

File tree

3 files changed

+82
-6
lines changed

3 files changed

+82
-6
lines changed

‎c-api/dict.po‎

Lines changed: 4 additions & 4 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:2025-10-25 15:01+0000\n"
14+
"POT-Creation-Date:2025-11-03 15:10+0000\n"
1515
"PO-Revision-Date:2025-09-15 01:03+0000\n"
1616
"Last-Translator:python-doc bot, 2025\n"
1717
"Language-Team:Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -64,7 +64,7 @@ msgid "Empty an existing dictionary of all key-value pairs."
6464
msgstr""
6565

6666
msgid""
67-
"Determine if dictionary *p* contains *key*. If an item in *p*ismatches "
67+
"Determine if dictionary *p* contains *key*. If an item in *p* matches "
6868
"*key*, return ``1``, otherwise return ``0``. On error, return ``-1``. This "
6969
"is equivalent to the Python expression ``key in p``."
7070
msgstr""
@@ -193,7 +193,7 @@ msgstr ""
193193

194194
msgid""
195195
"Remove *key* from dictionary *p* and optionally return the removed value. Do "
196-
"not raise :exc:`KeyError` if the key missing."
196+
"not raise :exc:`KeyError` if the keyismissing."
197197
msgstr""
198198

199199
msgid""
@@ -208,7 +208,7 @@ msgstr ""
208208

209209
msgid""
210210
"Similar to :meth:`dict.pop`, but without the default value and not raising :"
211-
"exc:`KeyError` if the key missing."
211+
"exc:`KeyError` if the keyismissing."
212212
msgstr""
213213

214214
msgid""

‎library/pyexpat.po‎

Lines changed: 64 additions & 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:2025-10-25 15:01+0000\n"
14+
"POT-Creation-Date:2025-11-03 15:10+0000\n"
1515
"PO-Revision-Date:2025-09-15 01:04+0000\n"
1616
"Last-Translator:python-doc bot, 2025\n"
1717
"Language-Team:Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -75,6 +75,13 @@ msgid ""
7575
"implicit or explicit encoding of the document."
7676
msgstr""
7777

78+
msgid""
79+
"Parsers created through :func:`!ParserCreate` are called\"root\" parsers, "
80+
"in the sense that they do not have any parent parser attached. Non-root "
81+
"parsers are created by :meth:`parser.ExternalEntityParserCreate <xmlparser."
82+
"ExternalEntityParserCreate>`."
83+
msgstr""
84+
7885
msgid""
7986
"Expat can optionally do XML namespace processing for you, enabled by "
8087
"providing a value for *namespace_separator*. The value must be a one-"
@@ -236,6 +243,62 @@ msgid ""
236243
"parser instance."
237244
msgstr""
238245

246+
msgid""
247+
":class:`!xmlparser` objects have the following methods to mitigate some "
248+
"common XML vulnerabilities."
249+
msgstr""
250+
251+
msgid""
252+
"Sets the number of allocated bytes of dynamic memory needed to activate "
253+
"protection against disproportionate use of RAM."
254+
msgstr""
255+
256+
msgid""
257+
"By default, parser objects have an allocation activation threshold of 64 "
258+
"MiB, or equivalently 67,108,864 bytes."
259+
msgstr""
260+
261+
msgid""
262+
"An :exc:`ExpatError` is raised if this method is called on a |xml-non-root-"
263+
"parser| parser. The corresponding :attr:`~ExpatError.lineno` and :attr:"
264+
"`~ExpatError.offset` should not be used as they may have no special meaning."
265+
msgstr""
266+
267+
msgid""
268+
"Sets the maximum amplification factor between direct input and bytes of "
269+
"dynamic memory allocated."
270+
msgstr""
271+
272+
msgid""
273+
"The amplification factor is calculated as ``allocated / direct`` while "
274+
"parsing, where ``direct`` is the number of bytes read from the primary "
275+
"document in parsing and ``allocated`` is the number of bytes of dynamic "
276+
"memory allocated in the parser hierarchy."
277+
msgstr""
278+
279+
msgid""
280+
"The *max_factor* value must be a non-NaN :class:`float` value greater than "
281+
"or equal to 1.0. Amplification factors greater than 100.0 can be observed "
282+
"near the start of parsing even with benign files in practice. In particular, "
283+
"the activation threshold should be carefully chosen to avoid false positives."
284+
msgstr""
285+
286+
msgid""
287+
"By default, parser objects have a maximum amplification factor of 100.0."
288+
msgstr""
289+
290+
msgid""
291+
"An :exc:`ExpatError` is raised if this method is called on a |xml-non-root-"
292+
"parser| parser or if *max_factor* is outside the valid range. The "
293+
"corresponding :attr:`~ExpatError.lineno` and :attr:`~ExpatError.offset` "
294+
"should not be used as they may have no special meaning."
295+
msgstr""
296+
297+
msgid""
298+
"The maximum amplification factor is only considered if the threshold that "
299+
"can be adjusted by :meth:`.SetAllocTrackerActivationThreshold` is exceeded."
300+
msgstr""
301+
239302
msgid":class:`xmlparser` objects have the following attributes:"
240303
msgstr""
241304

‎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.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-11-01 14:58+0000\n"
14+
"POT-Creation-Date: 2025-11-03 15:10+0000\n"
1515
"PO-Revision-Date: 2025-09-15 01:05+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -157,6 +157,14 @@ msgid ""
157157
"they were treated as part of multi-character sequences."
158158
msgstr ""
159159

160+
msgid ""
161+
":gh:`90949`: Add :meth:`~xml.parsers.expat.xmlparser."
162+
"SetAllocTrackerActivationThreshold` and :meth:`~xml.parsers.expat.xmlparser."
163+
"SetAllocTrackerMaximumAmplification` to :ref:`xmlparser <xmlparser-objects>` "
164+
"objects to prevent use of disproportional amounts of dynamic memory from "
165+
"within an Expat parser. Patch by Bénédikt Tran."
166+
msgstr ""
167+
160168
msgid ""
161169
":gh:`139065`: Fix trailing space before a wrapped long word if the line "
162170
"length is exactly *width* in :mod:`textwrap`."
@@ -188,6 +196,11 @@ msgid ""
188196
"WriteTransport.write`."
189197
msgstr ""
190198

199+
msgid ""
200+
":gh:`135307`: :mod:`email`: Fix exception in ``set_content()`` when encoding "
201+
"text and max_line_length is set to ``0`` or ``None`` (unlimited)."
202+
msgstr ""
203+
191204
msgid ""
192205
":gh:`102431`: Clarify constraints for \"logical\" arguments in methods of :"
193206
"class:`decimal.Context`."

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp