@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.12\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2024-08-16 14:48 +0000\n "
14+ "POT-Creation-Date : 2024-08-30 14:55 +0000\n "
1515"PO-Revision-Date : 2024-05-11 00:32+0000\n "
1616"Last-Translator : Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n "
1717"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -44,22 +44,24 @@ msgid ""
4444"the tuple type. This function always succeeds."
4545msgstr ""
4646
47- msgid "Return a new tuple object of size *len*, or ``NULL`` on failure."
47+ msgid ""
48+ "Return a new tuple object of size *len*, or ``NULL`` with an exception set "
49+ "on failure."
4850msgstr ""
4951
5052msgid ""
51- "Return a new tuple object of size *n*, or ``NULL`` on failure. The tuple "
52- "values are initialized to the subsequent *n* C arguments pointing to Python "
53- "objects. ``PyTuple_Pack(2, a, b)`` is equivalent to "
53+ "Return a new tuple object of size *n*, or ``NULL`` with an exception set on "
54+ "failure. The tuple values are initialized to the subsequent *n* C arguments "
55+ "pointing to Python objects. ``PyTuple_Pack(2, a, b)`` is equivalent to "
5456"``Py_BuildValue(\" (OO)\" , a, b)``."
5557msgstr ""
5658
57- msgid "Take a pointer to a tuple object, and return the size of that tuple."
59+ msgid ""
60+ "Take a pointer to a tuple object, and return the size of that tuple. On "
61+ "error, return ``-1`` and with an exception set."
5862msgstr ""
5963
60- msgid ""
61- "Return the size of the tuple *p*, which must be non-``NULL`` and point to a "
62- "tuple; no error checking is performed."
64+ msgid "Like :c:func:`PyTuple_Size`, but without error checking."
6365msgstr ""
6466
6567msgid ""
@@ -80,8 +82,12 @@ msgstr ""
8082
8183msgid ""
8284"Return the slice of the tuple pointed to by *p* between *low* and *high*, or "
83- "``NULL`` on failure. This is the equivalent of the Python expression "
84- "``p[low:high]``. Indexing from the end of the tuple is not supported."
85+ "``NULL`` with an exception set on failure."
86+ msgstr ""
87+
88+ msgid ""
89+ "This is the equivalent of the Python expression ``p[low:high]``. Indexing "
90+ "from the end of the tuple is not supported."
8591msgstr ""
8692
8793msgid ""
@@ -136,12 +142,15 @@ msgid ""
136142"`PyStructSequence_New`."
137143msgstr ""
138144
145+ msgid "Return ``NULL`` with an exception set on failure."
146+ msgstr ""
147+
139148msgid "Initializes a struct sequence type *type* from *desc* in place."
140149msgstr ""
141150
142151msgid ""
143- "The same as `` PyStructSequence_InitType` `, but returns ``0`` on success and "
144- "``-1`` on failure."
152+ "Like :c:func:` PyStructSequence_InitType`, but returns ``0`` on success and "
153+ "``-1`` with an exception set on failure."
145154msgstr ""
146155
147156msgid "Contains the meta information of a struct sequence type to create."
0 commit comments