@@ -13,7 +13,7 @@ msgid ""
1313msgstr ""
1414"Project-Id-Version : Python 3.13\n "
1515"Report-Msgid-Bugs-To : \n "
16- "POT-Creation-Date : 2025-03-21 14:18+0000\n "
16+ "POT-Creation-Date : 2025-04-04 14:18+0000\n "
1717"PO-Revision-Date : 2021-06-28 00:56+0000\n "
1818"Last-Translator : Roustam Khamidoulline, 2024\n "
1919"Language-Team : Russian (https://app.transifex.com/python-doc/teams/5390/ru/)\n "
@@ -104,11 +104,11 @@ msgstr ""
104104
105105#: ../../library/cmath.rst:60
106106msgid ""
107- "Return the phase of *x * (also known as the *argument* of *x *), as a float. "
108- "``phase(x )`` is equivalent to ``math.atan2(x .imag, x .real)``. The result "
107+ "Return the phase of *z * (also known as the *argument* of *z *), as a float. "
108+ "``phase(z )`` is equivalent to ``math.atan2(z .imag, z .real)``. The result "
109109"lies in the range [-\\ *π*, *π*], and the branch cut for this operation lies"
110110" along the negative real axis. The sign of the result is the same as the "
111- "sign of ``x .imag``, even when ``x .imag`` is zero::"
111+ "sign of ``z .imag``, even when ``z .imag`` is zero::"
112112msgstr ""
113113
114114#: ../../library/cmath.rst:66
@@ -121,21 +121,21 @@ msgstr ""
121121
122122#: ../../library/cmath.rst:74
123123msgid ""
124- "The modulus (absolute value) of a complex number *x * can be computed using "
124+ "The modulus (absolute value) of a complex number *z * can be computed using "
125125"the built-in :func:`abs` function. There is no separate :mod:`cmath` module"
126126" function for this operation."
127127msgstr ""
128128
129129#: ../../library/cmath.rst:81
130130msgid ""
131- "Return the representation of *x * in polar coordinates. Returns a pair ``(r,"
132- " phi)`` where *r* is the modulus of *x * and phi is the phase of *x *. "
133- "``polar(x )`` is equivalent to ``(abs(x ), phase(x ))``."
131+ "Return the representation of *z * in polar coordinates. Returns a pair ``(r,"
132+ " phi)`` where *r* is the modulus of *z * and * phi* is the phase of *z *. "
133+ "``polar(z )`` is equivalent to ``(abs(z ), phase(z ))``."
134134msgstr ""
135135
136136#: ../../library/cmath.rst:89
137137msgid ""
138- "Return the complex number *x * with polar coordinates *r* and *phi*. "
138+ "Return the complex number *z * with polar coordinates *r* and *phi*. "
139139"Equivalent to ``complex(r * math.cos(phi), r * math.sin(phi))``."
140140msgstr ""
141141
@@ -145,26 +145,26 @@ msgstr ""
145145
146146#: ../../library/cmath.rst:98
147147msgid ""
148- "Return *e* raised to the power *x *, where *e* is the base of natural "
148+ "Return *e* raised to the power *z *, where *e* is the base of natural "
149149"logarithms."
150150msgstr ""
151151
152152#: ../../library/cmath.rst:104
153153msgid ""
154- "Returns the logarithm of *x * to the given *base*. If the *base* is not "
155- "specified, returns the natural logarithm of *x *. There is one branch cut, "
154+ "Return the logarithm of *z * to the given *base*. If the *base* is not "
155+ "specified, returns the natural logarithm of *z *. There is one branch cut, "
156156"from 0 along the negative real axis to -∞."
157157msgstr ""
158158
159159#: ../../library/cmath.rst:111
160160msgid ""
161- "Return the base-10 logarithm of *x *. This has the same branch cut as "
161+ "Return the base-10 logarithm of *z *. This has the same branch cut as "
162162":func:`log`."
163163msgstr ""
164164
165165#: ../../library/cmath.rst:117
166166msgid ""
167- "Return the square root of *x *. This has the same branch cut as :func:`log`."
167+ "Return the square root of *z *. This has the same branch cut as :func:`log`."
168168msgstr ""
169169
170170#: ../../library/cmath.rst:121
@@ -173,33 +173,33 @@ msgstr ""
173173
174174#: ../../library/cmath.rst:125
175175msgid ""
176- "Return the arc cosine of *x *. There are two branch cuts: One extends right "
176+ "Return the arc cosine of *z *. There are two branch cuts: One extends right "
177177"from 1 along the real axis to ∞. The other extends left from -1 along the "
178178"real axis to -∞."
179179msgstr ""
180180
181181#: ../../library/cmath.rst:132
182182msgid ""
183- "Return the arc sine of *x *. This has the same branch cuts as :func:`acos`."
183+ "Return the arc sine of *z *. This has the same branch cuts as :func:`acos`."
184184msgstr ""
185185
186186#: ../../library/cmath.rst:137
187187msgid ""
188- "Return the arc tangent of *x *. There are two branch cuts: One extends from "
188+ "Return the arc tangent of *z *. There are two branch cuts: One extends from "
189189"``1j`` along the imaginary axis to ``∞j``. The other extends from ``-1j`` "
190190"along the imaginary axis to ``-∞j``."
191191msgstr ""
192192
193193#: ../../library/cmath.rst:144
194- msgid "Return the cosine of *x *."
194+ msgid "Return the cosine of *z *."
195195msgstr ""
196196
197197#: ../../library/cmath.rst:149
198- msgid "Return the sine of *x *."
198+ msgid "Return the sine of *z *."
199199msgstr ""
200200
201201#: ../../library/cmath.rst:154
202- msgid "Return the tangent of *x *."
202+ msgid "Return the tangent of *z *."
203203msgstr ""
204204
205205#: ../../library/cmath.rst:158
@@ -208,34 +208,34 @@ msgstr ""
208208
209209#: ../../library/cmath.rst:162
210210msgid ""
211- "Return the inverse hyperbolic cosine of *x *. There is one branch cut, "
211+ "Return the inverse hyperbolic cosine of *z *. There is one branch cut, "
212212"extending left from 1 along the real axis to -∞."
213213msgstr ""
214214
215215#: ../../library/cmath.rst:168
216216msgid ""
217- "Return the inverse hyperbolic sine of *x *. There are two branch cuts: One "
217+ "Return the inverse hyperbolic sine of *z *. There are two branch cuts: One "
218218"extends from ``1j`` along the imaginary axis to ``∞j``. The other extends "
219219"from ``-1j`` along the imaginary axis to ``-∞j``."
220220msgstr ""
221221
222222#: ../../library/cmath.rst:175
223223msgid ""
224- "Return the inverse hyperbolic tangent of *x *. There are two branch cuts: One"
224+ "Return the inverse hyperbolic tangent of *z *. There are two branch cuts: One"
225225" extends from ``1`` along the real axis to ``∞``. The other extends from "
226226"``-1`` along the real axis to ``-∞``."
227227msgstr ""
228228
229229#: ../../library/cmath.rst:182
230- msgid "Return the hyperbolic cosine of *x *."
230+ msgid "Return the hyperbolic cosine of *z *."
231231msgstr ""
232232
233233#: ../../library/cmath.rst:187
234- msgid "Return the hyperbolic sine of *x *."
234+ msgid "Return the hyperbolic sine of *z *."
235235msgstr ""
236236
237237#: ../../library/cmath.rst:192
238- msgid "Return the hyperbolic tangent of *x *."
238+ msgid "Return the hyperbolic tangent of *z *."
239239msgstr ""
240240
241241#: ../../library/cmath.rst:196
@@ -244,19 +244,19 @@ msgstr ""
244244
245245#: ../../library/cmath.rst:200
246246msgid ""
247- "Return ``True`` if both the real and imaginary parts of *x * are finite, and "
247+ "Return ``True`` if both the real and imaginary parts of *z * are finite, and "
248248"``False`` otherwise."
249249msgstr ""
250250
251251#: ../../library/cmath.rst:208
252252msgid ""
253- "Return ``True`` if either the real or the imaginary part of *x * is an "
253+ "Return ``True`` if either the real or the imaginary part of *z * is an "
254254"infinity, and ``False`` otherwise."
255255msgstr ""
256256
257257#: ../../library/cmath.rst:214
258258msgid ""
259- "Return ``True`` if either the real or the imaginary part of *x * is a NaN, "
259+ "Return ``True`` if either the real or the imaginary part of *z * is a NaN, "
260260"and ``False`` otherwise."
261261msgstr ""
262262
0 commit comments