Skip to content

Commit ff8dafe

Browse files
[po] auto sync
1 parent c115139 commit ff8dafe

7 files changed

Lines changed: 174 additions & 161 deletions

File tree

.stat.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"translation": "0.00%", "updated_at": "2025-10-11T15:57:15Z"}
1+
{"translation": "0.00%", "updated_at": "2025-10-13T15:57:18Z"}

c-api/typeobj.mo

0 Bytes
Binary file not shown.

c-api/typeobj.po

Lines changed: 2 additions & 2 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-05-30 14:58+0000\n"
14+
"POT-Creation-Date: 2025-10-13 15:08+0000\n"
1515
"PO-Revision-Date: 2025-09-15 01:03+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Russian (https://app.transifex.com/python-doc/teams/5390/ru/)\n"
@@ -2607,7 +2607,7 @@ msgstr ""
26072607
#: ../../c-api/typeobj.rst:1535
26082608
msgid ""
26092609
"If the :c:macro:`Py_TPFLAGS_MANAGED_DICT` bit is set in the "
2610-
":c:member:`~PyTypeObject.tp_flags` field, the traverse function must call "
2610+
":c:member:`~PyTypeObject.tp_flags` field, the clear function must call "
26112611
":c:func:`PyObject_ClearManagedDict` like this::"
26122612
msgstr ""
26132613

library/pprint.mo

0 Bytes
Binary file not shown.

library/pprint.po

Lines changed: 45 additions & 49 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-01-03 14:16+0000\n"
14+
"POT-Creation-Date: 2025-10-13 15:08+0000\n"
1515
"PO-Revision-Date: 2025-09-15 01:04+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Russian (https://app.transifex.com/python-doc/teams/5390/ru/)\n"
@@ -47,22 +47,18 @@ msgid ""
4747
msgstr ""
4848

4949
#: ../../library/pprint.rst:25
50-
msgid "Dictionaries are sorted by key before the display is computed."
51-
msgstr ""
52-
53-
#: ../../library/pprint.rst:27
5450
msgid "Added support for pretty-printing :class:`types.SimpleNamespace`."
5551
msgstr ""
5652

57-
#: ../../library/pprint.rst:30
53+
#: ../../library/pprint.rst:28
5854
msgid "Added support for pretty-printing :class:`dataclasses.dataclass`."
5955
msgstr ""
6056

61-
#: ../../library/pprint.rst:36
57+
#: ../../library/pprint.rst:34
6258
msgid "Functions"
6359
msgstr ""
6460

65-
#: ../../library/pprint.rst:41
61+
#: ../../library/pprint.rst:39
6662
msgid ""
6763
"Prints the formatted representation of *object*, followed by a newline. This"
6864
" function may be used in the interactive interpreter instead of the "
@@ -74,86 +70,86 @@ msgstr ""
7470
msgid "Parameters"
7571
msgstr ""
7672

77-
#: ../../library/pprint.rst:46
73+
#: ../../library/pprint.rst:44
7874
msgid "The object to be printed."
7975
msgstr ""
8076

81-
#: ../../library/pprint.rst:49
77+
#: ../../library/pprint.rst:47
8278
msgid ""
8379
"A file-like object to which the output will be written by calling its "
8480
":meth:`!write` method. If ``None`` (the default), :data:`sys.stdout` is "
8581
"used."
8682
msgstr ""
8783

88-
#: ../../library/pprint.rst:55
84+
#: ../../library/pprint.rst:53
8985
msgid "The amount of indentation added for each nesting level."
9086
msgstr ""
9187

92-
#: ../../library/pprint.rst:58
88+
#: ../../library/pprint.rst:56
9389
msgid ""
9490
"The desired maximum number of characters per line in the output. If a "
9591
"structure cannot be formatted within the width constraint, a best effort "
9692
"will be made."
9793
msgstr ""
9894

99-
#: ../../library/pprint.rst:63
95+
#: ../../library/pprint.rst:61
10096
msgid ""
10197
"The number of nesting levels which may be printed. If the data structure "
10298
"being printed is too deep, the next contained level is replaced by ``...``. "
10399
"If ``None`` (the default), there is no constraint on the depth of the "
104100
"objects being formatted."
105101
msgstr ""
106102

107-
#: ../../library/pprint.rst:71
103+
#: ../../library/pprint.rst:69
108104
msgid ""
109105
"Control the way long :term:`sequences <sequence>` are formatted. If "
110106
"``False`` (the default), each item of a sequence will be formatted on a "
111107
"separate line, otherwise as many items as will fit within the *width* will "
112108
"be formatted on each output line."
113109
msgstr ""
114110

115-
#: ../../library/pprint.rst:78
111+
#: ../../library/pprint.rst:76
116112
msgid ""
117113
"If ``True``, dictionaries will be formatted with their keys sorted, "
118114
"otherwise they will be displayed in insertion order (the default)."
119115
msgstr ""
120116

121-
#: ../../library/pprint.rst:83
117+
#: ../../library/pprint.rst:81
122118
msgid ""
123119
"If ``True``, integers will be formatted with the ``_`` character for a "
124120
"thousands separator, otherwise underscores are not displayed (the default)."
125121
msgstr ""
126122

127-
#: ../../library/pprint.rst:105
123+
#: ../../library/pprint.rst:103
128124
msgid ""
129125
"Alias for :func:`~pprint.pp` with *sort_dicts* set to ``True`` by default, "
130126
"which would automatically sort the dictionaries' keys, you might want to use"
131127
" :func:`~pprint.pp` instead where it is ``False`` by default."
132128
msgstr ""
133129

134-
#: ../../library/pprint.rst:113
130+
#: ../../library/pprint.rst:111
135131
msgid ""
136132
"Return the formatted representation of *object* as a string. *indent*, "
137133
"*width*, *depth*, *compact*, *sort_dicts* and *underscore_numbers* are "
138134
"passed to the :class:`PrettyPrinter` constructor as formatting parameters "
139135
"and their meanings are as described in the documentation above."
140136
msgstr ""
141137

142-
#: ../../library/pprint.rst:123
138+
#: ../../library/pprint.rst:121
143139
msgid ""
144140
"Determine if the formatted representation of *object* is \"readable\", or "
145141
"can be used to reconstruct the value using :func:`eval`. This always "
146142
"returns ``False`` for recursive objects."
147143
msgstr ""
148144

149-
#: ../../library/pprint.rst:133
145+
#: ../../library/pprint.rst:131
150146
msgid ""
151147
"Determine if *object* requires a recursive representation. This function is"
152148
" subject to the same limitations as noted in :func:`saferepr` below and may "
153149
"raise an :exc:`RecursionError` if it fails to detect a recursive object."
154150
msgstr ""
155151

156-
#: ../../library/pprint.rst:140
152+
#: ../../library/pprint.rst:138
157153
msgid ""
158154
"Return a string representation of *object*, protected against recursion in "
159155
"some common data structures, namely instances of :class:`dict`, "
@@ -163,61 +159,61 @@ msgid ""
163159
"with id=number>``. The representation is not otherwise formatted."
164160
msgstr ""
165161

166-
#: ../../library/pprint.rst:153
162+
#: ../../library/pprint.rst:151
167163
msgid "PrettyPrinter Objects"
168164
msgstr ""
169165

170-
#: ../../library/pprint.rst:160
166+
#: ../../library/pprint.rst:158
171167
msgid "Construct a :class:`PrettyPrinter` instance."
172168
msgstr ""
173169

174-
#: ../../library/pprint.rst:162
170+
#: ../../library/pprint.rst:160
175171
msgid ""
176172
"Arguments have the same meaning as for :func:`~pprint.pp`. Note that they "
177173
"are in a different order, and that *sort_dicts* defaults to ``True``."
178174
msgstr ""
179175

180-
#: ../../library/pprint.rst:189
176+
#: ../../library/pprint.rst:187
181177
msgid "Added the *compact* parameter."
182178
msgstr ""
183179

184-
#: ../../library/pprint.rst:192
180+
#: ../../library/pprint.rst:190
185181
msgid "Added the *sort_dicts* parameter."
186182
msgstr ""
187183

188-
#: ../../library/pprint.rst:195
184+
#: ../../library/pprint.rst:193
189185
msgid "Added the *underscore_numbers* parameter."
190186
msgstr ""
191187

192-
#: ../../library/pprint.rst:198
188+
#: ../../library/pprint.rst:196
193189
msgid "No longer attempts to write to :data:`!sys.stdout` if it is ``None``."
194190
msgstr ""
195191

196-
#: ../../library/pprint.rst:202
192+
#: ../../library/pprint.rst:200
197193
msgid ":class:`PrettyPrinter` instances have the following methods:"
198194
msgstr ""
199195

200-
#: ../../library/pprint.rst:207
196+
#: ../../library/pprint.rst:205
201197
msgid ""
202198
"Return the formatted representation of *object*. This takes into account "
203199
"the options passed to the :class:`PrettyPrinter` constructor."
204200
msgstr ""
205201

206-
#: ../../library/pprint.rst:213
202+
#: ../../library/pprint.rst:211
207203
msgid ""
208204
"Print the formatted representation of *object* on the configured stream, "
209205
"followed by a newline."
210206
msgstr ""
211207

212-
#: ../../library/pprint.rst:216
208+
#: ../../library/pprint.rst:214
213209
msgid ""
214210
"The following methods provide the implementations for the corresponding "
215211
"functions of the same names. Using these methods on an instance is slightly"
216212
" more efficient since new :class:`PrettyPrinter` objects don't need to be "
217213
"created."
218214
msgstr ""
219215

220-
#: ../../library/pprint.rst:226
216+
#: ../../library/pprint.rst:224
221217
msgid ""
222218
"Determine if the formatted representation of the object is \"readable,\" or "
223219
"can be used to reconstruct the value using :func:`eval`. Note that this "
@@ -226,18 +222,18 @@ msgid ""
226222
"returns ``False``."
227223
msgstr ""
228224

229-
#: ../../library/pprint.rst:235
225+
#: ../../library/pprint.rst:233
230226
msgid "Determine if the object requires a recursive representation."
231227
msgstr ""
232228

233-
#: ../../library/pprint.rst:237
229+
#: ../../library/pprint.rst:235
234230
msgid ""
235231
"This method is provided as a hook to allow subclasses to modify the way "
236232
"objects are converted to strings. The default implementation uses the "
237233
"internals of the :func:`saferepr` implementation."
238234
msgstr ""
239235

240-
#: ../../library/pprint.rst:244
236+
#: ../../library/pprint.rst:242
241237
msgid ""
242238
"Returns three values: the formatted version of *object* as a string, a flag "
243239
"indicating whether the result is readable, and a flag indicating whether "
@@ -255,18 +251,18 @@ msgid ""
255251
"of the current call."
256252
msgstr ""
257253

258-
#: ../../library/pprint.rst:262
254+
#: ../../library/pprint.rst:260
259255
msgid "Example"
260256
msgstr ""
261257

262-
#: ../../library/pprint.rst:264
258+
#: ../../library/pprint.rst:262
263259
msgid ""
264260
"To demonstrate several uses of the :func:`~pprint.pp` function and its "
265261
"parameters, let's fetch information about a project from `PyPI "
266262
"<https://pypi.org>`_::"
267263
msgstr ""
268264

269-
#: ../../library/pprint.rst:267
265+
#: ../../library/pprint.rst:265
270266
msgid ""
271267
">>> import json\n"
272268
">>> import pprint\n"
@@ -275,11 +271,11 @@ msgid ""
275271
"... project_info = json.load(resp)['info']"
276272
msgstr ""
277273

278-
#: ../../library/pprint.rst:273
274+
#: ../../library/pprint.rst:271
279275
msgid "In its basic form, :func:`~pprint.pp` shows the whole object::"
280276
msgstr ""
281277

282-
#: ../../library/pprint.rst:275
278+
#: ../../library/pprint.rst:273
283279
msgid ""
284280
">>> pprint.pp(project_info)\n"
285281
"{'author': 'The Python Packaging Authority',\n"
@@ -336,13 +332,13 @@ msgid ""
336332
" 'version': '1.2.0'}"
337333
msgstr ""
338334

339-
#: ../../library/pprint.rst:329
335+
#: ../../library/pprint.rst:327
340336
msgid ""
341337
"The result can be limited to a certain *depth* (ellipsis is used for deeper "
342338
"contents)::"
343339
msgstr ""
344340

345-
#: ../../library/pprint.rst:332
341+
#: ../../library/pprint.rst:330
346342
msgid ""
347343
">>> pprint.pp(project_info, depth=1)\n"
348344
"{'author': 'The Python Packaging Authority',\n"
@@ -388,13 +384,13 @@ msgid ""
388384
" 'version': '1.2.0'}"
389385
msgstr ""
390386

391-
#: ../../library/pprint.rst:375
387+
#: ../../library/pprint.rst:373
392388
msgid ""
393389
"Additionally, maximum character *width* can be suggested. If a long object "
394390
"cannot be split, the specified width will be exceeded::"
395391
msgstr ""
396392

397-
#: ../../library/pprint.rst:378
393+
#: ../../library/pprint.rst:376
398394
msgid ""
399395
">>> pprint.pp(project_info, depth=1, width=60)\n"
400396
"{'author': 'The Python Packaging Authority',\n"
@@ -443,18 +439,18 @@ msgid ""
443439
" 'version': '1.2.0'}"
444440
msgstr ""
445441

446-
#: ../../library/pprint.rst:121 ../../library/pprint.rst:224
442+
#: ../../library/pprint.rst:119 ../../library/pprint.rst:222
447443
msgid "built-in function"
448444
msgstr ""
449445

450-
#: ../../library/pprint.rst:121 ../../library/pprint.rst:224
446+
#: ../../library/pprint.rst:119 ../../library/pprint.rst:222
451447
msgid "eval"
452448
msgstr ""
453449

454-
#: ../../library/pprint.rst:155
450+
#: ../../library/pprint.rst:153
455451
msgid "..."
456452
msgstr ""
457453

458-
#: ../../library/pprint.rst:155
454+
#: ../../library/pprint.rst:153
459455
msgid "placeholder"
460456
msgstr ""

library/signal.mo

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)