@@ -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-07-05 14:49 +0000\n "
14+ "POT-Creation-Date : 2024-07-19 14:50 +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 "
@@ -50,7 +50,10 @@ msgid ""
5050"The C structure which corresponds to the value portion of a Python complex "
5151"number object. Most of the functions for dealing with complex number "
5252"objects use structures of this type as input or output values, as "
53- "appropriate. It is defined as::"
53+ "appropriate."
54+ msgstr ""
55+
56+ msgid "The structure is defined as::"
5457msgstr ""
5558
5659msgid ""
@@ -125,15 +128,22 @@ msgstr ""
125128
126129msgid ""
127130"Create a new Python complex number object from a C :c:type:`Py_complex` "
128- "value."
131+ "value. Return ``NULL`` with an exception set on error. "
129132msgstr ""
130133
131- msgid "Return a new :c:type:`PyComplexObject` object from *real* and *imag*."
134+ msgid ""
135+ "Return a new :c:type:`PyComplexObject` object from *real* and *imag*. Return "
136+ "``NULL`` with an exception set on error."
132137msgstr ""
133138
134139msgid "Return the real part of *op* as a C :c:expr:`double`."
135140msgstr ""
136141
142+ msgid ""
143+ "Upon failure, this method returns ``-1.0`` with an exception set, so one "
144+ "should call :c:func:`PyErr_Occurred` to check for errors."
145+ msgstr ""
146+
137147msgid "Return the imaginary part of *op* as a C :c:expr:`double`."
138148msgstr ""
139149
@@ -145,8 +155,13 @@ msgid ""
145155"__complex__` method, this method will first be called to convert *op* to a "
146156"Python complex number object. If :meth:`!__complex__` is not defined then "
147157"it falls back to :meth:`~object.__float__`. If :meth:`!__float__` is not "
148- "defined then it falls back to :meth:`~object.__index__`. Upon failure, this "
149- "method returns ``-1.0`` as a real value."
158+ "defined then it falls back to :meth:`~object.__index__`."
159+ msgstr ""
160+
161+ msgid ""
162+ "Upon failure, this method returns :c:type:`Py_complex` with :c:member:"
163+ "`~Py_complex.real` set to ``-1.0`` and with an exception set, so one should "
164+ "call :c:func:`PyErr_Occurred` to check for errors."
150165msgstr ""
151166
152167msgid "Use :meth:`~object.__index__` if available."
0 commit comments