-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathdescriptor.po
More file actions
87 lines (75 loc) · 2.4 KB
/
descriptor.po
File metadata and controls
87 lines (75 loc) · 2.4 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) 2001-2024, Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.12\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-11-27 09:00+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: c-api/descriptor.rst:6
msgid "Descriptor Objects"
msgstr ""
#: c-api/descriptor.rst:8
msgid ""
"\"Descriptors\" are objects that describe some attribute of an object. They "
"are found in the dictionary of type objects."
msgstr ""
#: c-api/descriptor.rst:15
msgid "The type object for the built-in descriptor types."
msgstr ""
#: c-api/descriptor.rst:35
msgid ""
"Return non-zero if the descriptor object *descr* describes a data attribute, "
"or ``0`` if it describes a method. *descr* must be a descriptor object; "
"there is no error checking."
msgstr ""
#: c-api/descriptor.rst:44
msgid "Built-in descriptors"
msgstr ""
#: c-api/descriptor.rst:48
msgid ""
"The type object for super objects. This is the same object as :class:`super` "
"in the Python layer."
msgstr ""
#: c-api/descriptor.rst:54
msgid ""
"The type of class method objects. This is the same object as :class:"
"`classmethod` in the Python layer."
msgstr ""
#: c-api/descriptor.rst:60
msgid ""
"Create a new :class:`classmethod` object wrapping *callable*. *callable* "
"must be a callable object and must not be ``NULL``."
msgstr ""
#: c-api/descriptor.rst:63
msgid ""
"On success, this function returns a :term:`strong reference` to a new class "
"method descriptor. On failure, this function returns ``NULL`` with an "
"exception set."
msgstr ""
#: c-api/descriptor.rst:70
msgid ""
"The type of static method objects. This is the same object as :class:"
"`staticmethod` in the Python layer."
msgstr ""
#: c-api/descriptor.rst:76
msgid ""
"Create a new :class:`staticmethod` object wrapping *callable*. *callable* "
"must be a callable object and must not be ``NULL``."
msgstr ""
#: c-api/descriptor.rst:79
msgid ""
"On success, this function returns a :term:`strong reference` to a new static "
"method descriptor. On failure, this function returns ``NULL`` with an "
"exception set."
msgstr ""