@@ -11,7 +11,7 @@ msgid ""
11
11
msgstr ""
12
12
"Project-Id-Version : Python 3.12\n "
13
13
"Report-Msgid-Bugs-To : \n "
14
- "POT-Creation-Date : 2025-02-14 14:53 +0000\n "
14
+ "POT-Creation-Date : 2025-02-21 14:51 +0000\n "
15
15
"PO-Revision-Date : 2024-05-11 00:32+0000\n "
16
16
"Last-Translator : Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n "
17
17
"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -217,13 +217,8 @@ msgid ""
217
217
msgstr ""
218
218
219
219
msgid ""
220
- "Return ``1`` or ``0`` depending on whether *ch* is a printable character. "
221
- "Nonprintable characters are those characters defined in the Unicode "
222
- "character database as \" Other\" or \" Separator\" , excepting the ASCII space "
223
- "(0x20) which is considered printable. (Note that printable characters in "
224
- "this context are those which should not be escaped when :func:`repr` is "
225
- "invoked on a string. It has no bearing on the handling of strings written "
226
- "to :data:`sys.stdout` or :data:`sys.stderr`.)"
220
+ "Return ``1`` or ``0`` depending on whether *ch* is a printable character, in "
221
+ "the sense of :meth:`str.isprintable`."
227
222
msgstr ""
228
223
229
224
msgid "These APIs can be used for fast direct character conversions:"
@@ -1362,12 +1357,48 @@ msgid ""
1362
1357
"list."
1363
1358
msgstr ""
1364
1359
1360
+ msgid "On error, return ``NULL`` with an exception set."
1361
+ msgstr ""
1362
+
1363
+ msgid "Equivalent to :py:meth:`str.split`."
1364
+ msgstr ""
1365
+
1366
+ msgid ""
1367
+ "Similar to :c:func:`PyUnicode_Split`, but splitting will be done beginning "
1368
+ "at the end of the string."
1369
+ msgstr ""
1370
+
1371
+ msgid "Equivalent to :py:meth:`str.rsplit`."
1372
+ msgstr ""
1373
+
1365
1374
msgid ""
1366
1375
"Split a Unicode string at line breaks, returning a list of Unicode strings. "
1367
1376
"CRLF is considered to be one line break. If *keepends* is ``0``, the Line "
1368
1377
"break characters are not included in the resulting strings."
1369
1378
msgstr ""
1370
1379
1380
+ msgid ""
1381
+ "Split a Unicode string at the first occurrence of *sep*, and return a 3-"
1382
+ "tuple containing the part before the separator, the separator itself, and "
1383
+ "the part after the separator. If the separator is not found, return a 3-"
1384
+ "tuple containing the string itself, followed by two empty strings."
1385
+ msgstr ""
1386
+
1387
+ msgid "*sep* must not be empty."
1388
+ msgstr ""
1389
+
1390
+ msgid "Equivalent to :py:meth:`str.partition`."
1391
+ msgstr ""
1392
+
1393
+ msgid ""
1394
+ "Similar to :c:func:`PyUnicode_Partition`, but split a Unicode string at the "
1395
+ "last occurrence of *sep*. If the separator is not found, return a 3-tuple "
1396
+ "containing two empty strings, followed by the string itself."
1397
+ msgstr ""
1398
+
1399
+ msgid "Equivalent to :py:meth:`str.rpartition`."
1400
+ msgstr ""
1401
+
1371
1402
msgid ""
1372
1403
"Join a sequence of strings using the given *separator* and return the "
1373
1404
"resulting Unicode string."
0 commit comments