7
7
msgstr ""
8
8
"Project-Id-Version : Python 3.10\n "
9
9
"Report-Msgid-Bugs-To : \n "
10
- "POT-Creation-Date : 2022-04-15 00:13 +0000\n "
10
+ "POT-Creation-Date : 2022-07-02 00:16 +0000\n "
11
11
"PO-Revision-Date : 2018-05-23 16:08+0000\n "
12
12
"Last-Translator : Adrian Liaw <adrianliaw2000@gmail.com>\n "
13
13
"Language-Team : Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
@@ -189,7 +189,7 @@ msgid ""
189
189
"`KeyboardInterrupt`."
190
190
msgstr ""
191
191
192
- #: ../../library/queue.rst:161 ../../library/queue.rst:267
192
+ #: ../../library/queue.rst:161 ../../library/queue.rst:268
193
193
msgid "Equivalent to ``get(False)``."
194
194
msgstr ""
195
195
@@ -236,43 +236,43 @@ msgstr ""
236
236
msgid "Example of how to wait for enqueued tasks to be completed::"
237
237
msgstr ""
238
238
239
- #: ../../library/queue.rst:217
239
+ #: ../../library/queue.rst:218
240
240
msgid "SimpleQueue Objects"
241
241
msgstr "SimpleQueue 物件"
242
242
243
- #: ../../library/queue.rst:219
243
+ #: ../../library/queue.rst:220
244
244
msgid ""
245
245
":class:`SimpleQueue` objects provide the public methods described below."
246
246
msgstr ""
247
247
248
- #: ../../library/queue.rst:223
248
+ #: ../../library/queue.rst:224
249
249
msgid ""
250
250
"Return the approximate size of the queue. Note, qsize() > 0 doesn't "
251
251
"guarantee that a subsequent get() will not block."
252
252
msgstr ""
253
253
254
- #: ../../library/queue.rst:229
254
+ #: ../../library/queue.rst:230
255
255
msgid ""
256
256
"Return ``True`` if the queue is empty, ``False`` otherwise. If empty() "
257
257
"returns ``False`` it doesn't guarantee that a subsequent call to get() will "
258
258
"not block."
259
259
msgstr ""
260
260
261
- #: ../../library/queue.rst:236
261
+ #: ../../library/queue.rst:237
262
262
msgid ""
263
263
"Put *item* into the queue. The method never blocks and always succeeds "
264
264
"(except for potential low-level errors such as failure to allocate memory). "
265
265
"The optional args *block* and *timeout* are ignored and only provided for "
266
266
"compatibility with :meth:`Queue.put`."
267
267
msgstr ""
268
268
269
- #: ../../library/queue.rst:251
269
+ #: ../../library/queue.rst:252
270
270
msgid ""
271
271
"Equivalent to ``put(item, block=False)``, provided for compatibility with :"
272
272
"meth:`Queue.put_nowait`."
273
273
msgstr ""
274
274
275
- #: ../../library/queue.rst:257
275
+ #: ../../library/queue.rst:258
276
276
msgid ""
277
277
"Remove and return an item from the queue. If optional args *block* is true "
278
278
"and *timeout* is ``None`` (the default), block if necessary until an item is "
@@ -283,17 +283,17 @@ msgid ""
283
283
"ignored in that case)."
284
284
msgstr ""
285
285
286
- #: ../../library/queue.rst:274
286
+ #: ../../library/queue.rst:275
287
287
msgid "Class :class:`multiprocessing.Queue`"
288
288
msgstr ":class:`multiprocessing.Queue` 類型"
289
289
290
- #: ../../library/queue.rst:273
290
+ #: ../../library/queue.rst:274
291
291
msgid ""
292
292
"A queue class for use in a multi-processing (rather than multi-threading) "
293
293
"context."
294
294
msgstr ""
295
295
296
- #: ../../library/queue.rst:276
296
+ #: ../../library/queue.rst:277
297
297
msgid ""
298
298
":class:`collections.deque` is an alternative implementation of unbounded "
299
299
"queues with fast atomic :meth:`~collections.deque.append` and :meth:"
0 commit comments