3
3
# This file is distributed under the same license as the Python package.
4
4
#
5
5
# Translators:
6
+ # Matt Wang <mattwang44@gmail.com>, 2022
6
7
msgid ""
7
8
msgstr ""
8
9
"Project-Id-Version : Python 3.11\n "
9
10
"Report-Msgid-Bugs-To : \n "
10
11
"POT-Creation-Date : 2020-06-20 18:08+0800\n "
11
- "PO-Revision-Date : 2017-09-22 18:26+0000 \n "
12
- "Last-Translator : Liang-Bo Wang <me@liang2.tw >\n "
12
+ "PO-Revision-Date : 2022-11-13 20:37+0800 \n "
13
+ "Last-Translator : Matt Wang <mattwang44@gmail.com >\n "
13
14
"Language-Team : Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
14
15
"tw)\n "
15
16
"Language : zh_TW\n "
16
17
"MIME-Version : 1.0\n "
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.2\n "
20
22
21
23
#: ../../c-api/concrete.rst:8
22
24
msgid "Concrete Objects Layer"
23
- msgstr ""
25
+ msgstr "具體物件層 "
24
26
25
27
#: ../../c-api/concrete.rst:10
26
28
msgid ""
@@ -31,6 +33,10 @@ msgid ""
31
33
"object is a dictionary, use :c:func:`PyDict_Check`. The chapter is "
32
34
"structured like the \" family tree\" of Python object types."
33
35
msgstr ""
36
+ "此章節列出的函式僅能接受某些特定的 Python 物件型別,將錯誤型別的物件傳遞給它"
37
+ "們並不是什麼好事,如果你從 Python 程式當中接收到一個不確定是否為正確型別的物"
38
+ "件,那麼請一定要先做型別檢查。例如使用 :c:func:`PyDict_Check` 來確認一個物件"
39
+ "是否為字典。本章結構類似於 Python 物件型別的\" 族譜圖 (family tree)\" 。"
34
40
35
41
#: ../../c-api/concrete.rst:19
36
42
msgid ""
@@ -40,6 +46,8 @@ msgid ""
40
46
"can cause memory access violations and immediate termination of the "
41
47
"interpreter."
42
48
msgstr ""
49
+ "雖然本章所述之函式仔細地檢查了傳入物件的型別,但大多並無檢查是否為 `NULL``。"
50
+ "允許 ``NULL`` 的傳入可能造成記憶體的不合法存取和直譯器的立即中止。"
43
51
44
52
#: ../../c-api/concrete.rst:28
45
53
msgid "Fundamental Objects"
@@ -48,7 +56,7 @@ msgstr "基礎物件"
48
56
#: ../../c-api/concrete.rst:30
49
57
msgid ""
50
58
"This section describes Python type objects and the singleton object ``None``."
51
- msgstr ""
59
+ msgstr "此段落描述 Python 型別物件與單例 (singleton) 物件 ``None``。 "
52
60
53
61
#: ../../c-api/concrete.rst:41
54
62
msgid "Numeric Objects"
@@ -64,6 +72,8 @@ msgid ""
64
72
"chapter; this section deals with the specific kinds of sequence objects that "
65
73
"are intrinsic to the Python language."
66
74
msgstr ""
75
+ "序列物件的一般操作在前一章節討論過了;此段落將討論 Python 語言特有的特定型別"
76
+ "序列物件。"
67
77
68
78
#: ../../c-api/concrete.rst:78
69
79
msgid "Container Objects"
0 commit comments