|
16 | 16 | #, fuzzy
|
17 | 17 | msgid ""
|
18 | 18 | msgstr ""
|
19 |
| -"Project-Id-Version: Python 3.12\n" |
| 19 | +"Project-Id-Version: Python 3.13\n" |
20 | 20 | "Report-Msgid-Bugs-To: \n"
|
21 |
| -"POT-Creation-Date: 2024-03-15 14:13+0000\n" |
| 21 | +"POT-Creation-Date: 2024-05-11 02:33+0000\n" |
22 | 22 | "PO-Revision-Date: 2021-06-28 00:47+0000\n"
|
23 | 23 | "Last-Translator: Adorilson Bezerra <adorilson@gmail.com>, 2024\n"
|
24 | 24 | "Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
|
@@ -390,27 +390,15 @@ msgstr ""
|
390 | 390 |
|
391 | 391 | #: ../../c-api/bytes.rst:194
|
392 | 392 | msgid ""
|
393 |
| -"A way to resize a bytes object even though it is \"immutable\". Only use " |
394 |
| -"this to build up a brand new bytes object; don't use this if the bytes may " |
395 |
| -"already be known in other parts of the code. It is an error to call this " |
396 |
| -"function if the refcount on the input bytes object is not one. Pass the " |
397 |
| -"address of an existing bytes object as an lvalue (it may be written into), " |
398 |
| -"and the new size desired. On success, *\\*bytes* holds the resized bytes " |
399 |
| -"object and ``0`` is returned; the address in *\\*bytes* may differ from its " |
400 |
| -"input value. If the reallocation fails, the original bytes object at " |
401 |
| -"*\\*bytes* is deallocated, *\\*bytes* is set to ``NULL``, :exc:`MemoryError` " |
402 |
| -"is set, and ``-1`` is returned." |
| 393 | +"Resize a bytes object. *newsize* will be the new length of the bytes object. " |
| 394 | +"You can think of it as creating a new bytes object and destroying the old " |
| 395 | +"one, only more efficiently. Pass the address of an existing bytes object as " |
| 396 | +"an lvalue (it may be written into), and the new size desired. On success, " |
| 397 | +"*\\*bytes* holds the resized bytes object and ``0`` is returned; the address " |
| 398 | +"in *\\*bytes* may differ from its input value. If the reallocation fails, " |
| 399 | +"the original bytes object at *\\*bytes* is deallocated, *\\*bytes* is set to " |
| 400 | +"``NULL``, :exc:`MemoryError` is set, and ``-1`` is returned." |
403 | 401 | msgstr ""
|
404 |
| -"Uma maneira de redimensionar um objeto de bytes, mesmo que seja " |
405 |
| -"\"imutável\". Use isso apenas para construir um novo objeto de bytes; não " |
406 |
| -"use isso se os bytes já puderem ser conhecidos em outras partes do código. É " |
407 |
| -"um erro invocar essa função se o refcount no objeto de bytes de entrada não " |
408 |
| -"for um. Passe o endereço de um objeto de bytes existente como um lvalue " |
409 |
| -"(pode ser gravado) e o novo tamanho desejado. Em caso de sucesso, *\\*bytes* " |
410 |
| -"mantém o objeto de bytes redimensionados e ``0`` é retornado; o endereço em " |
411 |
| -"*\\*bytes* pode diferir do seu valor de entrada. Se a realocação falhar, o " |
412 |
| -"objeto de bytes originais em *\\*bytes* é desalocado, *\\*bytes* é definido " |
413 |
| -"como ``NULL``, :exc:`MemoryError` é definido e ``-1`` é retornado." |
414 | 402 |
|
415 | 403 | #: ../../c-api/bytes.rst:11
|
416 | 404 | msgid "object"
|
|
0 commit comments