-
-
Notifications
You must be signed in to change notification settings - Fork 224
Expand file tree
/
Copy pathabstract.po
More file actions
48 lines (45 loc) · 1.88 KB
/
abstract.po
File metadata and controls
48 lines (45 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001-2022, Python Software Foundation
# This file is distributed under the same license as the Python package.
#
# Translators:
# aminzai <lagunawang@gmail.com>, 2017
# Matt Wang <mattwang44@gmail.com>, 2021
#
msgid ""
msgstr ""
"Project-Id-Version: Python 3.13\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-26 18:54+0800\n"
"PO-Revision-Date: 2021-12-09 21:20+0800\n"
"Last-Translator: Matt Wang <mattwang44@gmail.com>\n"
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
"tw)\n"
"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Poedit 3.0\n"
#: ../../c-api/abstract.rst:7
msgid "Abstract Objects Layer"
msgstr "抽象物件層 (Abstract Objects Layer)"
#: ../../c-api/abstract.rst:9
msgid ""
"The functions in this chapter interact with Python objects regardless of "
"their type, or with wide classes of object types (e.g. all numerical types, "
"or all sequence types). When used on object types for which they do not "
"apply, they will raise a Python exception."
msgstr ""
"本章中的函式與 Python 物件相互作用,無論其型別、或具有廣泛類別的物件型別(例"
"如所有數值型別或所有序列型別)。當使用於不適用的物件型別時,他們會引發一個 "
"Python 異常 (exception)。"
#: ../../c-api/abstract.rst:14
msgid ""
"It is not possible to use these functions on objects that are not properly "
"initialized, such as a list object that has been created by :c:func:"
"`PyList_New`, but whose items have not been set to some non-\\ ``NULL`` "
"value yet."
msgstr ""
"這些函式是不可能用於未正確初始化的物件(例如一個由 :c:func:`PyList_New` 建立"
"的 list 物件),而其中的項目沒有被設為一些非 ``NULL`` 的值。"