@@ -12,7 +12,7 @@ msgid ""
1212msgstr ""
1313"Project-Id-Version : Python 3.14\n "
1414"Report-Msgid-Bugs-To : \n "
15- "POT-Creation-Date : 2025-11-25 14:15 +0000\n "
15+ "POT-Creation-Date : 2026-01-23 14:20 +0000\n "
1616"PO-Revision-Date : 2025-09-16 00:00+0000\n "
1717"Last-Translator : Gnevich <and.vareba81@gmail.com>, 2025\n "
1818"Language-Team : Russian (https://app.transifex.com/python-doc/teams/5390/ru/)\n "
@@ -200,132 +200,150 @@ msgstr ""
200200msgid "*flags* can be zero or more of the following values or-ed together:"
201201msgstr ""
202202
203- #: ../../c-api/conversion.rst:135
203+ #: ../../c-api/conversion.rst:137
204204msgid ""
205205"Always precede the returned string with a sign character, even if *val* is "
206206"non-negative."
207207msgstr ""
208208
209- #: ../../c-api/conversion.rst:140
209+ #: ../../c-api/conversion.rst:142
210210msgid "Ensure that the returned string will not look like an integer."
211211msgstr ""
212212
213- #: ../../c-api/conversion.rst:144
213+ #: ../../c-api/conversion.rst:146
214214msgid ""
215215"Apply \" alternate\" formatting rules. See the documentation for the "
216216":c:func:`PyOS_snprintf` ``'#'`` specifier for details."
217217msgstr ""
218218
219- #: ../../c-api/conversion.rst:150
219+ #: ../../c-api/conversion.rst:152
220220msgid "Negative zero is converted to positive zero."
221221msgstr ""
222222
223- #: ../../c-api/conversion.rst:154
223+ #: ../../c-api/conversion.rst:156
224224msgid ""
225225"If *ptype* is non-``NULL``, then the value it points to will be set to one "
226- "of ``Py_DTST_FINITE``, ``Py_DTST_INFINITE``, or ``Py_DTST_NAN``, signifying "
227- "that *val* is a finite number, an infinite number, or not a number, "
228- "respectively."
226+ "of the following constants depending on the type of *val*:"
229227msgstr ""
230228
231- #: ../../c-api/conversion.rst:158
229+ #: ../../c-api/conversion.rst:163
230+ msgid "*\\ *ptype*"
231+ msgstr ""
232+
233+ #: ../../c-api/conversion.rst:164
234+ msgid "type of *val*"
235+ msgstr ""
236+
237+ #: ../../c-api/conversion.rst:166
238+ msgid "finite number"
239+ msgstr ""
240+
241+ #: ../../c-api/conversion.rst:168
242+ msgid "infinite number"
243+ msgstr ""
244+
245+ #: ../../c-api/conversion.rst:170
246+ msgid "not a number"
247+ msgstr ""
248+
249+ #: ../../c-api/conversion.rst:172
232250msgid ""
233251"The return value is a pointer to *buffer* with the converted string or "
234252"``NULL`` if the conversion failed. The caller is responsible for freeing the"
235253" returned string by calling :c:func:`PyMem_Free`."
236254msgstr ""
237255
238- #: ../../c-api/conversion.rst:168
256+ #: ../../c-api/conversion.rst:182
239257msgid ""
240258"Case insensitive comparison of strings. These functions work almost "
241259"identically to :c:func:`!strcmp` and :c:func:`!strncmp` (respectively), "
242260"except that they ignore the case of ASCII characters."
243261msgstr ""
244262
245- #: ../../c-api/conversion.rst:172
263+ #: ../../c-api/conversion.rst:186
246264msgid ""
247265"Return ``0`` if the strings are equal, a negative value if *str1* sorts "
248266"lexicographically before *str2*, or a positive value if it sorts after."
249267msgstr ""
250268
251- #: ../../c-api/conversion.rst:175
269+ #: ../../c-api/conversion.rst:189
252270msgid ""
253271"In the *str1* or *str2* arguments, a NUL byte marks the end of the string. "
254272"For :c:func:`!PyOS_mystrnicmp`, the *size* argument gives the maximum size "
255273"of the string, as if NUL was present at the index given by *size*."
256274msgstr ""
257275
258- #: ../../c-api/conversion.rst:179
276+ #: ../../c-api/conversion.rst:193
259277msgid "These functions do not use the locale."
260278msgstr ""
261279
262- #: ../../c-api/conversion.rst:185
280+ #: ../../c-api/conversion.rst:199
263281msgid "Case insensitive comparison of strings."
264282msgstr ""
265283
266- #: ../../c-api/conversion.rst:187
284+ #: ../../c-api/conversion.rst:201
267285msgid ""
268286"On Windows, these are aliases of :c:func:`!stricmp` and :c:func:`!strnicmp`,"
269287" respectively."
270288msgstr ""
271289
272- #: ../../c-api/conversion.rst:190
290+ #: ../../c-api/conversion.rst:204
273291msgid ""
274292"On other platforms, they are aliases of :c:func:`PyOS_mystricmp` and "
275293":c:func:`PyOS_mystrnicmp`, respectively."
276294msgstr ""
277295
278- #: ../../c-api/conversion.rst:195
296+ #: ../../c-api/conversion.rst:209
279297msgid "Character classification and conversion"
280298msgstr ""
281299
282- #: ../../c-api/conversion.rst:197
300+ #: ../../c-api/conversion.rst:211
283301msgid ""
284302"The following macros provide locale-independent (unlike the C standard "
285303"library ``ctype.h``) character classification and conversion. The argument "
286304"must be a signed or unsigned :c:expr:`char`."
287305msgstr ""
288306
289- #: ../../c-api/conversion.rst:204
307+ #: ../../c-api/conversion.rst:218
290308msgid "Return true if the character *c* is an alphanumeric character."
291309msgstr ""
292310
293- #: ../../c-api/conversion.rst:209
311+ #: ../../c-api/conversion.rst:223
294312msgid ""
295313"Return true if the character *c* is an alphabetic character (``a-z`` and "
296314"``A-Z``)."
297315msgstr ""
298316
299- #: ../../c-api/conversion.rst:214
317+ #: ../../c-api/conversion.rst:228
300318msgid "Return true if the character *c* is a decimal digit (``0-9``)."
301319msgstr ""
302320
303- #: ../../c-api/conversion.rst:219
321+ #: ../../c-api/conversion.rst:233
304322msgid ""
305323"Return true if the character *c* is a lowercase ASCII letter (``a-z``)."
306324msgstr ""
307325
308- #: ../../c-api/conversion.rst:224
326+ #: ../../c-api/conversion.rst:238
309327msgid ""
310328"Return true if the character *c* is an uppercase ASCII letter (``A-Z``)."
311329msgstr ""
312330
313- #: ../../c-api/conversion.rst:229
331+ #: ../../c-api/conversion.rst:243
314332msgid ""
315333"Return true if the character *c* is a whitespace character (space, tab, "
316334"carriage return, newline, vertical tab, or form feed)."
317335msgstr ""
318336
319- #: ../../c-api/conversion.rst:235
337+ #: ../../c-api/conversion.rst:249
320338msgid ""
321339"Return true if the character *c* is a hexadecimal digit (``0-9``, ``a-f``, "
322340"and ``A-F``)."
323341msgstr ""
324342
325- #: ../../c-api/conversion.rst:241
343+ #: ../../c-api/conversion.rst:255
326344msgid "Return the lowercase equivalent of the character *c*."
327345msgstr ""
328346
329- #: ../../c-api/conversion.rst:246
347+ #: ../../c-api/conversion.rst:260
330348msgid "Return the uppercase equivalent of the character *c*."
331349msgstr ""
0 commit comments