@@ -34,8 +34,8 @@ msgid ""
34
34
"This instance of :c:type:`PyTypeObject` represents the Python dictionary "
35
35
"type. This is the same object as :class:`dict` in the Python layer."
36
36
msgstr ""
37
- ":c:type:`PyTypeObject` 實例代表一個 Python 字典型態。此與 Python 層中的 : "
38
- "class:`dict` 為同一個物件。"
37
+ ":c:type:`PyTypeObject` 實例代表一個 Python 字典型態。此與 Python 層中 "
38
+ "的 : class:`dict` 為同一個物件。"
39
39
40
40
#: ../../c-api/dict.rst:24
41
41
msgid ""
@@ -77,9 +77,9 @@ msgstr ""
77
77
78
78
#: ../../c-api/dict.rst:60
79
79
msgid ""
80
- "This is the same as :c:func:`PyDict_Contains`, but *key* is specified as a : "
81
- "c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr: "
82
- "`PyObject*`."
80
+ "This is the same as :c:func:`PyDict_Contains`, but *key* is specified as "
81
+ "a : c:expr:`const char*` UTF-8 encoded bytes string, rather than "
82
+ "a :c:expr: `PyObject*`."
83
83
msgstr ""
84
84
85
85
#: ../../c-api/dict.rst:69
@@ -88,32 +88,32 @@ msgstr ""
88
88
89
89
#: ../../c-api/dict.rst:74
90
90
msgid ""
91
- "Insert *val* into the dictionary *p* with a key of *key*. *key* must be : "
92
- "term:`hashable`; if it isn't, :exc:`TypeError` will be raised. Return ``0`` "
93
- "on success or ``-1`` on failure. This function *does not* steal a reference "
94
- "to *val*."
91
+ "Insert *val* into the dictionary *p* with a key of *key*. *key* must "
92
+ "be : term:`hashable`; if it isn't, :exc:`TypeError` will be raised. Return "
93
+ "``0`` on success or ``-1`` on failure. This function *does not* steal a "
94
+ "reference to *val*."
95
95
msgstr ""
96
96
97
97
#: ../../c-api/dict.rst:82
98
98
msgid ""
99
- "This is the same as :c:func:`PyDict_SetItem`, but *key* is specified as a :c: "
100
- "expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr: "
101
- "`PyObject*`."
99
+ "This is the same as :c:func:`PyDict_SetItem`, but *key* is specified as "
100
+ "a :c: expr:`const char*` UTF-8 encoded bytes string, rather than "
101
+ "a :c:expr: `PyObject*`."
102
102
msgstr ""
103
103
104
104
#: ../../c-api/dict.rst:89
105
105
msgid ""
106
- "Remove the entry in dictionary *p* with key *key*. *key* must be :term: "
107
- "`hashable`; if it isn't, :exc:`TypeError` is raised. If *key* is not in the "
108
- "dictionary, :exc:`KeyError` is raised. Return ``0`` on success or ``-1`` on "
109
- "failure."
106
+ "Remove the entry in dictionary *p* with key *key*. *key* must "
107
+ "be :term: `hashable`; if it isn't, :exc:`TypeError` is raised. If *key* is "
108
+ "not in the dictionary, :exc:`KeyError` is raised. Return ``0`` on success or "
109
+ "``-1`` on failure."
110
110
msgstr ""
111
111
112
112
#: ../../c-api/dict.rst:97
113
113
msgid ""
114
- "This is the same as :c:func:`PyDict_DelItem`, but *key* is specified as a :c: "
115
- "expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr: "
116
- "`PyObject*`."
114
+ "This is the same as :c:func:`PyDict_DelItem`, but *key* is specified as "
115
+ "a :c: expr:`const char*` UTF-8 encoded bytes string, rather than "
116
+ "a :c:expr: `PyObject*`."
117
117
msgstr ""
118
118
119
119
#: ../../c-api/dict.rst:104
@@ -134,11 +134,11 @@ msgstr ""
134
134
135
135
#: ../../c-api/dict.rst:110 ../../c-api/dict.rst:207
136
136
msgid "On error, raise an exception and return ``-1``."
137
- msgstr ""
137
+ msgstr "錯誤發生時,引發一個例外並回傳 ``-1``。 "
138
138
139
139
#: ../../c-api/dict.rst:114
140
140
msgid "See also the :c:func:`PyObject_GetItem` function."
141
- msgstr ""
141
+ msgstr "另見 :c:func:`PyObject_GetItem` 函式。 "
142
142
143
143
#: ../../c-api/dict.rst:119
144
144
msgid ""
@@ -149,9 +149,9 @@ msgstr ""
149
149
150
150
#: ../../c-api/dict.rst:125
151
151
msgid ""
152
- "Exceptions that occur while this calls :meth:`~object.__hash__` and :meth: "
153
- "`~object.__eq__` methods are silently ignored. Prefer the :c:func: "
154
- "`PyDict_GetItemWithError` function instead."
152
+ "Exceptions that occur while this calls :meth:`~object.__hash__` "
153
+ "and :meth: `~object.__eq__` methods are silently ignored. Prefer "
154
+ "the :c:func: `PyDict_GetItemWithError` function instead."
155
155
msgstr ""
156
156
157
157
#: ../../c-api/dict.rst:129
@@ -169,23 +169,25 @@ msgstr ""
169
169
170
170
#: ../../c-api/dict.rst:144
171
171
msgid ""
172
- "This is the same as :c:func:`PyDict_GetItem`, but *key* is specified as a :c: "
173
- "expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr: "
174
- "`PyObject*`."
172
+ "This is the same as :c:func:`PyDict_GetItem`, but *key* is specified as "
173
+ "a :c: expr:`const char*` UTF-8 encoded bytes string, rather than "
174
+ "a :c:expr: `PyObject*`."
175
175
msgstr ""
176
176
177
177
#: ../../c-api/dict.rst:150
178
178
msgid ""
179
- "Exceptions that occur while this calls :meth:`~object.__hash__` and :meth:"
180
- "`~object.__eq__` methods or while creating the temporary :class:`str` object "
181
- "are silently ignored. Prefer using the :c:func:`PyDict_GetItemWithError` "
182
- "function with your own :c:func:`PyUnicode_FromString` *key* instead."
179
+ "Exceptions that occur while this calls :meth:`~object.__hash__` "
180
+ "and :meth:`~object.__eq__` methods or while creating the "
181
+ "temporary :class:`str` object are silently ignored. Prefer using "
182
+ "the :c:func:`PyDict_GetItemWithError` function with your "
183
+ "own :c:func:`PyUnicode_FromString` *key* instead."
183
184
msgstr ""
184
185
185
186
#: ../../c-api/dict.rst:159
186
187
msgid ""
187
- "Similar to :c:func:`PyDict_GetItemRef`, but *key* is specified as a :c:expr:"
188
- "`const char*` UTF-8 encoded bytes string, rather than a :c:expr:`PyObject*`."
188
+ "Similar to :c:func:`PyDict_GetItemRef`, but *key* is specified as "
189
+ "a :c:expr:`const char*` UTF-8 encoded bytes string, rather than "
190
+ "a :c:expr:`PyObject*`."
189
191
msgstr ""
190
192
191
193
#: ../../c-api/dict.rst:168
@@ -238,8 +240,8 @@ msgstr ""
238
240
239
241
#: ../../c-api/dict.rst:209
240
242
msgid ""
241
- "Similar to :meth:`dict.pop`, but without the default value and not raising : "
242
- "exc:`KeyError` if the key missing."
243
+ "Similar to :meth:`dict.pop`, but without the default value and not "
244
+ "raising : exc:`KeyError` if the key missing."
243
245
msgstr ""
244
246
245
247
#: ../../c-api/dict.rst:217
@@ -251,37 +253,37 @@ msgstr ""
251
253
#: ../../c-api/dict.rst:226
252
254
msgid ""
253
255
"Return a :c:type:`PyListObject` containing all the items from the dictionary."
254
- msgstr ""
256
+ msgstr "回傳一個包含字典中所有項目的 :c:type:`PyListObject`。 "
255
257
256
258
#: ../../c-api/dict.rst:231
257
259
msgid ""
258
260
"Return a :c:type:`PyListObject` containing all the keys from the dictionary."
259
- msgstr ""
261
+ msgstr "回傳一個包含字典中所有鍵的 :c:type:`PyListObject`。 "
260
262
261
263
#: ../../c-api/dict.rst:236
262
264
msgid ""
263
265
"Return a :c:type:`PyListObject` containing all the values from the "
264
266
"dictionary *p*."
265
- msgstr ""
267
+ msgstr "回傳一個包含字典 *p* 中所有值的 :c:type:`PyListObject`。 "
266
268
267
269
#: ../../c-api/dict.rst:244
268
270
msgid ""
269
271
"Return the number of items in the dictionary. This is equivalent to "
270
272
"``len(p)`` on a dictionary."
271
- msgstr ""
273
+ msgstr "回傳字典中項目的數量。此與於字典呼叫 ``len(p)`` 等效。 "
272
274
273
275
#: ../../c-api/dict.rst:250
274
276
msgid ""
275
- "Iterate over all key-value pairs in the dictionary *p*. The :c:type: "
276
- "`Py_ssize_t` referred to by *ppos* must be initialized to ``0`` prior to the "
277
- "first call to this function to start the iteration; the function returns "
278
- "true for each pair in the dictionary, and false once all pairs have been "
279
- "reported. The parameters *pkey* and *pvalue* should either point to :c:expr: "
280
- "`PyObject*` variables that will be filled in with each key and value, "
281
- "respectively, or may be ``NULL``. Any references returned through them are "
282
- "borrowed. *ppos* should not be altered during iteration. Its value "
283
- "represents offsets within the internal dictionary structure, and since the "
284
- "structure is sparse, the offsets are not consecutive."
277
+ "Iterate over all key-value pairs in the dictionary *p*. "
278
+ "The :c:type: `Py_ssize_t` referred to by *ppos* must be initialized to ``0`` "
279
+ "prior to the first call to this function to start the iteration; the "
280
+ "function returns true for each pair in the dictionary, and false once all "
281
+ "pairs have been reported. The parameters *pkey* and *pvalue* should either "
282
+ "point to :c:expr: `PyObject*` variables that will be filled in with each key "
283
+ "and value, respectively, or may be ``NULL``. Any references returned "
284
+ "through them are borrowed. *ppos* should not be altered during iteration. "
285
+ "Its value represents offsets within the internal dictionary structure, and "
286
+ "since the structure is sparse, the offsets are not consecutive."
285
287
msgstr ""
286
288
287
289
#: ../../c-api/dict.rst:261
@@ -347,8 +349,9 @@ msgstr ""
347
349
#: ../../c-api/dict.rst:293
348
350
msgid ""
349
351
"The function is not thread-safe in the :term:`free-threaded <free "
350
- "threading>` build without external synchronization. You can use :c:macro:"
351
- "`Py_BEGIN_CRITICAL_SECTION` to lock the dictionary while iterating over it::"
352
+ "threading>` build without external synchronization. You can "
353
+ "use :c:macro:`Py_BEGIN_CRITICAL_SECTION` to lock the dictionary while "
354
+ "iterating over it::"
352
355
msgstr ""
353
356
354
357
#: ../../c-api/dict.rst:298
@@ -359,6 +362,11 @@ msgid ""
359
362
"}\n"
360
363
"Py_END_CRITICAL_SECTION();"
361
364
msgstr ""
365
+ "Py_BEGIN_CRITICAL_SECTION(self->dict);\n"
366
+ "while (PyDict_Next(self->dict, &pos, &key, &value)) {\n"
367
+ " ...\n"
368
+ "}\n"
369
+ "Py_END_CRITICAL_SECTION();"
362
370
363
371
#: ../../c-api/dict.rst:307
364
372
msgid ""
@@ -372,10 +380,10 @@ msgstr ""
372
380
373
381
#: ../../c-api/dict.rst:317
374
382
msgid ""
375
- "This is the same as ``PyDict_Merge(a, b, 1)`` in C, and is similar to ``a. "
376
- "update(b)`` in Python except that :c:func:`PyDict_Update` doesn't fall back "
377
- "to the iterating over a sequence of key value pairs if the second argument "
378
- "has no \" keys\" attribute. Return ``0`` on success or ``-1`` if an "
383
+ "This is the same as ``PyDict_Merge(a, b, 1)`` in C, and is similar to "
384
+ "``a. update(b)`` in Python except that :c:func:`PyDict_Update` doesn't fall "
385
+ "back to the iterating over a sequence of key value pairs if the second "
386
+ "argument has no \" keys\" attribute. Return ``0`` on success or ``-1`` if an "
379
387
"exception was raised."
380
388
msgstr ""
381
389
@@ -410,15 +418,15 @@ msgstr ""
410
418
411
419
#: ../../c-api/dict.rst:349
412
420
msgid ""
413
- "Clear watcher identified by *watcher_id* previously returned from :c:func: "
414
- "`PyDict_AddWatcher`. Return ``0`` on success, ``-1`` on error (e.g. if the "
415
- "given *watcher_id* was never registered.)"
421
+ "Clear watcher identified by *watcher_id* previously returned "
422
+ "from :c:func: `PyDict_AddWatcher`. Return ``0`` on success, ``-1`` on error "
423
+ "(e.g. if the given *watcher_id* was never registered.)"
416
424
msgstr ""
417
425
418
426
#: ../../c-api/dict.rst:357
419
427
msgid ""
420
- "Mark dictionary *dict* as watched. The callback granted *watcher_id* by :c: "
421
- "func:`PyDict_AddWatcher` will be called when *dict* is modified or "
428
+ "Mark dictionary *dict* as watched. The callback granted *watcher_id* "
429
+ "by :c: func:`PyDict_AddWatcher` will be called when *dict* is modified or "
422
430
"deallocated. Return ``0`` on success or ``-1`` on error."
423
431
msgstr ""
424
432
@@ -484,8 +492,8 @@ msgstr ""
484
492
#: ../../c-api/dict.rst:409
485
493
msgid ""
486
494
"If the callback sets an exception, it must return ``-1``; this exception "
487
- "will be printed as an unraisable exception using :c:func: "
488
- "`PyErr_WriteUnraisable`. Otherwise it should return ``0``."
495
+ "will be printed as an unraisable exception "
496
+ "using :c:func: `PyErr_WriteUnraisable`. Otherwise it should return ``0``."
489
497
msgstr ""
490
498
491
499
#: ../../c-api/dict.rst:413
0 commit comments