-
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathcobject.po
More file actions
81 lines (72 loc) · 2.83 KB
/
cobject.po
File metadata and controls
81 lines (72 loc) · 2.83 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
# 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: 2015-11-28 19:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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/cobject.rst:6
msgid "CObjects"
msgstr ""
#: ../../c-api/cobject.rst:13
msgid ""
"The CObject API is deprecated as of Python 2.7. Please switch to the new "
":ref:`capsules` API."
msgstr ""
#: ../../c-api/cobject.rst:18
msgid ""
"This subtype of :c:type:`PyObject` represents an opaque value, useful for C "
"extension modules who need to pass an opaque value (as a :c:type:`void\\*` "
"pointer) through Python code to other C code. It is often used to make a C "
"function pointer defined in one module available to other modules, so the "
"regular import mechanism can be used to access C APIs defined in dynamically"
" loaded modules."
msgstr ""
"Este subtipo de :c:type:`PyObject` representa um valor opaco, útil para "
"módulos de extensão C que precisam passar um valor opaco (como ponteiro "
":c:type:`void\\*`) através do código Python para outro código C . É "
"frequentemente usado para disponibilizar um ponteiro de função C definido em"
" um módulo para outros módulos, para que o mecanismo de importação regular "
"possa ser usado para acessar APIs C definidas em módulos carregados "
"dinamicamente."
#: ../../c-api/cobject.rst:28
msgid "Return true if its argument is a :c:type:`PyCObject`."
msgstr ""
#: ../../c-api/cobject.rst:33
msgid ""
"Create a :c:type:`PyCObject` from the ``void *`` *cobj*. The *destr* "
"function will be called when the object is reclaimed, unless it is *NULL*."
msgstr ""
#: ../../c-api/cobject.rst:39
msgid ""
"Create a :c:type:`PyCObject` from the :c:type:`void \\*` *cobj*. The "
"*destr* function will be called when the object is reclaimed. The *desc* "
"argument can be used to pass extra callback data for the destructor "
"function."
msgstr ""
#: ../../c-api/cobject.rst:46
msgid ""
"Return the object :c:type:`void \\*` that the :c:type:`PyCObject` *self* was"
" created with."
msgstr ""
#: ../../c-api/cobject.rst:52
msgid ""
"Return the description :c:type:`void \\*` that the :c:type:`PyCObject` "
"*self* was created with."
msgstr ""
#: ../../c-api/cobject.rst:58
msgid ""
"Set the void pointer inside *self* to *cobj*. The :c:type:`PyCObject` must "
"not have an associated destructor. Return true on success, false on failure."
msgstr ""