-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathmethod.po
More file actions
87 lines (75 loc) · 2.95 KB
/
Copy pathmethod.po
File metadata and controls
87 lines (75 loc) · 2.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 1990-2020, Python Software Foundation
# This file is distributed under the same license as the Python package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Python 2.7\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-02-09 18:46+0900\n"
"PO-Revision-Date: 2020-03-22 18:24+0000\n"
"Last-Translator: Cássio Nomura <cassionomura@gmail.com>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/python-doc/python-27/language/pt_BR/)\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: ../../c-api/method.rst:6
msgid "Method Objects"
msgstr "Objetos de Método"
#: ../../c-api/method.rst:10
msgid ""
"There are some useful functions that are useful for working with method "
"objects."
msgstr ""
#: ../../c-api/method.rst:17
msgid ""
"This instance of :c:type:`PyTypeObject` represents the Python method type. "
"This is exposed to Python programs as ``types.MethodType``."
msgstr ""
"Esta instância de :c:type:`PyTypeObject` representa o tipo de método Python."
" Isso é exposto a programas Python como ``types.MethodType``."
#: ../../c-api/method.rst:23
msgid ""
"Return true if *o* is a method object (has type :c:data:`PyMethod_Type`). "
"The parameter must not be *NULL*."
msgstr ""
#: ../../c-api/method.rst:29
msgid ""
"Return a new method object, with *func* being any callable object; this is "
"the function that will be called when the method is called. If this method "
"should be bound to an instance, *self* should be the instance and *class* "
"should be the class of *self*, otherwise *self* should be *NULL* and *class*"
" should be the class which provides the unbound method.."
msgstr ""
#: ../../c-api/method.rst:38
msgid ""
"Return the class object from which the method *meth* was created; if this "
"was created from an instance, it will be the class of the instance."
msgstr ""
#: ../../c-api/method.rst:44
msgid "Macro version of :c:func:`PyMethod_Class` which avoids error checking."
msgstr ""
#: ../../c-api/method.rst:49
msgid "Return the function object associated with the method *meth*."
msgstr "Retorna o objeto de função associado ao método *meth*."
#: ../../c-api/method.rst:54
msgid ""
"Macro version of :c:func:`PyMethod_Function` which avoids error checking."
msgstr ""
"Versão macro de :c:func:`PyMethod_Function` que evita a verificação de "
"erros."
#: ../../c-api/method.rst:59
msgid ""
"Return the instance associated with the method *meth* if it is bound, "
"otherwise return *NULL*."
msgstr ""
#: ../../c-api/method.rst:65
msgid "Macro version of :c:func:`PyMethod_Self` which avoids error checking."
msgstr ""
"Versão macro de :c:func:`PyMethod_Self` que evita a verificação de erros."
#: ../../c-api/method.rst:70
msgid "Clear the free list. Return the total number of freed items."
msgstr "Limpe a lista livre. Retorna o número total de itens liberados."