Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ec9e3a3

Browse files
committed
[po] auto sync bot
1 parent 2635a58 commit ec9e3a3

1 file changed

Lines changed: 17 additions & 13 deletions

File tree

c-api/type.po

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.7\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2018-06-30 05:56+0900\n"
12-
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
11+
"POT-Creation-Date: 2018-11-30 09:52+0900\n"
12+
"PO-Revision-Date: 2017-02-16 17:39+0000\n"
1313
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
1414
"MIME-Version: 1.0\n"
1515
"Content-Type: text/plain; charset=UTF-8\n"
@@ -55,74 +55,78 @@ msgid ""
5555
":c:member:`~PyTypeObject.tp_flags` itself is not part of the limited API."
5656
msgstr ""
5757

58-
#: ../../c-api/type.rst:50
58+
#: ../../c-api/type.rst:47
59+
msgid "The return type is now ``unsigned long`` rather than ``long``."
60+
msgstr ""
61+
62+
#: ../../c-api/type.rst:53
5963
msgid ""
6064
"Invalidate the internal lookup cache for the type and all of its subtypes. "
6165
"This function must be called after any manual modification of the attributes"
6266
" or base classes of the type."
6367
msgstr ""
6468

65-
#: ../../c-api/type.rst:57
69+
#: ../../c-api/type.rst:60
6670
msgid ""
6771
"Return true if the type object *o* sets the feature *feature*. Type "
6872
"features are denoted by single bit flags."
6973
msgstr ""
7074

71-
#: ../../c-api/type.rst:63
75+
#: ../../c-api/type.rst:66
7276
msgid ""
7377
"Return true if the type object includes support for the cycle detector; this"
7478
" tests the type flag :const:`Py_TPFLAGS_HAVE_GC`."
7579
msgstr ""
7680

77-
#: ../../c-api/type.rst:69
81+
#: ../../c-api/type.rst:72
7882
msgid "Return true if *a* is a subtype of *b*."
7983
msgstr ""
8084

81-
#: ../../c-api/type.rst:71
85+
#: ../../c-api/type.rst:74
8286
msgid ""
8387
"This function only checks for actual subtypes, which means that "
8488
":meth:`~class.__subclasscheck__` is not called on *b*. Call "
8589
":c:func:`PyObject_IsSubclass` to do the same check that :func:`issubclass` "
8690
"would do."
8791
msgstr ""
8892

89-
#: ../../c-api/type.rst:79
93+
#: ../../c-api/type.rst:82
9094
msgid ""
9195
"Generic handler for the :c:member:`~PyTypeObject.tp_alloc` slot of a type "
9296
"object. Use Python's default memory allocation mechanism to allocate a new "
9397
"instance and initialize all its contents to *NULL*."
9498
msgstr ""
9599

96-
#: ../../c-api/type.rst:85
100+
#: ../../c-api/type.rst:88
97101
msgid ""
98102
"Generic handler for the :c:member:`~PyTypeObject.tp_new` slot of a type "
99103
"object. Create a new instance using the type's "
100104
":c:member:`~PyTypeObject.tp_alloc` slot."
101105
msgstr ""
102106

103-
#: ../../c-api/type.rst:90
107+
#: ../../c-api/type.rst:93
104108
msgid ""
105109
"Finalize a type object. This should be called on all type objects to finish"
106110
" their initialization. This function is responsible for adding inherited "
107111
"slots from a type's base class. Return ``0`` on success, or return ``-1`` "
108112
"and sets an exception on error."
109113
msgstr ""
110114

111-
#: ../../c-api/type.rst:97
115+
#: ../../c-api/type.rst:100
112116
msgid ""
113117
"Creates and returns a heap type object from the *spec* passed to the "
114118
"function."
115119
msgstr ""
116120

117-
#: ../../c-api/type.rst:101
121+
#: ../../c-api/type.rst:104
118122
msgid ""
119123
"Creates and returns a heap type object from the *spec*. In addition to that,"
120124
" the created heap type contains all types contained by the *bases* tuple as "
121125
"base types. This allows the caller to reference other heap types as base "
122126
"types."
123127
msgstr ""
124128

125-
#: ../../c-api/type.rst:109
129+
#: ../../c-api/type.rst:112
126130
msgid ""
127131
"Return the function pointer stored in the given slot. If the result is "
128132
"*NULL*, this indicates that either the slot is *NULL*, or that the function "

0 commit comments

Comments
 (0)