7
7
msgstr ""
8
8
"Project-Id-Version :Python 3.12\n "
9
9
"Report-Msgid-Bugs-To :\n "
10
- "POT-Creation-Date :2023-04-24 00:16 +0000\n "
10
+ "POT-Creation-Date :2023-12-15 10:50 +0000\n "
11
11
"PO-Revision-Date :2018-05-23 16:09+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- "
@@ -236,11 +236,11 @@ msgid ""
236
236
"of the library that supports it."
237
237
msgstr ""
238
238
239
- #: ../../library/readline.rst:217
239
+ #: ../../library/readline.rst:219
240
240
msgid "Completion"
241
241
msgstr ""
242
242
243
- #: ../../library/readline.rst:219
243
+ #: ../../library/readline.rst:221
244
244
msgid ""
245
245
"The following functions relate to implementing a custom word completion "
246
246
"function. This is typically operated by the Tab key, and can suggest and "
@@ -250,7 +250,7 @@ msgid ""
250
250
"custom completer, a different set of word delimiters should be set."
251
251
msgstr ""
252
252
253
- #: ../../library/readline.rst:229
253
+ #: ../../library/readline.rst:231
254
254
msgid ""
255
255
"Set or remove the completer function. If *function* is specified, it will "
256
256
"be used as the new completer function; if omitted or ``None``, any completer "
@@ -260,27 +260,27 @@ msgid ""
260
260
"starting with *text*."
261
261
msgstr ""
262
262
263
- #: ../../library/readline.rst:236
263
+ #: ../../library/readline.rst:238
264
264
msgid ""
265
265
"The installed completer function is invoked by the *entry_func* callback "
266
266
"passed to :c:func:`rl_completion_matches` in the underlying library. The "
267
267
"*text* string comes from the first parameter to the :c:data:"
268
268
"`rl_attempted_completion_function` callback of the underlying library."
269
269
msgstr ""
270
270
271
- #: ../../library/readline.rst:245
271
+ #: ../../library/readline.rst:247
272
272
msgid ""
273
273
"Get the completer function, or ``None`` if no completer function has been "
274
274
"set."
275
275
msgstr ""
276
276
277
- #: ../../library/readline.rst:250
277
+ #: ../../library/readline.rst:252
278
278
msgid ""
279
279
"Get the type of completion being attempted. This returns the :c:data:"
280
280
"`rl_completion_type` variable in the underlying library as an integer."
281
281
msgstr ""
282
282
283
- #: ../../library/readline.rst:258
283
+ #: ../../library/readline.rst:260
284
284
msgid ""
285
285
"Get the beginning or ending index of the completion scope. These indexes are "
286
286
"the *start* and *end* arguments passed to the :c:data:"
@@ -290,15 +290,15 @@ msgid ""
290
290
"differently than libreadline."
291
291
msgstr ""
292
292
293
- #: ../../library/readline.rst:269
293
+ #: ../../library/readline.rst:271
294
294
msgid ""
295
295
"Set or get the word delimiters for completion. These determine the start of "
296
296
"the word to be considered for completion (the completion scope). These "
297
297
"functions access the :c:data:`rl_completer_word_break_characters` variable "
298
298
"in the underlying library."
299
299
msgstr ""
300
300
301
- #: ../../library/readline.rst:277
301
+ #: ../../library/readline.rst:279
302
302
msgid ""
303
303
"Set or remove the completion display function. If *function* is specified, "
304
304
"it will be used as the new completion display function; if omitted or "
@@ -309,11 +309,11 @@ msgid ""
309
309
"each time matches need to be displayed."
310
310
msgstr ""
311
311
312
- #: ../../library/readline.rst:290
312
+ #: ../../library/readline.rst:292
313
313
msgid "Example"
314
314
msgstr "範例"
315
315
316
- #: ../../library/readline.rst:292
316
+ #: ../../library/readline.rst:294
317
317
msgid ""
318
318
"The following example demonstrates how to use the :mod:`readline` module's "
319
319
"history reading and writing functions to automatically load and save a "
@@ -322,19 +322,19 @@ msgid ""
322
322
"sessions from the user's :envvar:`PYTHONSTARTUP` file. ::"
323
323
msgstr ""
324
324
325
- #: ../../library/readline.rst:312
325
+ #: ../../library/readline.rst:314
326
326
msgid ""
327
327
"This code is actually automatically run when Python is run in :ref:"
328
328
"`interactive mode <tut-interactive>` (see :ref:`rlcompleter-config`)."
329
329
msgstr ""
330
330
331
- #: ../../library/readline.rst:315
331
+ #: ../../library/readline.rst:317
332
332
msgid ""
333
333
"The following example achieves the same goal but supports concurrent "
334
334
"interactive sessions, by only appending the new history. ::"
335
335
msgstr ""
336
336
337
- #: ../../library/readline.rst:336
337
+ #: ../../library/readline.rst:338
338
338
msgid ""
339
339
"The following example extends the :class:`code.InteractiveConsole` class to "
340
340
"support history save/restore. ::"