@@ -18,7 +18,8 @@ msgstr ""
18
18
"POT-Creation-Date : 2020-02-09 12:40+0000\n "
19
19
"PO-Revision-Date : 2017-02-16 17:39+0000\n "
20
20
"
Last-Translator :
Marco Rougeth <[email protected] >, 2020\n "
21
- "Language-Team : Portuguese (Brazil) (https://www.transifex.com/python-doc/teams/5390/pt_BR/)\n "
21
+ "Language-Team : Portuguese (Brazil) (https://www.transifex.com/python-doc/ "
22
+ "teams/5390/pt_BR/)\n "
22
23
"Language : pt_BR\n "
23
24
"MIME-Version : 1.0\n "
24
25
"Content-Type : text/plain; charset=UTF-8\n "
@@ -47,13 +48,13 @@ msgstr ""
47
48
48
49
#: ../../c-api/structures.rst:21
49
50
msgid ""
50
- "All object types are extensions of this type. This is a type which contains"
51
- " the information Python needs to treat a pointer to an object as an object."
52
- " In a normal \" release\" build, it contains only the object's reference "
53
- "count and a pointer to the corresponding type object. Nothing is actually "
54
- "declared to be a :c:type:`PyObject`, but every pointer to a Python object "
55
- "can be cast to a :c:type:`PyObject*`. Access to the members must be done by"
56
- " using the macros :c:macro:`Py_REFCNT` and :c:macro:`Py_TYPE`."
51
+ "All object types are extensions of this type. This is a type which contains "
52
+ "the information Python needs to treat a pointer to an object as an object. "
53
+ "In a normal \" release\" build, it contains only the object's reference count "
54
+ "and a pointer to the corresponding type object. Nothing is actually declared "
55
+ "to be a :c:type:`PyObject`, but every pointer to a Python object can be cast "
56
+ "to a :c:type:`PyObject*`. Access to the members must be done by using the "
57
+ "macros :c:macro:`Py_REFCNT` and :c:macro:`Py_TYPE`."
57
58
msgstr ""
58
59
59
60
#: ../../c-api/structures.rst:33
@@ -77,8 +78,8 @@ msgstr ""
77
78
78
79
#: ../../c-api/structures.rst:52
79
80
msgid ""
80
- "This is a macro used when declaring new types which represent objects with a"
81
- " length that varies from instance to instance. The PyObject_VAR_HEAD macro "
81
+ "This is a macro used when declaring new types which represent objects with a "
82
+ "length that varies from instance to instance. The PyObject_VAR_HEAD macro "
82
83
"expands to::"
83
84
msgstr ""
84
85
@@ -106,15 +107,15 @@ msgstr ""
106
107
107
108
#: ../../c-api/structures.rst:88
108
109
msgid ""
109
- "This is a macro which expands to initialization values for a new "
110
- ":c:type: `PyObject` type. This macro expands to::"
110
+ "This is a macro which expands to initialization values for a new :c:type: "
111
+ "`PyObject` type. This macro expands to::"
111
112
msgstr ""
112
113
113
114
#: ../../c-api/structures.rst:97
114
115
msgid ""
115
- "This is a macro which expands to initialization values for a new "
116
- ":c:type: `PyVarObject` type, including the :attr:`ob_size` field. This macro "
117
- "expands to::"
116
+ "This is a macro which expands to initialization values for a new :c:type: "
117
+ "`PyVarObject` type, including the :attr:`ob_size` field. This macro expands "
118
+ "to::"
118
119
msgstr ""
119
120
120
121
#: ../../c-api/structures.rst:107
@@ -129,20 +130,20 @@ msgstr ""
129
130
130
131
#: ../../c-api/structures.rst:117
131
132
msgid ""
132
- "Type of the functions used to implement Python callables in C with signature "
133
- " :const:`METH_VARARGS | METH_KEYWORDS`."
133
+ "Type of the functions used to implement Python callables in C with "
134
+ "signature :const:`METH_VARARGS | METH_KEYWORDS`."
134
135
msgstr ""
135
136
136
137
#: ../../c-api/structures.rst:123
137
138
msgid ""
138
- "Type of the functions used to implement Python callables in C with signature "
139
- " :const:`METH_FASTCALL`."
139
+ "Type of the functions used to implement Python callables in C with "
140
+ "signature :const:`METH_FASTCALL`."
140
141
msgstr ""
141
142
142
143
#: ../../c-api/structures.rst:129
143
144
msgid ""
144
- "Type of the functions used to implement Python callables in C with signature "
145
- " :const:`METH_FASTCALL | METH_KEYWORDS`."
145
+ "Type of the functions used to implement Python callables in C with "
146
+ "signature :const:`METH_FASTCALL | METH_KEYWORDS`."
146
147
msgstr ""
147
148
148
149
#: ../../c-api/structures.rst:135
@@ -233,20 +234,19 @@ msgstr ""
233
234
234
235
#: ../../c-api/structures.rst:164
235
236
msgid ""
236
- "There are four basic calling conventions for positional arguments and two of"
237
- " them can be combined with :const:`METH_KEYWORDS` to support also keyword "
237
+ "There are four basic calling conventions for positional arguments and two of "
238
+ "them can be combined with :const:`METH_KEYWORDS` to support also keyword "
238
239
"arguments. So there are a total of 6 calling conventions:"
239
240
msgstr ""
240
241
241
242
#: ../../c-api/structures.rst:170
242
243
msgid ""
243
- "This is the typical calling convention, where the methods have the type "
244
- ":c:type:`PyCFunction`. The function expects two :c:type:`PyObject\\ *` "
245
- "values. The first one is the *self* object for methods; for module "
246
- "functions, it is the module object. The second parameter (often called "
247
- "*args*) is a tuple object representing all arguments. This parameter is "
248
- "typically processed using :c:func:`PyArg_ParseTuple` or "
249
- ":c:func:`PyArg_UnpackTuple`."
244
+ "This is the typical calling convention, where the methods have the type :c:"
245
+ "type:`PyCFunction`. The function expects two :c:type:`PyObject\\ *` values. "
246
+ "The first one is the *self* object for methods; for module functions, it is "
247
+ "the module object. The second parameter (often called *args*) is a tuple "
248
+ "object representing all arguments. This parameter is typically processed "
249
+ "using :c:func:`PyArg_ParseTuple` or :c:func:`PyArg_UnpackTuple`."
250
250
msgstr ""
251
251
252
252
#: ../../c-api/structures.rst:180
@@ -261,10 +261,10 @@ msgstr ""
261
261
#: ../../c-api/structures.rst:189
262
262
msgid ""
263
263
"Fast calling convention supporting only positional arguments. The methods "
264
- "have the type :c:type:`_PyCFunctionFast`. The first parameter is *self*, the"
265
- " second parameter is a C array of :c:type:`PyObject\\ *` values indicating "
266
- "the arguments and the third parameter is the number of arguments (the length"
267
- " of the array)."
264
+ "have the type :c:type:`_PyCFunctionFast`. The first parameter is *self*, the "
265
+ "second parameter is a C array of :c:type:`PyObject\\ *` values indicating the "
266
+ "arguments and the third parameter is the number of arguments (the length of "
267
+ "the array)."
268
268
msgstr ""
269
269
270
270
#: ../../c-api/structures.rst:195 ../../c-api/structures.rst:210
@@ -293,8 +293,8 @@ msgstr ""
293
293
294
294
#: ../../c-api/structures.rst:226
295
295
msgid ""
296
- "Methods with a single object argument can be listed with the :const:`METH_O`"
297
- " flag, instead of invoking :c:func:`PyArg_ParseTuple` with a ``\" O\" `` "
296
+ "Methods with a single object argument can be listed with the :const:`METH_O` "
297
+ "flag, instead of invoking :c:func:`PyArg_ParseTuple` with a ``\" O\" `` "
298
298
"argument. They have the type :c:type:`PyCFunction`, with the *self* "
299
299
"parameter, and a :c:type:`PyObject\\ *` parameter representing the single "
300
300
"argument."
@@ -310,9 +310,9 @@ msgstr ""
310
310
311
311
#: ../../c-api/structures.rst:242
312
312
msgid ""
313
- "The method will be passed the type object as the first parameter rather than"
314
- " an instance of the type. This is used to create *class methods*, similar "
315
- "to what is created when using the :func:`classmethod` built-in function."
313
+ "The method will be passed the type object as the first parameter rather than "
314
+ "an instance of the type. This is used to create *class methods*, similar to "
315
+ "what is created when using the :func:`classmethod` built-in function."
316
316
msgstr ""
317
317
318
318
#: ../../c-api/structures.rst:252
@@ -333,12 +333,12 @@ msgid ""
333
333
"The method will be loaded in place of existing definitions. Without "
334
334
"*METH_COEXIST*, the default is to skip repeated definitions. Since slot "
335
335
"wrappers are loaded before the method table, the existence of a "
336
- "*sq_contains* slot, for example, would generate a wrapped method named "
337
- ":meth: `__contains__` and preclude the loading of a corresponding PyCFunction"
338
- " with the same name. With the flag defined, the PyCFunction will be loaded "
339
- "in place of the wrapper object and will co-exist with the slot. This is "
340
- "helpful because calls to PyCFunctions are optimized more than wrapper object"
341
- " calls."
336
+ "*sq_contains* slot, for example, would generate a wrapped method named :meth: "
337
+ "`__contains__` and preclude the loading of a corresponding PyCFunction with "
338
+ "the same name. With the flag defined, the PyCFunction will be loaded in "
339
+ "place of the wrapper object and will co-exist with the slot. This is "
340
+ "helpful because calls to PyCFunctions are optimized more than wrapper object "
341
+ "calls."
342
342
msgstr ""
343
343
344
344
#: ../../c-api/structures.rst:275
@@ -510,7 +510,7 @@ msgstr ""
510
510
511
511
#: ../../c-api/structures.rst:320
512
512
msgid "long long"
513
- msgstr ""
513
+ msgstr "long long "
514
514
515
515
#: ../../c-api/structures.rst:321
516
516
msgid "T_ULONGLONG"
@@ -526,27 +526,27 @@ msgstr ""
526
526
527
527
#: ../../c-api/structures.rst:325
528
528
msgid ""
529
- ":c:macro:`T_OBJECT` and :c:macro:`T_OBJECT_EX` differ in that "
530
- ":c:macro: `T_OBJECT` returns ``None`` if the member is ``NULL`` and "
531
- ":c:macro: `T_OBJECT_EX` raises an :exc:`AttributeError`. Try to use "
532
- ":c:macro: `T_OBJECT_EX` over :c:macro:`T_OBJECT` because "
533
- ":c:macro:`T_OBJECT_EX` handles use of the :keyword:`del` statement on that "
534
- "attribute more correctly than :c:macro:`T_OBJECT`."
529
+ ":c:macro:`T_OBJECT` and :c:macro:`T_OBJECT_EX` differ in that :c:macro: "
530
+ "`T_OBJECT` returns ``None`` if the member is ``NULL`` and :c:macro: "
531
+ "`T_OBJECT_EX` raises an :exc:`AttributeError`. Try to use :c:macro: "
532
+ "`T_OBJECT_EX` over :c:macro:`T_OBJECT` because :c:macro:`T_OBJECT_EX` "
533
+ "handles use of the :keyword:`del` statement on that attribute more correctly "
534
+ "than :c:macro:`T_OBJECT`."
535
535
msgstr ""
536
536
537
537
#: ../../c-api/structures.rst:332
538
538
msgid ""
539
539
":attr:`flags` can be ``0`` for write and read access or :c:macro:`READONLY` "
540
- "for read-only access. Using :c:macro:`T_STRING` for :attr:`type` implies "
541
- ":c: macro:`READONLY`. :c:macro:`T_STRING` data is interpreted as UTF-8. Only"
542
- " :c: macro:`T_OBJECT` and :c:macro:`T_OBJECT_EX` members can be deleted. "
543
- "(They are set to ``NULL``)."
540
+ "for read-only access. Using :c:macro:`T_STRING` for :attr:`type` implies :c: "
541
+ "macro:`READONLY`. :c:macro:`T_STRING` data is interpreted as UTF-8. Only :c: "
542
+ "macro:`T_OBJECT` and :c:macro:`T_OBJECT_EX` members can be deleted. (They "
543
+ "are set to ``NULL``)."
544
544
msgstr ""
545
545
546
546
#: ../../c-api/structures.rst:341
547
547
msgid ""
548
- "Structure to define property-like access for a type. See also description of"
549
- " the :c:member:`PyTypeObject.tp_getset` slot."
548
+ "Structure to define property-like access for a type. See also description of "
549
+ "the :c:member:`PyTypeObject.tp_getset` slot."
550
550
msgstr ""
551
551
552
552
#: ../../c-api/structures.rst:347
@@ -579,8 +579,8 @@ msgstr ""
579
579
580
580
#: ../../c-api/structures.rst:351
581
581
msgid ""
582
- "optional C function to set or delete the attribute, if omitted the attribute"
583
- " is readonly"
582
+ "optional C function to set or delete the attribute, if omitted the attribute "
583
+ "is readonly"
584
584
msgstr ""
585
585
586
586
#: ../../c-api/structures.rst:355
@@ -612,8 +612,8 @@ msgstr ""
612
612
613
613
#: ../../c-api/structures.rst:367
614
614
msgid ""
615
- "It should return a new reference on success or ``NULL`` with a set exception"
616
- " on failure."
615
+ "It should return a new reference on success or ``NULL`` with a set exception "
616
+ "on failure."
617
617
msgstr ""
618
618
619
619
#: ../../c-api/structures.rst:370
0 commit comments