Skip to content

Commit 9d10159

Browse files
sync with cpython 6cbb8cb1
1 parent 52ecbc1 commit 9d10159

File tree

5 files changed

+576
-500
lines changed

5 files changed

+576
-500
lines changed

c-api/descriptor.po

Lines changed: 49 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ msgid ""
99
msgstr ""
1010
"Project-Id-Version: Python 3.14\n"
1111
"Report-Msgid-Bugs-To: \n"
12-
"POT-Creation-Date: 2025-11-05 00:16+0000\n"
12+
"POT-Creation-Date: 2025-11-10 00:16+0000\n"
1313
"PO-Revision-Date: 2021-12-09 20:56+0800\n"
1414
"Last-Translator: Matt Wang <mattwang44@gmail.com>\n"
1515
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -45,3 +45,51 @@ msgid ""
4545
msgstr ""
4646
"如果 descriptor 物件 *descr* 描述的是一個資料屬性則回傳非零值,或者如果它描述"
4747
"的是一個方法則回傳 ``0``。*descr* 必須為一個 descriptor 物件;沒有錯誤檢查。"
48+
49+
#: ../../c-api/descriptor.rst:44
50+
msgid "Built-in descriptors"
51+
msgstr ""
52+
53+
#: ../../c-api/descriptor.rst:48
54+
msgid ""
55+
"The type object for super objects. This is the same object as :class:`super` "
56+
"in the Python layer."
57+
msgstr ""
58+
59+
#: ../../c-api/descriptor.rst:54
60+
msgid ""
61+
"The type of class method objects. This is the same object as :class:"
62+
"`classmethod` in the Python layer."
63+
msgstr ""
64+
65+
#: ../../c-api/descriptor.rst:60
66+
msgid ""
67+
"Create a new :class:`classmethod` object wrapping *callable*. *callable* "
68+
"must be a callable object and must not be ``NULL``."
69+
msgstr ""
70+
71+
#: ../../c-api/descriptor.rst:63
72+
msgid ""
73+
"On success, this function returns a :term:`strong reference` to a new class "
74+
"method descriptor. On failure, this function returns ``NULL`` with an "
75+
"exception set."
76+
msgstr ""
77+
78+
#: ../../c-api/descriptor.rst:70
79+
msgid ""
80+
"The type of static method objects. This is the same object as :class:"
81+
"`staticmethod` in the Python layer."
82+
msgstr ""
83+
84+
#: ../../c-api/descriptor.rst:76
85+
msgid ""
86+
"Create a new :class:`staticmethod` object wrapping *callable*. *callable* "
87+
"must be a callable object and must not be ``NULL``."
88+
msgstr ""
89+
90+
#: ../../c-api/descriptor.rst:79
91+
msgid ""
92+
"On success, this function returns a :term:`strong reference` to a new static "
93+
"method descriptor. On failure, this function returns ``NULL`` with an "
94+
"exception set."
95+
msgstr ""

0 commit comments

Comments
 (0)