@@ -12,7 +12,7 @@ msgid ""
1212msgstr ""
1313"Project-Id-Version : Python 3.11\n "
1414"Report-Msgid-Bugs-To : \n "
15- "POT-Creation-Date : 2023-02-24 14:15 +0000\n "
15+ "POT-Creation-Date : 2023-03-03 14:14 +0000\n "
1616"PO-Revision-Date : 2021-06-28 00:56+0000\n "
1717"
Last-Translator :
Maciej Olko <[email protected] >, 2022\n "
1818"Language-Team : Polish (https://www.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -45,11 +45,25 @@ msgstr ""
4545"wyników konwersji."
4646
4747msgid ""
48- "On platforms with hardware and system-level support for signed zeros, "
49- "functions involving branch cuts are continuous on *both* sides of the branch "
50- "cut: the sign of the zero distinguishes one side of the branch cut from the "
51- "other. On platforms that do not support signed zeros the continuity is as "
52- "specified below."
48+ "For functions involving branch cuts, we have the problem of deciding how to "
49+ "define those functions on the cut itself. Following Kahan's \" Branch cuts "
50+ "for complex elementary functions\" paper, as well as Annex G of C99 and "
51+ "later C standards, we use the sign of zero to distinguish one side of the "
52+ "branch cut from the other: for a branch cut along (a portion of) the real "
53+ "axis we look at the sign of the imaginary part, while for a branch cut along "
54+ "the imaginary axis we look at the sign of the real part."
55+ msgstr ""
56+
57+ msgid ""
58+ "For example, the :func:`cmath.sqrt` function has a branch cut along the "
59+ "negative real axis. An argument of ``complex(-2.0, -0.0)`` is treated as "
60+ "though it lies *below* the branch cut, and so gives a result on the negative "
61+ "imaginary axis::"
62+ msgstr ""
63+
64+ msgid ""
65+ "But an argument of ``complex(-2.0, 0.0)`` is treated as though it lies above "
66+ "the branch cut::"
5367msgstr ""
5468
5569msgid "Conversions to and from polar coordinates"
@@ -76,13 +90,11 @@ msgid ""
7690msgstr ""
7791
7892msgid ""
79- "Return the phase of *x* (also known as the *argument* of *x*), as a float. "
93+ "Return the phase of *x* (also known as the *argument* of *x*), as a float. "
8094"``phase(x)`` is equivalent to ``math.atan2(x.imag, x.real)``. The result "
8195"lies in the range [-\\ *π*, *π*], and the branch cut for this operation lies "
82- "along the negative real axis, continuous from above. On systems with "
83- "support for signed zeros (which includes most systems in current use), this "
84- "means that the sign of the result is the same as the sign of ``x.imag``, "
85- "even when ``x.imag`` is zero::"
96+ "along the negative real axis. The sign of the result is the same as the "
97+ "sign of ``x.imag``, even when ``x.imag`` is zero::"
8698msgstr ""
8799
88100msgid ""
@@ -113,7 +125,7 @@ msgstr ""
113125msgid ""
114126"Returns the logarithm of *x* to the given *base*. If the *base* is not "
115127"specified, returns the natural logarithm of *x*. There is one branch cut, "
116- "from 0 along the negative real axis to -∞, continuous from above ."
128+ "from 0 along the negative real axis to -∞."
117129msgstr ""
118130
119131msgid ""
@@ -130,8 +142,8 @@ msgstr ""
130142
131143msgid ""
132144"Return the arc cosine of *x*. There are two branch cuts: One extends right "
133- "from 1 along the real axis to ∞, continuous from below . The other extends "
134- "left from -1 along the real axis to -∞, continuous from above ."
145+ "from 1 along the real axis to ∞. The other extends left from -1 along the "
146+ "real axis to -∞."
135147msgstr ""
136148
137149msgid ""
@@ -140,9 +152,8 @@ msgstr ""
140152
141153msgid ""
142154"Return the arc tangent of *x*. There are two branch cuts: One extends from "
143- "``1j`` along the imaginary axis to ``∞j``, continuous from the right. The "
144- "other extends from ``-1j`` along the imaginary axis to ``-∞j``, continuous "
145- "from the left."
155+ "``1j`` along the imaginary axis to ``∞j``. The other extends from ``-1j`` "
156+ "along the imaginary axis to ``-∞j``."
146157msgstr ""
147158
148159msgid "Return the cosine of *x*."
@@ -159,21 +170,19 @@ msgstr ""
159170
160171msgid ""
161172"Return the inverse hyperbolic cosine of *x*. There is one branch cut, "
162- "extending left from 1 along the real axis to -∞, continuous from above ."
173+ "extending left from 1 along the real axis to -∞."
163174msgstr ""
164175
165176msgid ""
166177"Return the inverse hyperbolic sine of *x*. There are two branch cuts: One "
167- "extends from ``1j`` along the imaginary axis to ``∞j``, continuous from the "
168- "right. The other extends from ``-1j`` along the imaginary axis to ``-∞j``, "
169- "continuous from the left."
178+ "extends from ``1j`` along the imaginary axis to ``∞j``. The other extends "
179+ "from ``-1j`` along the imaginary axis to ``-∞j``."
170180msgstr ""
171181
172182msgid ""
173183"Return the inverse hyperbolic tangent of *x*. There are two branch cuts: One "
174- "extends from ``1`` along the real axis to ``∞``, continuous from below. The "
175- "other extends from ``-1`` along the real axis to ``-∞``, continuous from "
176- "above."
184+ "extends from ``1`` along the real axis to ``∞``. The other extends from "
185+ "``-1`` along the real axis to ``-∞``."
177186msgstr ""
178187
179188msgid "Return the hyperbolic cosine of *x*."
0 commit comments