@@ -10,7 +10,8 @@ msgstr ""
10
10
"POT-Creation-Date :2020-02-09 18:46+0900\n "
11
11
"PO-Revision-Date :2018-01-20 20:59+0000\n "
12
12
"Last-Translator :tomo\n "
13
- "Language-Team :Portuguese (Brazil) (http://www.transifex.com/python-doc/python-27/language/pt_BR/)\n "
13
+ "Language-Team :Portuguese (Brazil) (http://www.transifex.com/python-doc/ "
14
+ "python-27/language/pt_BR/)\n "
14
15
"Language :pt_BR\n "
15
16
"MIME-Version :1.0\n "
16
17
"Content-Type :text/plain; charset=UTF-8\n "
@@ -19,25 +20,25 @@ msgstr ""
19
20
20
21
#: ../../library/cmath.rst:2
21
22
msgid ":mod:`cmath` --- Mathematical functions for complex numbers"
22
- msgstr ""
23
+ msgstr ":mod:`cmath` --- Funções matemáticas para números complexos "
23
24
24
25
#: ../../library/cmath.rst:8
25
26
msgid ""
26
27
"This module is always available. It provides access to mathematical "
27
28
"functions for complex numbers. The functions in this module accept "
28
29
"integers, floating-point numbers or complex numbers as arguments. They will "
29
- "also accept any Python object that has either a :meth:`__complex__` or a "
30
- ": meth:`__float__` method: these methods are used to convert the object to a "
30
+ "also accept any Python object that has either a :meth:`__complex__` or a: "
31
+ "meth:`__float__` method: these methods are used to convert the object to a "
31
32
"complex or floating-point number, respectively, and the function is then "
32
33
"applied to the result of the conversion."
33
34
msgstr ""
34
35
35
36
#: ../../library/cmath.rst:18
36
37
msgid ""
37
38
"On platforms with hardware and system-level support for signed zeros, "
38
- "functions involving branch cuts are continuous on *both* sides of the branch"
39
- " cut: the sign of the zero distinguishes one side of the branch cut from the"
40
- " other. On platforms that do not support signed zeros the continuity is as "
39
+ "functions involving branch cuts are continuous on *both* sides of the branch "
40
+ "cut: the sign of the zero distinguishes one side of the branch cut from the "
41
+ "other. On platforms that do not support signed zeros the continuity is as "
41
42
"specified below."
42
43
msgstr ""
43
44
@@ -48,15 +49,15 @@ msgstr ""
48
49
#: ../../library/cmath.rst:28
49
50
msgid ""
50
51
"A Python complex number ``z`` is stored internally using *rectangular* or "
51
- "*Cartesian* coordinates. It is completely determined by its *real part* "
52
- "``z. real`` and its *imaginary part* ``z.imag``. In other words::"
52
+ "*Cartesian* coordinates. It is completely determined by its *real part*``z. "
53
+ "real`` and its *imaginary part* ``z.imag``. In other words::"
53
54
msgstr ""
54
55
55
56
#: ../../library/cmath.rst:35
56
57
msgid ""
57
58
"*Polar coordinates* give an alternative way to represent a complex number. "
58
- "In polar coordinates, a complex number *z* is defined by the modulus *r* and"
59
- " the phase angle *phi*. The modulus *r* is the distance from *z* to the "
59
+ "In polar coordinates, a complex number *z* is defined by the modulus *r* and "
60
+ "the phase angle *phi*. The modulus *r* is the distance from *z* to the "
60
61
"origin, while the phase *phi* is the counterclockwise angle, measured in "
61
62
"radians, from the positive x-axis to the line segment that joins the origin "
62
63
"to *z*."
@@ -75,21 +76,21 @@ msgid ""
75
76
"lies in the range [-π, π], and the branch cut for this operation lies along "
76
77
"the negative real axis, continuous from above. On systems with support for "
77
78
"signed zeros (which includes most systems in current use), this means that "
78
- "the sign of the result is the same as the sign of ``x.imag``, even when "
79
- "``x. imag`` is zero::"
79
+ "the sign of the result is the same as the sign of ``x.imag``, even when``x. "
80
+ "imag`` is zero::"
80
81
msgstr ""
81
82
82
83
#: ../../library/cmath.rst:66
83
84
msgid ""
84
85
"The modulus (absolute value) of a complex number *x* can be computed using "
85
- "the built-in :func:`abs` function. There is no separate :mod:`cmath` module"
86
- " function for this operation."
86
+ "the built-in :func:`abs` function. There is no separate :mod:`cmath` module "
87
+ "function for this operation."
87
88
msgstr ""
88
89
89
90
#: ../../library/cmath.rst:73
90
91
msgid ""
91
- "Return the representation of *x* in polar coordinates. Returns a pair ``(r,"
92
- " phi)`` where *r* is the modulus of *x* and phi is the phase of *x*. "
92
+ "Return the representation of *x* in polar coordinates. Returns a pair ``(r, "
93
+ "phi)`` where *r* is the modulus of *x* and phi is the phase of *x*. "
93
94
"``polar(x)`` is equivalent to ``(abs(x), phase(x))``."
94
95
msgstr ""
95
96
@@ -120,8 +121,8 @@ msgstr ""
120
121
121
122
#: ../../library/cmath.rst:109
122
123
msgid ""
123
- "Return the base-10 logarithm of *x*. This has the same branch cut as "
124
- ":func: `log`."
124
+ "Return the base-10 logarithm of *x*. This has the same branch cut as:func: "
125
+ "`log`."
125
126
msgstr ""
126
127
127
128
#: ../../library/cmath.rst:115
@@ -193,9 +194,9 @@ msgstr ""
193
194
194
195
#: ../../library/cmath.rst:181
195
196
msgid ""
196
- "Return the inverse hyperbolic tangent of *x*. There are two branch cuts: One"
197
- " extends from ``1`` along the real axis to ``∞``, continuous from below. The"
198
- " other extends from ``-1`` along the real axis to ``-∞``, continuous from "
197
+ "Return the inverse hyperbolic tangent of *x*. There are two branch cuts: One "
198
+ "extends from ``1`` along the real axis to ``∞``, continuous from below. The "
199
+ "other extends from ``-1`` along the real axis to ``-∞``, continuous from "
199
200
"above."
200
201
msgstr ""
201
202
@@ -245,13 +246,13 @@ msgstr ""
245
246
#: ../../library/cmath.rst:238
246
247
msgid ""
247
248
"Note that the selection of functions is similar, but not identical, to that "
248
- "in module :mod:`math`. The reason for having two modules is that some users"
249
- " aren't interested in complex numbers, and perhaps don't even know what they"
250
- " are. They would rather have ``math.sqrt(-1)`` raise an exception than "
251
- "return a complex number. Also note that the functions defined in "
252
- ":mod: `cmath` always return a complex number, even if the answer can be "
253
- "expressed as a real number (in which case the complex number has an "
254
- "imaginary part of zero)."
249
+ "in module :mod:`math`. The reason for having two modules is that some users "
250
+ "aren't interested in complex numbers, and perhaps don't even know what they "
251
+ "are. They would rather have ``math.sqrt(-1)`` raise an exception than "
252
+ "return a complex number. Also note that the functions defined in:mod: "
253
+ "`cmath` always return a complex number, even if the answer can be expressed "
254
+ "as a real number (in which case the complex number has an imaginary part of "
255
+ "zero)."
255
256
msgstr ""
256
257
257
258
#: ../../library/cmath.rst:246
@@ -261,13 +262,13 @@ msgid ""
261
262
"It is assumed that if you need to compute with complex functions, you will "
262
263
"understand about branch cuts. Consult almost any (not too elementary) book "
263
264
"on complex variables for enlightenment. For information of the proper "
264
- "choice of branch cuts for numerical purposes, a good reference should be the"
265
- " following:"
265
+ "choice of branch cuts for numerical purposes, a good reference should be the "
266
+ "following:"
266
267
msgstr ""
267
268
268
269
#: ../../library/cmath.rst:256
269
270
msgid ""
270
271
"Kahan, W: Branch cuts for complex elementary functions; or, Much ado about "
271
- "nothing's sign bit. In Iserles, A., and Powell, M. (eds.), The state of the"
272
- " art in numerical analysis. Clarendon Press (1987) pp165--211."
272
+ "nothing's sign bit. In Iserles, A., and Powell, M. (eds.), The state of the "
273
+ "art in numerical analysis. Clarendon Press (1987) pp165--211."
273
274
msgstr ""