5
5
msgstr ""
6
6
"Project-Id-Version : Python 3.13\n "
7
7
"Report-Msgid-Bugs-To : \n "
8
- "POT-Creation-Date : 2024-11-05 00:13+0000\n "
8
+ "POT-Creation-Date : 2025-02-12 00:13+0000\n "
9
9
"PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
10
10
"Last-Translator : FULL NAME <EMAIL@ADDRESS>\n "
11
11
"Language-Team : Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
@@ -79,10 +79,19 @@ msgstr ""
79
79
"cgi` 旗標已被棄用。"
80
80
81
81
#: ../../deprecations/pending-removal-in-3.15.rst:32
82
+ #, fuzzy
83
+ msgid ":mod:`importlib`:"
84
+ msgstr ":mod:`pathlib`:"
85
+
86
+ #: ../../deprecations/pending-removal-in-3.15.rst:34
87
+ msgid "``load_module()`` method: use ``exec_module()`` instead."
88
+ msgstr ""
89
+
90
+ #: ../../deprecations/pending-removal-in-3.15.rst:36
82
91
msgid ":class:`locale`:"
83
92
msgstr ":class:`locale`:"
84
93
85
- #: ../../deprecations/pending-removal-in-3.15.rst:34
94
+ #: ../../deprecations/pending-removal-in-3.15.rst:38
86
95
msgid ""
87
96
"The :func:`~locale.getdefaultlocale` function has been deprecated since "
88
97
"Python 3.11. Its removal was originally planned for Python 3.13 (:gh:"
@@ -95,23 +104,23 @@ msgstr ""
95
104
"`~locale.getlocale`、:func:`~locale.setlocale` 和 :func:`~locale."
96
105
"getencoding`。 (由 Hugo van Kemenade 於 :gh:`111187` 貢獻。)"
97
106
98
- #: ../../deprecations/pending-removal-in-3.15.rst:42
107
+ #: ../../deprecations/pending-removal-in-3.15.rst:46
99
108
msgid ":mod:`pathlib`:"
100
109
msgstr ":mod:`pathlib`:"
101
110
102
- #: ../../deprecations/pending-removal-in-3.15.rst:44
111
+ #: ../../deprecations/pending-removal-in-3.15.rst:48
103
112
msgid ""
104
113
":meth:`.PurePath.is_reserved` has been deprecated since Python 3.13. Use :"
105
114
"func:`os.path.isreserved` to detect reserved paths on Windows."
106
115
msgstr ""
107
116
":meth:`.PurePath.is_reserved` 已自 Python 3.13 被棄用。請用 :func:`os.path."
108
117
"isreserved` 來偵測 Windows 上的保留路徑。"
109
118
110
- #: ../../deprecations/pending-removal-in-3.15.rst:48
119
+ #: ../../deprecations/pending-removal-in-3.15.rst:52
111
120
msgid ":mod:`platform`:"
112
121
msgstr ":mod:`platform`:"
113
122
114
- #: ../../deprecations/pending-removal-in-3.15.rst:50
123
+ #: ../../deprecations/pending-removal-in-3.15.rst:54
115
124
msgid ""
116
125
":func:`~platform.java_ver` has been deprecated since Python 3.13. This "
117
126
"function is only useful for Jython support, has a confusing API, and is "
@@ -120,11 +129,11 @@ msgstr ""
120
129
"自 Python 3.13 起,:func:`~platform.java_ver` 已被棄用。此函式僅對 Jython 支"
121
130
"援有用,具有令人困惑的 API,基本上未經測試。"
122
131
123
- #: ../../deprecations/pending-removal-in-3.15.rst:54
132
+ #: ../../deprecations/pending-removal-in-3.15.rst:58
124
133
msgid ":mod:`threading`:"
125
134
msgstr ":mod:`threading`:"
126
135
127
- #: ../../deprecations/pending-removal-in-3.15.rst:56
136
+ #: ../../deprecations/pending-removal-in-3.15.rst:60
128
137
msgid ""
129
138
":func:`~threading.RLock` will take no arguments in Python 3.15. Passing any "
130
139
"arguments has been deprecated since Python 3.14, as the Python version does "
@@ -135,11 +144,11 @@ msgstr ""
135
144
"起,傳遞任何引數的用法已被棄用,因為 Python 版本不允許任何引數,但 C 版本允許"
136
145
"任意數量的位置或關鍵字引數,並忽略每個引數。"
137
146
138
- #: ../../deprecations/pending-removal-in-3.15.rst:62
147
+ #: ../../deprecations/pending-removal-in-3.15.rst:66
139
148
msgid ":mod:`types`:"
140
149
msgstr ":mod:`types`:"
141
150
142
- #: ../../deprecations/pending-removal-in-3.15.rst:64
151
+ #: ../../deprecations/pending-removal-in-3.15.rst:68
143
152
msgid ""
144
153
":class:`types.CodeType`: Accessing :attr:`~codeobject.co_lnotab` was "
145
154
"deprecated in :pep:`626` since 3.10 and was planned to be removed in 3.12, "
@@ -151,11 +160,11 @@ msgstr ""
151
160
"exc:`DeprecationWarning`。可能在 3.15 中移除。(由 Nikita Sobolev 於 :gh:"
152
161
"`101866` 貢獻。)"
153
162
154
- #: ../../deprecations/pending-removal-in-3.15.rst:71
163
+ #: ../../deprecations/pending-removal-in-3.15.rst:75
155
164
msgid ":mod:`typing`:"
156
165
msgstr ":mod:`typing`:"
157
166
158
- #: ../../deprecations/pending-removal-in-3.15.rst:73
167
+ #: ../../deprecations/pending-removal-in-3.15.rst:77
159
168
msgid ""
160
169
"The undocumented keyword argument syntax for creating :class:`~typing."
161
170
"NamedTuple` classes (e.g. ``Point = NamedTuple(\" Point\" , x=int, y=int)``) "
@@ -166,7 +175,7 @@ msgstr ""
166
175
"(``Point = NamedTuple(\" Point\" , x=int, y=int)``) 已自 Python 3.13 棄用。請改"
167
176
"用基於類別的語法或函式語法 (functional syntax)。"
168
177
169
- #: ../../deprecations/pending-removal-in-3.15.rst:79
178
+ #: ../../deprecations/pending-removal-in-3.15.rst:83
170
179
msgid ""
171
180
"The :func:`typing.no_type_check_decorator` decorator function has been "
172
181
"deprecated since Python 3.13. After eight years in the :mod:`typing` module, "
@@ -176,11 +185,11 @@ msgstr ""
176
185
"用。在 :mod:`typing` 模組中使用了八年之後,它尚未得到任何主要型別檢查器的支"
177
186
"援。"
178
187
179
- #: ../../deprecations/pending-removal-in-3.15.rst:84
188
+ #: ../../deprecations/pending-removal-in-3.15.rst:88
180
189
msgid ":mod:`wave`:"
181
190
msgstr ":mod:`wave`:"
182
191
183
- #: ../../deprecations/pending-removal-in-3.15.rst:86
192
+ #: ../../deprecations/pending-removal-in-3.15.rst:90
184
193
msgid ""
185
194
"The :meth:`~wave.Wave_read.getmark`, :meth:`!setmark`, and :meth:`~wave."
186
195
"Wave_read.getmarkers` methods of the :class:`~wave.Wave_read` and :class:"
0 commit comments