@@ -10,7 +10,8 @@ msgstr ""
1010"POT-Creation-Date : 2020-02-09 18:46+0900\n "
1111"PO-Revision-Date : 2018-01-20 20:59+0000\n "
1212"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 "
1415"Language : pt_BR\n "
1516"MIME-Version : 1.0\n "
1617"Content-Type : text/plain; charset=UTF-8\n "
@@ -19,25 +20,25 @@ msgstr ""
1920
2021#: ../../library/cmath.rst:2
2122msgid ":mod:`cmath` --- Mathematical functions for complex numbers"
22- msgstr ""
23+ msgstr ":mod:`cmath` --- Funções matemáticas para números complexos "
2324
2425#: ../../library/cmath.rst:8
2526msgid ""
2627"This module is always available. It provides access to mathematical "
2728"functions for complex numbers. The functions in this module accept "
2829"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 "
3132"complex or floating-point number, respectively, and the function is then "
3233"applied to the result of the conversion."
3334msgstr ""
3435
3536#: ../../library/cmath.rst:18
3637msgid ""
3738"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 "
4142"specified below."
4243msgstr ""
4344
@@ -48,15 +49,15 @@ msgstr ""
4849#: ../../library/cmath.rst:28
4950msgid ""
5051"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::"
5354msgstr ""
5455
5556#: ../../library/cmath.rst:35
5657msgid ""
5758"*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 "
6061"origin, while the phase *phi* is the counterclockwise angle, measured in "
6162"radians, from the positive x-axis to the line segment that joins the origin "
6263"to *z*."
@@ -75,21 +76,21 @@ msgid ""
7576"lies in the range [-π, π], and the branch cut for this operation lies along "
7677"the negative real axis, continuous from above. On systems with support for "
7778"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::"
8081msgstr ""
8182
8283#: ../../library/cmath.rst:66
8384msgid ""
8485"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."
8788msgstr ""
8889
8990#: ../../library/cmath.rst:73
9091msgid ""
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*. "
9394"``polar(x)`` is equivalent to ``(abs(x), phase(x))``."
9495msgstr ""
9596
@@ -120,8 +121,8 @@ msgstr ""
120121
121122#: ../../library/cmath.rst:109
122123msgid ""
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`."
125126msgstr ""
126127
127128#: ../../library/cmath.rst:115
@@ -193,9 +194,9 @@ msgstr ""
193194
194195#: ../../library/cmath.rst:181
195196msgid ""
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 "
199200"above."
200201msgstr ""
201202
@@ -245,13 +246,13 @@ msgstr ""
245246#: ../../library/cmath.rst:238
246247msgid ""
247248"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)."
255256msgstr ""
256257
257258#: ../../library/cmath.rst:246
@@ -261,13 +262,13 @@ msgid ""
261262"It is assumed that if you need to compute with complex functions, you will "
262263"understand about branch cuts. Consult almost any (not too elementary) book "
263264"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:"
266267msgstr ""
267268
268269#: ../../library/cmath.rst:256
269270msgid ""
270271"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."
273274msgstr ""
0 commit comments