Skip to content

Commit 55920af

Browse files
author
github-actions
committed
Merge 3.13 into 3.12
1 parent 9b0e19c commit 55920af

File tree

11 files changed

+83
-74
lines changed

11 files changed

+83
-74
lines changed

c-api/structures.po

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,11 @@ msgid ""
7979
"Access to the members must be done by using the macros :c:macro:"
8080
"`Py_REFCNT`, :c:macro:`Py_TYPE`, and :c:macro:`Py_SIZE`."
8181
msgstr ""
82+
"Esta é uma extensão de :c:type:`PyObject` que adiciona o campo :c:member:"
83+
"`~PyVarObject.ob_size`. Isso é usado apenas para objetos que têm alguma "
84+
"noção de *comprimento*. Esse tipo não costuma aparecer na API Python/C. O "
85+
"acesso aos membros deve ser feito através das macros :c:macro:`Py_REFCNT`, :"
86+
"c:macro:`Py_TYPE`, e :c:macro:`Py_SIZE`."
8287

8388
#: ../../c-api/structures.rst:47
8489
msgid ""
@@ -239,7 +244,7 @@ msgstr ""
239244

240245
#: ../../c-api/structures.rst:233
241246
msgid "Name of the method."
242-
msgstr ""
247+
msgstr "Nome do método."
243248

244249
#: ../../c-api/structures.rst:237
245250
msgid "Pointer to the C implementation."
@@ -295,7 +300,7 @@ msgstr ""
295300

296301
#: ../../c-api/structures.rst:282
297302
msgid ":c:expr:`METH_VARARGS | METH_KEYWORDS`"
298-
msgstr ""
303+
msgstr ":c:expr:`METH_VARARGS | METH_KEYWORDS`"
299304

300305
#: ../../c-api/structures.rst:283
301306
msgid ""
@@ -321,7 +326,7 @@ msgstr ""
321326

322327
#: ../../c-api/structures.rst:307
323328
msgid ":c:expr:`METH_FASTCALL | METH_KEYWORDS`"
324-
msgstr ""
329+
msgstr ":c:expr:`METH_FASTCALL | METH_KEYWORDS`"
325330

326331
#: ../../c-api/structures.rst:308
327332
msgid ""
@@ -343,7 +348,7 @@ msgstr ""
343348

344349
#: ../../c-api/structures.rst:329
345350
msgid ":c:expr:`METH_METHOD | METH_FASTCALL | METH_KEYWORDS`"
346-
msgstr ""
351+
msgstr ":c:expr:`METH_METHOD | METH_FASTCALL | METH_KEYWORDS`"
347352

348353
#: ../../c-api/structures.rst:330
349354
msgid ""
@@ -448,7 +453,7 @@ msgstr ""
448453

449454
#: ../../c-api/structures.rst:418
450455
msgid ":attr:`function.__module__`"
451-
msgstr ""
456+
msgstr ":attr:`function.__module__`"
452457

453458
#: ../../c-api/structures.rst:420
454459
msgid ""
@@ -458,11 +463,11 @@ msgstr ""
458463

459464
#: ../../c-api/structures.rst:429
460465
msgid "Equivalent to ``PyCMethod_New(ml, self, module, NULL)``."
461-
msgstr ""
466+
msgstr "Equivalente a ``PyCMethod_New(ml, self, module, NULL)``."
462467

463468
#: ../../c-api/structures.rst:434
464469
msgid "Equivalent to ``PyCMethod_New(ml, self, NULL, NULL)``."
465-
msgstr ""
470+
msgstr "Equivalente a ``PyCMethod_New(ml, self, NULL, NULL)``."
466471

467472
#: ../../c-api/structures.rst:438
468473
msgid "Accessing attributes of extension types"
@@ -654,11 +659,11 @@ msgstr ""
654659

655660
#: ../../c-api/structures.rst:604
656661
msgid "C type"
657-
msgstr "Tipo C"
662+
msgstr "Tipo em C"
658663

659664
#: ../../c-api/structures.rst:604
660665
msgid "Python type"
661-
msgstr "Python type"
666+
msgstr "Tipo em Python"
662667

663668
#: ../../c-api/structures.rst:606
664669
msgid ":c:expr:`char`"

howto/descriptor.po

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ msgstr ""
2828

2929
#: ../../howto/descriptor.rst:5
3030
msgid "Descriptor Guide"
31-
msgstr ""
31+
msgstr "Guia de descritores"
3232

3333
#: ../../howto/descriptor.rst:0
3434
msgid "Author"
@@ -296,7 +296,7 @@ msgstr "A nova classe agora registra acesso a *name* e *age*:"
296296

297297
#: ../../howto/descriptor.rst:284
298298
msgid "The two *Person* instances contain only the private names:"
299-
msgstr ""
299+
msgstr "As duas instâncias *Person* contêm apenas os nomes privados:"
300300

301301
#: ../../howto/descriptor.rst:295
302302
msgid "Closing thoughts"
@@ -354,7 +354,7 @@ msgstr ""
354354

355355
#: ../../howto/descriptor.rst:326
356356
msgid "Complete Practical Example"
357-
msgstr ""
357+
msgstr "Exemplo prático completo"
358358

359359
#: ../../howto/descriptor.rst:328
360360
msgid ""
@@ -416,7 +416,7 @@ msgstr ""
416416

417417
#: ../../howto/descriptor.rst:437
418418
msgid "Practical application"
419-
msgstr ""
419+
msgstr "Aplicação prática"
420420

421421
#: ../../howto/descriptor.rst:439
422422
msgid "Here's how the data validators can be used in a real class:"
@@ -454,7 +454,7 @@ msgstr ""
454454

455455
#: ../../howto/descriptor.rst:498
456456
msgid "Definition and introduction"
457-
msgstr ""
457+
msgstr "Definição e introdução"
458458

459459
#: ../../howto/descriptor.rst:500
460460
msgid ""
@@ -487,19 +487,19 @@ msgstr ""
487487

488488
#: ../../howto/descriptor.rst:522
489489
msgid "Descriptor protocol"
490-
msgstr ""
490+
msgstr "Protocolo Descriptor"
491491

492492
#: ../../howto/descriptor.rst:524
493493
msgid "``descr.__get__(self, obj, type=None)``"
494-
msgstr ""
494+
msgstr "``descr.__get__(self, obj, type=None)``"
495495

496496
#: ../../howto/descriptor.rst:526
497497
msgid "``descr.__set__(self, obj, value)``"
498-
msgstr ""
498+
msgstr "``descr.__set__(self, obj, value)``"
499499

500500
#: ../../howto/descriptor.rst:528
501501
msgid "``descr.__delete__(self, obj)``"
502-
msgstr ""
502+
msgstr "``descr.__delete__(self, obj)``"
503503

504504
#: ../../howto/descriptor.rst:530
505505
msgid ""
@@ -715,6 +715,8 @@ msgid ""
715715
"The implementation details are in :c:func:`!type_new` and :c:func:`!"
716716
"set_names` in :source:`Objects/typeobject.c`."
717717
msgstr ""
718+
"Os detalhes de implementações estão em :c:func:`!type_new` e :c:func:`!"
719+
"set_names` em :source:`Objects/typeobject.c`."
718720

719721
#: ../../howto/descriptor.rst:842
720722
msgid ""
@@ -725,7 +727,7 @@ msgstr ""
725727

726728
#: ../../howto/descriptor.rst:848
727729
msgid "ORM example"
728-
msgstr ""
730+
msgstr "Exemplo de ORM"
729731

730732
#: ../../howto/descriptor.rst:850
731733
msgid ""
@@ -817,7 +819,7 @@ msgstr ""
817819

818820
#: ../../howto/descriptor.rst:1158
819821
msgid "Functions and methods"
820-
msgstr ""
822+
msgstr "Funções e métodos"
821823

822824
#: ../../howto/descriptor.rst:1160
823825
msgid ""
@@ -890,7 +892,7 @@ msgstr ""
890892

891893
#: ../../howto/descriptor.rst:1250
892894
msgid "Kinds of methods"
893-
msgstr ""
895+
msgstr "Tipos de métodos"
894896

895897
#: ../../howto/descriptor.rst:1252
896898
msgid ""
@@ -948,11 +950,11 @@ msgstr "f(type(obj), \\*args)"
948950

949951
#: ../../howto/descriptor.rst:1270
950952
msgid "f(cls, \\*args)"
951-
msgstr ""
953+
msgstr "f(cls, \\*args)"
952954

953955
#: ../../howto/descriptor.rst:1275
954956
msgid "Static methods"
955-
msgstr ""
957+
msgstr "Métodos estáticos"
956958

957959
#: ../../howto/descriptor.rst:1277
958960
msgid ""
@@ -1004,7 +1006,7 @@ msgstr ""
10041006

10051007
#: ../../howto/descriptor.rst:1401
10061008
msgid "Class methods"
1007-
msgstr ""
1009+
msgstr "Métodos de classe"
10081010

10091011
#: ../../howto/descriptor.rst:1403
10101012
msgid ""

library/ctypes.po

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ msgstr ""
2828

2929
#: ../../library/ctypes.rst:2
3030
msgid ":mod:`!ctypes` --- A foreign function library for Python"
31-
msgstr ""
31+
msgstr ":mod:`!ctypes` --- Uma biblioteca de funções externas para Python"
3232

3333
#: ../../library/ctypes.rst:9
3434
msgid "**Source code:** :source:`Lib/ctypes`"
35-
msgstr ""
35+
msgstr "**Código-fonte:** :source:`Lib/ctypes`"
3636

3737
#: ../../library/ctypes.rst:13
3838
msgid ""
@@ -55,6 +55,10 @@ msgid ""
5555
"they actually work. Since some code samples behave differently under Linux, "
5656
"Windows, or macOS, they contain doctest directives in comments."
5757
msgstr ""
58+
"Nota: Os exemplos de código neste tutorial usam :mod:`doctest` para garantir "
59+
"que eles realmente funcionem. Como algumas amostras de código se comportam "
60+
"de maneira diferente no Linux, Windows ou macOS, elas contêm diretrizes de "
61+
"doctest nos comentários."
5862

5963
#: ../../library/ctypes.rst:27
6064
msgid ""
@@ -223,7 +227,7 @@ msgstr ""
223227

224228
#: ../../library/ctypes.rst:212 ../../library/ctypes.rst:2198
225229
msgid "Fundamental data types"
226-
msgstr ""
230+
msgstr "Tipos de dados fundamentais"
227231

228232
#: ../../library/ctypes.rst:214
229233
msgid ":mod:`ctypes` defines a number of primitive C compatible data types:"
@@ -235,11 +239,11 @@ msgstr "Tipo ctypes"
235239

236240
#: ../../library/ctypes.rst:217
237241
msgid "C type"
238-
msgstr "Tipo C"
242+
msgstr "Tipo em C"
239243

240244
#: ../../library/ctypes.rst:217
241245
msgid "Python type"
242-
msgstr "Python type"
246+
msgstr "Tipo em Python"
243247

244248
#: ../../library/ctypes.rst:219
245249
msgid ":class:`c_bool`"
@@ -353,15 +357,15 @@ msgstr ":class:`c_longlong`"
353357

354358
#: ../../library/ctypes.rst:241
355359
msgid ":c:expr:`__int64` or :c:expr:`long long`"
356-
msgstr ""
360+
msgstr ":c:expr:`__int64` ou :c:expr:`long long`"
357361

358362
#: ../../library/ctypes.rst:243
359363
msgid ":class:`c_ulonglong`"
360364
msgstr ":class:`c_ulonglong`"
361365

362366
#: ../../library/ctypes.rst:243
363367
msgid ":c:expr:`unsigned __int64` or :c:expr:`unsigned long long`"
364-
msgstr ""
368+
msgstr ":c:expr:`unsigned __int64` ou :c:expr:`unsigned long long`"
365369

366370
#: ../../library/ctypes.rst:246
367371
msgid ":class:`c_size_t`"
@@ -377,7 +381,7 @@ msgstr ":class:`c_ssize_t`"
377381

378382
#: ../../library/ctypes.rst:248
379383
msgid ":c:type:`ssize_t` or :c:expr:`Py_ssize_t`"
380-
msgstr ""
384+
msgstr ":c:type:`ssize_t` ou :c:expr:`Py_ssize_t`"
381385

382386
#: ../../library/ctypes.rst:251
383387
msgid ":class:`c_time_t`"
@@ -422,19 +426,19 @@ msgstr ":class:`c_char_p`"
422426

423427
#: ../../library/ctypes.rst:259
424428
msgid ":c:expr:`char *` (NUL terminated)"
425-
msgstr ""
429+
msgstr ":c:expr:`char *` (finalizado com NUL)"
426430

427431
#: ../../library/ctypes.rst:259
428432
msgid "bytes object or ``None``"
429-
msgstr "bytes object ou ``None``"
433+
msgstr "objeto bytes ou ``None``"
430434

431435
#: ../../library/ctypes.rst:261
432436
msgid ":class:`c_wchar_p`"
433437
msgstr ":class:`c_wchar_p`"
434438

435439
#: ../../library/ctypes.rst:261
436440
msgid ":c:expr:`wchar_t *` (NUL terminated)"
437-
msgstr ""
441+
msgstr ":c:expr:`wchar_t *` (finalizado com NUL)"
438442

439443
#: ../../library/ctypes.rst:261
440444
msgid "string or ``None``"

library/logging.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ msgstr ""
552552

553553
#: ../../library/logging.rst:346
554554
msgid "The *stack_info* parameter was added."
555-
msgstr ""
555+
msgstr "O parâmetro *stack_info* foi adicionado."
556556

557557
#: ../../library/logging.rst:349
558558
msgid "The *exc_info* parameter can now accept exception instances."

library/os.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8198,7 +8198,7 @@ msgid ""
81988198
"If this bit is set, then random bytes are drawn from the ``/dev/"
81998199
"random`` pool instead of the ``/dev/urandom`` pool."
82008200
msgstr ""
8201-
"Se este bit é definido os bytes aleatórios são pegos a partir de ``/dev/"
8201+
"Se este bit é definido os bytes aleatórios são sorteados a partir de ``/dev/"
82028202
"random`` ao invés de ``/dev/urandom``."
82038203

82048204
#: ../../library/os.rst:363 ../../library/os.rst:529 ../../library/os.rst:731

library/sqlite3.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1940,7 +1940,7 @@ msgstr ""
19401940

19411941
#: ../../library/sqlite3.rst:1908 ../../library/sqlite3.rst:1925
19421942
msgid "Python type"
1943-
msgstr "Python type"
1943+
msgstr "Tipo em Python"
19441944

19451945
#: ../../library/sqlite3.rst:1908 ../../library/sqlite3.rst:1925
19461946
msgid "SQLite type"

library/struct.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ msgstr "Tipo em C"
368368

369369
#: ../../library/struct.rst:220
370370
msgid "Python type"
371-
msgstr "Python type"
371+
msgstr "Tipo em Python"
372372

373373
#: ../../library/struct.rst:220
374374
msgid "Standard size"

library/symtable.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ msgstr ""
2727

2828
#: ../../library/symtable.rst:2
2929
msgid ":mod:`!symtable` --- Access to the compiler's symbol tables"
30-
msgstr ""
30+
msgstr ":mod:`!symtable` --- Acesso a tabela de símbolos do compilador"
3131

3232
#: ../../library/symtable.rst:7
3333
msgid "**Source code:** :source:`Lib/symtable.py`"

library/xmlrpc.client.po

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ msgstr ""
2929

3030
#: ../../library/xmlrpc.client.rst:2
3131
msgid ":mod:`!xmlrpc.client` --- XML-RPC client access"
32-
msgstr ""
32+
msgstr ":mod:`!xmlrpc.client` --- Cliente XML-RPC"
3333

3434
#: ../../library/xmlrpc.client.rst:10
3535
msgid "**Source code:** :source:`Lib/xmlrpc/client.py`"
@@ -197,7 +197,7 @@ msgstr "Tipo XML-RPC"
197197

198198
#: ../../library/xmlrpc.client.rst:95
199199
msgid "Python type"
200-
msgstr "Python type"
200+
msgstr "Tipo em Python"
201201

202202
#: ../../library/xmlrpc.client.rst:97
203203
msgid "``boolean``"
@@ -592,7 +592,7 @@ msgstr ""
592592

593593
#: ../../library/xmlrpc.client.rst:418
594594
msgid "ProtocolError Objects"
595-
msgstr "Objeto ProtocolError"
595+
msgstr "Objetos ProtocolError"
596596

597597
#: ../../library/xmlrpc.client.rst:422
598598
msgid ""
@@ -699,7 +699,7 @@ msgstr ""
699699

700700
#: ../../library/xmlrpc.client.rst:600
701701
msgid "See :ref:`simplexmlrpcserver-example`."
702-
msgstr ""
702+
msgstr "Veja :ref:`simplexmlrpcserver-example`."
703703

704704
#: ../../library/xmlrpc.client.rst:604
705705
msgid "Footnotes"

0 commit comments

Comments
 (0)