Skip to content

Commit 23b914b

Browse files
pomerge from 3.10 branch into 2.7
1 parent 62a5b05 commit 23b914b

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

extending/extending.po

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@ msgid ""
4242
"aspects of the Python run-time system. The Python API is incorporated in a "
4343
"C source file by including the header ``\"Python.h\"``."
4444
msgstr ""
45+
"Para dar suporte a extensões, a API do Python API (Application Programmers "
46+
"Interface) define um conjunto de funções, macros e variáveis que fornecem "
47+
"acesso à maior parte dos aspectos do sistema de tempo de execução do "
48+
"Python. A API do Python pode ser incorporada em um arquivo fonte em C com a "
49+
"inclusão do cabeçalho ``\"Python.h\"``. "
4550

4651
#: ../../extending/extending.rst:20
4752
msgid ""
@@ -84,6 +89,10 @@ msgid ""
8489
"`spammodule.c`; if the module name is very long, like ``spammify``, the "
8590
"module name can be just :file:`spammify.c`.)"
8691
msgstr ""
92+
"Comece criando um arquivo chamado :file:`spammodule.c`. (Historicamente, se "
93+
"um módulo for chamado ``spam``, o arquivo C contendo sua implementação é "
94+
"chamado :file:`spammodule.c`; se o nome do módulo for muito longo, como "
95+
"``spammify``, o nome do arquivo pode ser só :file:`spammify.c`.)"
8796

8897
#: ../../extending/extending.rst:55
8998
msgid "The first line of our file can be::"
@@ -94,6 +103,8 @@ msgid ""
94103
"which pulls in the Python API (you can add a comment describing the purpose "
95104
"of the module and a copyright notice if you like)."
96105
msgstr ""
106+
"o que carrega a API do Python (você pode adicionar um comentário descrevendo "
107+
"o propósito do módulo e uma nota de copyright, se desejar)."
97108

98109
#: ../../extending/extending.rst:64
99110
msgid ""

0 commit comments

Comments
 (0)