Skip to content

Commit e608405

Browse files
authored
Merge branch 'python:3.12' into 3.12
2 parents 240fb08 + 1a9223e commit e608405

File tree

12 files changed

+1240
-1220
lines changed

12 files changed

+1240
-1220
lines changed

c-api/bool.po

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
7-
# Rafael Fontenelle <rffontenelle@gmail.com>, 2021
87
# Julio Biason, 2023
8+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2023
99
#
1010
#, fuzzy
1111
msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.12\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2023-11-05 17:24+0000\n"
15+
"POT-Creation-Date: 2023-11-10 14:13+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
17-
"Last-Translator: Julio Biason, 2023\n"
17+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
1818
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
1919
"teams/5390/pt_BR/)\n"
2020
"MIME-Version: 1.0\n"
@@ -35,10 +35,10 @@ msgid ""
3535
"normal creation and deletion functions don't apply to booleans. The "
3636
"following macros are available, however."
3737
msgstr ""
38-
"Os booleanos em Python são implementados como um subclasse de inteiros. Há "
39-
"apenas dois booleanos, :c:data:`Py_False` e :c:data:`Py_True`. Assim sendo, "
40-
"as funções de criação e a exclusão normais não se aplicam aos booleanos. As "
41-
"seguintes macros estão disponíveis, no entanto."
38+
"Os booleanos em Python são implementados como um subclasse de inteiros. Há "
39+
"apenas dois booleanos, :c:data:`Py_False` e :c:data:`Py_True`. Assim sendo, "
40+
"as funções de criação e a exclusão normais não se aplicam aos booleanos. No "
41+
"entanto, as seguintes macros estão disponíveis."
4242

4343
#: ../../c-api/bool.rst:16
4444
msgid ""
@@ -61,8 +61,8 @@ msgid ""
6161
"The Python ``False`` object. This object has no methods and is `immortal "
6262
"<https://peps.python.org/pep-0683/>`_."
6363
msgstr ""
64-
"O Python ``False`` objeto . Este objeto não tem métodos e é `imortal "
65-
"<https://peps.python.org/pep-0683/>`_."
64+
"O objeto Python ``False``. Este objeto não tem métodos e é `imortal <https://"
65+
"peps.python.org/pep-0683/>`_."
6666

6767
#: ../../c-api/bool.rst:31
6868
msgid ":c:data:`Py_False` is immortal."
@@ -73,8 +73,8 @@ msgid ""
7373
"The Python ``True`` object. This object has no methods and is `immortal "
7474
"<https://peps.python.org/pep-0683/>`_."
7575
msgstr ""
76-
"O Python ``True`` objeto . Este objeto não tem métodos e é `imortal "
77-
"<https://peps.python.org/pep-0683/>`_."
76+
"O objeto Python ``True``. Este objeto não tem métodos e é `imortal <https://"
77+
"peps.python.org/pep-0683/>`_."
7878

7979
#: ../../c-api/bool.rst:40
8080
msgid ":c:data:`Py_True` is immortal."

c-api/buffer.po

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@
1515
# Ana Carolina Dias, 2022
1616
# Marco Rougeth <marco@rougeth.com>, 2023
1717
# Julio Biason, 2023
18-
# Rafael Fontenelle <rffontenelle@gmail.com>, 2023
1918
# Victor D. G., 2023
19+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2023
2020
#
2121
#, fuzzy
2222
msgid ""
2323
msgstr ""
2424
"Project-Id-Version: Python 3.12\n"
2525
"Report-Msgid-Bugs-To: \n"
26-
"POT-Creation-Date: 2023-11-05 17:24+0000\n"
26+
"POT-Creation-Date: 2023-11-10 14:13+0000\n"
2727
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
28-
"Last-Translator: Victor D. G., 2023\n"
28+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
2929
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
3030
"teams/5390/pt_BR/)\n"
3131
"MIME-Version: 1.0\n"
@@ -119,7 +119,7 @@ msgstr ""
119119
"uma série de bytes por meio da interface de buffer pode ser gravado em um "
120120
"arquivo. Enquanto o :meth:`!write` precisa apenas de acesso de somente "
121121
"leitura ao conteúdo interno do objeto passado, outros métodos, como :meth:"
122-
"`~io.BufferedIOBase.readinto` precisam de acesso de somente escrita ao "
122+
"`~io.BufferedIOBase.readinto`, precisam de acesso de somente escrita ao "
123123
"conteúdo interno. A interface de buffer permite que o objetos possam "
124124
"permitir ou rejeitar a exportação para buffers de leitura e escrita ou "
125125
"somente leitura."
@@ -129,20 +129,20 @@ msgid ""
129129
"There are two ways for a consumer of the buffer interface to acquire a "
130130
"buffer over a target object:"
131131
msgstr ""
132-
"Existem duas maneiras para um usuário da interface de buffer adquirir um "
132+
"Existem duas maneiras para um consumidor da interface de buffer adquirir um "
133133
"buffer em um objeto alvo:"
134134

135135
#: ../../c-api/buffer.rst:56
136136
msgid "call :c:func:`PyObject_GetBuffer` with the right parameters;"
137-
msgstr "chamada :c:func:`PyObject_GetBuffer` com os parâmetros certos;"
137+
msgstr "chamada de :c:func:`PyObject_GetBuffer` com os parâmetros certos;"
138138

139139
#: ../../c-api/buffer.rst:58
140140
msgid ""
141141
"call :c:func:`PyArg_ParseTuple` (or one of its siblings) with one of the "
142142
"``y*``, ``w*`` or ``s*`` :ref:`format codes <arg-parsing>`."
143143
msgstr ""
144-
"chamada :c:func:`PyArg_ParseTuple` (ou um dos seus irmãos) com um dos "
145-
"``y*``, ``w*`` ou ``s*`` :ref:`format codes <arg-parsing>`."
144+
"chamada de :c:func:`PyArg_ParseTuple` (ou um dos seus irmãos) com um dos :"
145+
"ref:`códigos de formatação <arg-parsing>` ``y*``, ``w*`` ou ``s*``."
146146

147147
#: ../../c-api/buffer.rst:61
148148
msgid ""
@@ -177,7 +177,7 @@ msgstr ""
177177
"matriz grande e constante em uma extensão C, pode ser um bloco bruto de "
178178
"memória para manipulação antes de passar para uma biblioteca do sistema "
179179
"operacional, ou pode ser usado para transmitir dados estruturados no formato "
180-
"nativo e formato de memória ."
180+
"nativo e formato de memória."
181181

182182
#: ../../c-api/buffer.rst:80
183183
msgid ""

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy