Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 359c10b

Browse files
author
github-actions
committed
Merge 3.11 into 3.7
1 parent b981be4 commit 359c10b

27 files changed

+177
-175
lines changed

c-api/gcsupport.po

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ msgstr "Suporte a Coleta de Lixo Cíclica"
3030
#: ../../c-api/gcsupport.rst:8
3131
msgid ""
3232
"Python's support for detecting and collecting garbage which involves "
33-
"circular references requires support from object types which are \"containers"
34-
"\" for other objects which may also be containers. Types which do not store "
35-
"references to other objects, or which only store references to atomic types "
36-
"(such as numbers or strings), do not need to provide any explicit support "
37-
"for garbage collection."
33+
"circular references requires support from object types which are "
34+
"\"containers\" for other objects which may also be containers. Types which "
35+
"do not store references to other objects, or which only store references to "
36+
"atomic types (such as numbers or strings), do not need to provide any "
37+
"explicit support for garbage collection."
3838
msgstr ""
3939

4040
#: ../../c-api/gcsupport.rst:15

c-api/unicode.po

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -199,9 +199,9 @@ msgstr ""
199199

200200
#: ../../c-api/unicode.rst:184
201201
msgid ""
202-
"Read a character from a Unicode object *o*, which must be in the \"canonical"
203-
"\" representation. This is less efficient than :c:func:`PyUnicode_READ` if "
204-
"you do multiple consecutive reads."
202+
"Read a character from a Unicode object *o*, which must be in the "
203+
"\"canonical\" representation. This is less efficient than :c:func:"
204+
"`PyUnicode_READ` if you do multiple consecutive reads."
205205
msgstr ""
206206

207207
#: ../../c-api/unicode.rst:193
@@ -641,9 +641,9 @@ msgstr "const void\\*"
641641

642642
#: ../../c-api/unicode.rst:496
643643
msgid ""
644-
"The hex representation of a C pointer. Mostly equivalent to ``printf(\"%p"
645-
"\")`` except that it is guaranteed to start with the literal ``0x`` "
646-
"regardless of what the platform's ``printf`` yields."
644+
"The hex representation of a C pointer. Mostly equivalent to "
645+
"``printf(\"%p\")`` except that it is guaranteed to start with the literal "
646+
"``0x`` regardless of what the platform's ``printf`` yields."
647647
msgstr ""
648648
"A representação hexadecimal de um ponteiro C. Principalmente equivalente a "
649649
"``printf(\"%p\")`` exceto que é garantido que comece com o literal ``0x`` "
@@ -732,8 +732,8 @@ msgstr ""
732732

733733
#: ../../c-api/unicode.rst:542
734734
msgid ""
735-
"Support width and precision formatter for ``\"%s\"``, ``\"%A\"``, ``\"%U"
736-
"\"``, ``\"%V\"``, ``\"%S\"``, ``\"%R\"`` added."
735+
"Support width and precision formatter for ``\"%s\"``, ``\"%A\"``, "
736+
"``\"%U\"``, ``\"%V\"``, ``\"%S\"``, ``\"%R\"`` added."
737737
msgstr ""
738738

739739
#: ../../c-api/unicode.rst:549
@@ -780,8 +780,8 @@ msgstr ""
780780

781781
#: ../../c-api/unicode.rst:595
782782
msgid ""
783-
"Fill a string with a character: write *fill_char* into ``unicode[start:start"
784-
"+length]``."
783+
"Fill a string with a character: write *fill_char* into ``unicode[start:"
784+
"start+length]``."
785785
msgstr ""
786786

787787
#: ../../c-api/unicode.rst:598
@@ -962,8 +962,8 @@ msgstr ""
962962
#: ../../c-api/unicode.rst:763
963963
msgid ""
964964
"Decode a string from UTF-8 on Android, or from the current locale encoding "
965-
"on other platforms. The supported error handlers are ``\"strict\"`` and ``"
966-
"\"surrogateescape\"`` (:pep:`383`). The decoder uses ``\"strict\"`` error "
965+
"on other platforms. The supported error handlers are ``\"strict\"`` and "
966+
"``\"surrogateescape\"`` (:pep:`383`). The decoder uses ``\"strict\"`` error "
967967
"handler if *errors* is ``NULL``. *str* must end with a null character but "
968968
"cannot contain embedded null characters."
969969
msgstr ""
@@ -1161,8 +1161,8 @@ msgstr ""
11611161
#: ../../c-api/unicode.rst:961
11621162
msgid ""
11631163
"Returns a buffer allocated by :c:func:`PyMem_Alloc` (use :c:func:"
1164-
"`PyMem_Free` to free it) on success. On error, returns ``NULL`` and *"
1165-
"\\*size* is undefined. Raises a :exc:`MemoryError` if memory allocation is "
1164+
"`PyMem_Free` to free it) on success. On error, returns ``NULL`` and "
1165+
"*\\*size* is undefined. Raises a :exc:`MemoryError` if memory allocation is "
11661166
"failed."
11671167
msgstr ""
11681168

@@ -1979,8 +1979,8 @@ msgstr ""
19791979
msgid ""
19801980
"Intern the argument *\\*string* in place. The argument must be the address "
19811981
"of a pointer variable pointing to a Python Unicode string object. If there "
1982-
"is an existing interned string that is the same as *\\*string*, it sets *"
1983-
"\\*string* to it (decrementing the reference count of the old string object "
1982+
"is an existing interned string that is the same as *\\*string*, it sets "
1983+
"*\\*string* to it (decrementing the reference count of the old string object "
19841984
"and incrementing the reference count of the interned string object), "
19851985
"otherwise it leaves *\\*string* alone and interns it (incrementing its "
19861986
"reference count). (Clarification: even though there is a lot of talk about "

distutils/builtdist.po

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -279,12 +279,12 @@ msgstr ""
279279
msgid ""
280280
"You don't have to use the :command:`bdist` command with the :option:`!--"
281281
"formats` option; you can also use the command that directly implements the "
282-
"format you're interested in. Some of these :command:`bdist` \"sub-commands"
283-
"\" actually generate several similar formats; for instance, the :command:"
284-
"`bdist_dumb` command generates all the \"dumb\" archive formats (``tar``, "
285-
"``gztar``, ``bztar``, ``xztar``, ``ztar``, and ``zip``), and :command:"
286-
"`bdist_rpm` generates both binary and source RPMs. The :command:`bdist` sub-"
287-
"commands, and the formats generated by each, are:"
282+
"format you're interested in. Some of these :command:`bdist` \"sub-"
283+
"commands\" actually generate several similar formats; for instance, the :"
284+
"command:`bdist_dumb` command generates all the \"dumb\" archive formats "
285+
"(``tar``, ``gztar``, ``bztar``, ``xztar``, ``ztar``, and ``zip``), and :"
286+
"command:`bdist_rpm` generates both binary and source RPMs. The :command:"
287+
"`bdist` sub-commands, and the formats generated by each, are:"
288288
msgstr ""
289289

290290
#: ../../distutils/builtdist.rst:136

library/codecs.po

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -398,9 +398,9 @@ msgstr "``'replace'``"
398398

399399
#: ../../library/codecs.rst:326
400400
msgid ""
401-
"Replace with a suitable replacement marker; Python will use the official ``U"
402-
"+FFFD`` REPLACEMENT CHARACTER for the built-in codecs on decoding, and '?' "
403-
"on encoding. Implemented in :func:`replace_errors`."
401+
"Replace with a suitable replacement marker; Python will use the official "
402+
"``U+FFFD`` REPLACEMENT CHARACTER for the built-in codecs on decoding, and "
403+
"'?' on encoding. Implemented in :func:`replace_errors`."
404404
msgstr ""
405405

406406
#: ../../library/codecs.rst:333
@@ -439,10 +439,10 @@ msgstr "``'surrogateescape'``"
439439

440440
#: ../../library/codecs.rst:345
441441
msgid ""
442-
"On decoding, replace byte with individual surrogate code ranging from ``U"
443-
"+DC80`` to ``U+DCFF``. This code will then be turned back into the same byte "
444-
"when the ``'surrogateescape'`` error handler is used when encoding the data. "
445-
"(See :pep:`383` for more.)"
442+
"On decoding, replace byte with individual surrogate code ranging from "
443+
"``U+DC80`` to ``U+DCFF``. This code will then be turned back into the same "
444+
"byte when the ``'surrogateescape'`` error handler is used when encoding the "
445+
"data. (See :pep:`383` for more.)"
446446
msgstr ""
447447

448448
#: ../../library/codecs.rst:354
@@ -1246,8 +1246,8 @@ msgid ""
12461246
"any random byte sequence. However that's not possible with UTF-8, as UTF-8 "
12471247
"byte sequences have a structure that doesn't allow arbitrary byte sequences. "
12481248
"To increase the reliability with which a UTF-8 encoding can be detected, "
1249-
"Microsoft invented a variant of UTF-8 (that Python 2.5 calls ``\"utf-8-sig"
1250-
"\"``) for its Notepad program: Before any of the Unicode characters is "
1249+
"Microsoft invented a variant of UTF-8 (that Python 2.5 calls ``\"utf-8-"
1250+
"sig\"``) for its Notepad program: Before any of the Unicode characters is "
12511251
"written to the file, a UTF-8 encoded BOM (which looks like this as a byte "
12521252
"sequence: ``0xef``, ``0xbb``, ``0xbf``) is written. As it's rather "
12531253
"improbable that any charmap encoded file starts with these byte values "

library/collections.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -621,8 +621,8 @@ msgid ""
621621
"safe, memory efficient appends and pops from either side of the deque with "
622622
"approximately the same O(1) performance in either direction."
623623
msgstr ""
624-
"Deques são uma generalização de pilhas e filas (o nome é pronunciado \"deck"
625-
"\" e é abreviação de \"fila dupla\"). O Deques oferece suporte para "
624+
"Deques são uma generalização de pilhas e filas (o nome é pronunciado "
625+
"\"deck\" e é abreviação de \"fila dupla\"). O Deques oferece suporte para "
626626
"acréscimos e saliências com segurança de thread e com eficiência de memória "
627627
"de ambos os lados do deque com aproximadamente o mesmo desempenho O (1) em "
628628
"qualquer direção."

library/email.headerregistry.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,8 @@ msgstr ""
187187
msgid ""
188188
":rfc:`5322` specifies a very specific format for dates within email headers. "
189189
"The ``DateHeader`` parser recognizes that date format, as well as "
190-
"recognizing a number of variant forms that are sometimes found \"in the wild"
191-
"\"."
190+
"recognizing a number of variant forms that are sometimes found \"in the "
191+
"wild\"."
192192
msgstr ""
193193

194194
#: ../../library/email.headerregistry.rst:146

library/enum.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -683,8 +683,8 @@ msgstr ""
683683
#: ../../library/enum.rst:738
684684
msgid ""
685685
"%-style formatting: `%s` and `%r` call the :class:`Enum` class's :meth:"
686-
"`__str__` and :meth:`__repr__` respectively; other codes (such as `%i` or `"
687-
"%h` for IntEnum) treat the enum member as its mixed-in type."
686+
"`__str__` and :meth:`__repr__` respectively; other codes (such as `%i` or "
687+
"`%h` for IntEnum) treat the enum member as its mixed-in type."
688688
msgstr ""
689689

690690
#: ../../library/enum.rst:741

library/heapq.po

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -324,13 +324,13 @@ msgstr ""
324324
#: ../../library/heapq.rst:275
325325
msgid ""
326326
"A nice feature of this sort is that you can efficiently insert new items "
327-
"while the sort is going on, provided that the inserted items are not \"better"
328-
"\" than the last 0'th element you extracted. This is especially useful in "
329-
"simulation contexts, where the tree holds all incoming events, and the \"win"
330-
"\" condition means the smallest scheduled time. When an event schedules "
331-
"other events for execution, they are scheduled into the future, so they can "
332-
"easily go into the heap. So, a heap is a good structure for implementing "
333-
"schedulers (this is what I used for my MIDI sequencer :-)."
327+
"while the sort is going on, provided that the inserted items are not "
328+
"\"better\" than the last 0'th element you extracted. This is especially "
329+
"useful in simulation contexts, where the tree holds all incoming events, and "
330+
"the \"win\" condition means the smallest scheduled time. When an event "
331+
"schedules other events for execution, they are scheduled into the future, so "
332+
"they can easily go into the heap. So, a heap is a good structure for "
333+
"implementing schedulers (this is what I used for my MIDI sequencer :-)."
334334
msgstr ""
335335

336336
#: ../../library/heapq.rst:284

library/itertools.po

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -446,10 +446,10 @@ msgstr ""
446446
"função :func:`min` calcular um valor mínimo, :func:`max` para um valor "
447447
"máximo, ou :func:`operator.mul` para calcular um produto. Tabelas de "
448448
"amortização podem ser construídas acumulando juros e aplicando pagamentos. "
449-
"`Relações de recorrência <https://pt.wikipedia.org/wiki/Rela"
450-
"%C3%A7%C3%A3o_de_recorr%C3%AAncia>`_ de primeira ordem podem ser modeladas "
451-
"fornecendo o valor inicial no iterável e usando somente o valor total "
452-
"acumulado no argumento *func*::"
449+
"`Relações de recorrência <https://pt.wikipedia.org/wiki/"
450+
"Rela%C3%A7%C3%A3o_de_recorr%C3%AAncia>`_ de primeira ordem podem ser "
451+
"modeladas fornecendo o valor inicial no iterável e usando somente o valor "
452+
"total acumulado no argumento *func*::"
453453

454454
#: ../../library/itertools.rst:147
455455
msgid ""

library/logging.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1618,8 +1618,8 @@ msgstr ""
16181618
msgid ""
16191619
"Levels are internally integers (as they need to be compared in the logging "
16201620
"logic). This function is used to convert between an integer level and the "
1621-
"level name displayed in the formatted log output by means of the ``"
1622-
"%(levelname)s`` format specifier (see :ref:`logrecord-attributes`)."
1621+
"level name displayed in the formatted log output by means of the "
1622+
"``%(levelname)s`` format specifier (see :ref:`logrecord-attributes`)."
16231623
msgstr ""
16241624

16251625
#: ../../library/logging.rst:1093

0 commit comments

Comments
 (0)