Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit7bac57a

Browse files
author
github-actions
committed
Merge 3.10 into 3.9
1 parentde84021 commit7bac57a

File tree

4 files changed

+107
-101
lines changed

4 files changed

+107
-101
lines changed

‎c-api/init.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -912,8 +912,8 @@ msgid ""
912912
"Most extension code manipulating the :term:`GIL` has the following simple "
913913
"structure::"
914914
msgstr""
915-
"A maioria dos códigos de extensão que manipulam o :term:`GIL` têm a "
916-
"seguinteestrutura::"
915+
"A maioria dos códigos de extensão que manipulam o :term:`GIL`tem a seguinte "
916+
"estrutura::"
917917

918918
#:../../c-api/init.rst:689
919919
msgid"This is so common that a pair of macros exists to simplify it::"

‎library/cmath.po

Lines changed: 38 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ msgstr ""
1616
"POT-Creation-Date:2021-01-01 05:02+0000\n"
1717
"PO-Revision-Date:2017-02-16 23:02+0000\n"
1818
"Last-Translator:i17obot <i17obot@rougeth.com>, 2021\n"
19-
"Language-Team:Portuguese (Brazil) (https://www.transifex.com/python-doc/teams/5390/pt_BR/)\n"
19+
"Language-Team:Portuguese (Brazil) (https://www.transifex.com/python-doc/"
20+
"teams/5390/pt_BR/)\n"
2021
"Language:pt_BR\n"
2122
"MIME-Version:1.0\n"
2223
"Content-Type:text/plain; charset=UTF-8\n"
@@ -25,7 +26,7 @@ msgstr ""
2526

2627
#:../../library/cmath.rst:2
2728
msgid":mod:`cmath` --- Mathematical functions for complex numbers"
28-
msgstr""
29+
msgstr":mod:`cmath` --- Funções matemáticas para números complexos"
2930

3031
#:../../library/cmath.rst:9
3132
msgid""
@@ -41,9 +42,9 @@ msgstr ""
4142
#:../../library/cmath.rst:18
4243
msgid""
4344
"On platforms with hardware and system-level support for signed zeros, "
44-
"functions involving branch cuts are continuous on *both* sides of the branch"
45-
"cut: the sign of the zero distinguishes one side of the branch cut from the"
46-
"other. On platforms that do not support signed zeros the continuity is as "
45+
"functions involving branch cuts are continuous on *both* sides of the branch"
46+
"cut: the sign of the zero distinguishes one side of the branch cut from the"
47+
"other. On platforms that do not support signed zeros the continuity is as "
4748
"specified below."
4849
msgstr""
4950

@@ -54,15 +55,15 @@ msgstr ""
5455
#:../../library/cmath.rst:28
5556
msgid""
5657
"A Python complex number ``z`` is stored internally using *rectangular* or "
57-
"*Cartesian* coordinates. It is completely determined by its *real part* "
58-
"``z.real`` and its *imaginary part* ``z.imag``. In other words::"
58+
"*Cartesian* coordinates. It is completely determined by its *real part*``z."
59+
"real`` and its *imaginary part* ``z.imag``. In other words::"
5960
msgstr""
6061

6162
#:../../library/cmath.rst:35
6263
msgid""
6364
"*Polar coordinates* give an alternative way to represent a complex number. "
64-
"In polar coordinates, a complex number *z* is defined by the modulus *r* and"
65-
"the phase angle *phi*. The modulus *r* is the distance from *z* to the "
65+
"In polar coordinates, a complex number *z* is defined by the modulus *r* and"
66+
"the phase angle *phi*. The modulus *r* is the distance from *z* to the "
6667
"origin, while the phase *phi* is the counterclockwise angle, measured in "
6768
"radians, from the positive x-axis to the line segment that joins the origin "
6869
"to *z*."
@@ -78,8 +79,8 @@ msgstr ""
7879
msgid""
7980
"Return the phase of *x* (also known as the *argument* of *x*), as a float. "
8081
"``phase(x)`` is equivalent to ``math.atan2(x.imag, x.real)``. The result "
81-
"lies in the range [-\\ *π*, *π*], and the branch cut for this operation lies"
82-
"along the negative real axis, continuous from above. On systems with "
82+
"lies in the range [-\\ *π*, *π*], and the branch cut for this operation lies"
83+
"along the negative real axis, continuous from above. On systems with "
8384
"support for signed zeros (which includes most systems in current use), this "
8485
"means that the sign of the result is the same as the sign of ``x.imag``, "
8586
"even when ``x.imag`` is zero::"
@@ -88,14 +89,14 @@ msgstr ""
8889
#:../../library/cmath.rst:64
8990
msgid""
9091
"The modulus (absolute value) of a complex number *x* can be computed using "
91-
"the built-in :func:`abs` function. There is no separate :mod:`cmath` module"
92-
"function for this operation."
92+
"the built-in :func:`abs` function. There is no separate :mod:`cmath` module"
93+
"function for this operation."
9394
msgstr""
9495

9596
#:../../library/cmath.rst:71
9697
msgid""
97-
"Return the representation of *x* in polar coordinates. Returns a pair ``(r,"
98-
"phi)`` where *r* is the modulus of *x* and phi is the phase of *x*. "
98+
"Return the representation of *x* in polar coordinates. Returns a pair ``(r,"
99+
"phi)`` where *r* is the modulus of *x* and phi is the phase of *x*. "
99100
"``polar(x)`` is equivalent to ``(abs(x), phase(x))``."
100101
msgstr""
101102

@@ -124,8 +125,8 @@ msgstr ""
124125

125126
#:../../library/cmath.rst:101
126127
msgid""
127-
"Return the base-10 logarithm of *x*. This has the same branch cut as "
128-
":func:`log`."
128+
"Return the base-10 logarithm of *x*. This has the same branch cut as:func:"
129+
"`log`."
129130
msgstr""
130131

131132
#:../../library/cmath.rst:107
@@ -189,9 +190,9 @@ msgstr ""
189190

190191
#:../../library/cmath.rst:167
191192
msgid""
192-
"Return the inverse hyperbolic tangent of *x*. There are two branch cuts: One"
193-
"extends from ``1`` along the real axis to ``∞``, continuous from below. The"
194-
"other extends from ``-1`` along the real axis to ``-∞``, continuous from "
193+
"Return the inverse hyperbolic tangent of *x*. There are two branch cuts: One"
194+
"extends from ``1`` along the real axis to ``∞``, continuous from below. The"
195+
"other extends from ``-1`` along the real axis to ``-∞``, continuous from "
195196
"above."
196197
msgstr""
197198

@@ -234,8 +235,8 @@ msgid ""
234235
"Return ``True`` if the values *a* and *b* are close to each other and "
235236
"``False`` otherwise."
236237
msgstr""
237-
"Retorna ``True`` se os valores *a* e *b* estiverem próximos e ``False`` caso"
238-
"contrário."
238+
"Retorna ``True`` se os valores *a* e *b* estiverem próximos e ``False`` caso"
239+
"contrário."
239240

240241
#:../../library/cmath.rst:216
241242
msgid""
@@ -264,8 +265,8 @@ msgid ""
264265
"*abs_tol* is the minimum absolute tolerance -- useful for comparisons near "
265266
"zero. *abs_tol* must be at least zero."
266267
msgstr""
267-
"*abs_tol* é a tolerância absoluta mínima -- útil para comparações próximas a"
268-
"zero. *abs_tol* deve ser pelo menos zero."
268+
"*abs_tol* é a tolerância absoluta mínima -- útil para comparações próximas a"
269+
"zero. *abs_tol* deve ser pelo menos zero."
269270

270271
#:../../library/cmath.rst:228
271272
msgid""
@@ -284,8 +285,8 @@ msgid ""
284285
msgstr""
285286
"Os valores especiais do IEEE 754 de ``NaN``, ``inf`` e ``-inf`` serão "
286287
"tratados de acordo com as regras do IEEE. Especificamente, ``NaN`` não é "
287-
"considerado próximo a qualquer outro valor, incluindo ``NaN``. ``inf`` e "
288-
"``-inf`` são considerados apenas próximos a si mesmos."
288+
"considerado próximo a qualquer outro valor, incluindo ``NaN``. ``inf`` e``-"
289+
"inf`` são considerados apenas próximos a si mesmos."
289290

290291
#:../../library/cmath.rst:240
291292
msgid":pep:`485` -- A function for testing approximate equality"
@@ -332,13 +333,13 @@ msgstr ""
332333
#:../../library/cmath.rst:296
333334
msgid""
334335
"Note that the selection of functions is similar, but not identical, to that "
335-
"in module :mod:`math`. The reason for having two modules is that some users"
336-
"aren't interested in complex numbers, and perhaps don't even know what they"
337-
"are. They would rather have ``math.sqrt(-1)`` raise an exception than "
338-
"return a complex number. Also note that the functions defined in "
339-
":mod:`cmath` always return a complex number, even if the answer can be "
340-
"expressedas a real number (in which case the complex number has an "
341-
"imaginary part ofzero)."
336+
"in module :mod:`math`. The reason for having two modules is that some users"
337+
"aren't interested in complex numbers, and perhaps don't even know what they"
338+
"are. They would rather have ``math.sqrt(-1)`` raise an exception than "
339+
"return a complex number. Also note that the functions defined in:mod:"
340+
"`cmath` always return a complex number, even if the answer can be expressed "
341+
"as a real number (in which case the complex number has an imaginary part of "
342+
"zero)."
342343
msgstr""
343344

344345
#:../../library/cmath.rst:304
@@ -348,13 +349,13 @@ msgid ""
348349
"It is assumed that if you need to compute with complex functions, you will "
349350
"understand about branch cuts. Consult almost any (not too elementary) book "
350351
"on complex variables for enlightenment. For information of the proper "
351-
"choice of branch cuts for numerical purposes, a good reference should be the"
352-
"following:"
352+
"choice of branch cuts for numerical purposes, a good reference should be the"
353+
"following:"
353354
msgstr""
354355

355356
#:../../library/cmath.rst:314
356357
msgid""
357358
"Kahan, W: Branch cuts for complex elementary functions; or, Much ado about "
358-
"nothing's sign bit. In Iserles, A., and Powell, M. (eds.), The state of the"
359-
"art in numerical analysis. Clarendon Press (1987) pp165--211."
359+
"nothing's sign bit. In Iserles, A., and Powell, M. (eds.), The state of the"
360+
"art in numerical analysis. Clarendon Press (1987) pp165--211."
360361
msgstr""

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp