3
3
# This file is distributed under the same license as the Python package.
4
4
#
5
5
# Translators:
6
+ # Weilin Du, 2025
6
7
msgid ""
7
8
msgstr ""
8
9
"Project-Id-Version :Python 3.13\n "
9
10
"Report-Msgid-Bugs-To :\n "
10
11
"POT-Creation-Date :2022-07-06 00:17+0000\n "
11
- "PO-Revision-Date :2015-12-09 17:51+0000 \n "
12
+ "PO-Revision-Date :2025-06-28 10:57+0800 \n "
12
13
"Last-Translator :Liang-Bo Wang <me@liang2.tw>\n "
13
14
"Language-Team :Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
14
15
"tw)\n "
@@ -17,6 +18,7 @@ msgstr ""
17
18
"Content-Type :text/plain; charset=UTF-8\n "
18
19
"Content-Transfer-Encoding :8bit\n "
19
20
"Plural-Forms :nplurals=1; plural=0;\n "
21
+ "X-Generator :Poedit 3.0\n "
20
22
21
23
#: ../../library/custominterp.rst:5
22
24
msgid "Custom Python Interpreters"
@@ -30,6 +32,9 @@ msgid ""
30
32
"look at the :mod:`code` module. (The :mod:`codeop` module is lower-level, "
31
33
"used to support compiling a possibly incomplete chunk of Python code.)"
32
34
msgstr ""
35
+ "本章介紹的模塊可用於編寫類似於Python交互式直譯器的介面。如果您需要一個在"
36
+ "Python語言基礎上支援某些特殊功能的直譯器,可以參考 :mod:`code` 模塊。("
37
+ " :mod:`codeop` 模塊屬於底層工具,用於支持編譯可能不完整的Python代碼片段。)"
33
38
34
39
#: ../../library/custominterp.rst:13
35
40
msgid "The full list of modules described in this chapter is:"