@@ -12,7 +12,7 @@ msgid ""
1212msgstr ""
1313"Project-Id-Version : Python 3.12\n "
1414"Report-Msgid-Bugs-To : \n "
15- "POT-Creation-Date : 2023-08-11 14:13+0000\n "
15+ "POT-Creation-Date : 2023-12-29 14:13+0000\n "
1616"PO-Revision-Date : 2021-06-28 00:56+0000\n "
1717"Last-Translator : Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n "
1818"Language-Team : Portuguese (Brazil) (https://app.transifex.com/python-doc/ "
@@ -49,18 +49,11 @@ msgid ""
4949"The module is called :mod:`bisect` because it uses a basic bisection "
5050"algorithm to do its work. Unlike other bisection tools that search for a "
5151"specific value, the functions in this module are designed to locate an "
52- "insertion point. Accordingly, the functions never call an :meth:`__eq__` "
53- "method to determine whether a value has been found. Instead, the functions "
54- "only call the :meth:`__lt__` method and will return an insertion point "
55- "between values in an array."
52+ "insertion point. Accordingly, the functions never call an :meth:`~object. "
53+ "__eq__` method to determine whether a value has been found. Instead, the "
54+ "functions only call the :meth:`~object. __lt__` method and will return an "
55+ "insertion point between values in an array."
5656msgstr ""
57- "O módulo é chamado de :mod:`bisect` porque usa um algoritmo básico de "
58- "bisseção para fazer seu trabalho. Ao contrário de outras ferramentas de "
59- "bisseção que buscam um valor específico, as funções neste módulo são "
60- "projetadas para localizar um ponto de inserção. Da mesma forma, as funções "
61- "nunca chamam um método :meth:`__eq__` para determinar se um valor foi "
62- "encontrado. Em vez disso, as funções apenas chamam o método :meth:`__lt__` e "
63- "retornarão um ponto de inserção entre valores em um vetor."
6457
6558#: ../../library/bisect.rst:29
6659msgid "The following functions are provided:"
@@ -147,12 +140,9 @@ msgstr "Insere *x* em *a* na ordem de classificação."
147140#: ../../library/bisect.rst:75
148141msgid ""
149142"This function first runs :py:func:`~bisect.bisect_left` to locate an "
150- "insertion point. Next, it runs the :meth:`insert` method on *a* to insert "
143+ "insertion point. Next, it runs the :meth:`! insert` method on *a* to insert "
151144"*x* at the appropriate position to maintain sort order."
152145msgstr ""
153- "Esta função primeiro executa :py:func:`~bisect.bisect_left` para localizar "
154- "um ponto de inserção. Em seguida, ele executa o método :meth:`insert` em *a* "
155- "para inserir *x* na posição apropriada para manter a ordem de classificação."
156146
157147#: ../../library/bisect.rst:79 ../../library/bisect.rst:99
158148msgid ""
@@ -182,12 +172,9 @@ msgstr ""
182172#: ../../library/bisect.rst:95
183173msgid ""
184174"This function first runs :py:func:`~bisect.bisect_right` to locate an "
185- "insertion point. Next, it runs the :meth:`insert` method on *a* to insert "
175+ "insertion point. Next, it runs the :meth:`! insert` method on *a* to insert "
186176"*x* at the appropriate position to maintain sort order."
187177msgstr ""
188- "Esta função primeiro executa :py:func:`~bisect.bisect_right` para localizar "
189- "um ponto de inserção. Em seguida, ele executa o método :meth:`insert` em *a* "
190- "para inserir *x* na posição apropriada para manter a ordem de classificação."
191178
192179#: ../../library/bisect.rst:110
193180msgid "Performance Notes"
0 commit comments