7
7
msgstr ""
8
8
"Project-Id-Version : Python 3.10\n "
9
9
"Report-Msgid-Bugs-To : \n "
10
- "POT-Creation-Date : 2022-03-08 14:58 +0000\n "
10
+ "POT-Creation-Date : 2022-03-14 00:14 +0000\n "
11
11
"PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
12
12
"Last-Translator : FULL NAME <EMAIL@ADDRESS>\n "
13
13
"Language-Team : Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
@@ -263,41 +263,41 @@ msgid ""
263
263
"case of a namespace package) for top-level Python packages or modules::"
264
264
msgstr ""
265
265
266
- #: ../../library/importlib.metadata.rst:269
266
+ #: ../../library/importlib.metadata.rst:270
267
267
msgid "Distributions"
268
268
msgstr ""
269
269
270
- #: ../../library/importlib.metadata.rst:271
270
+ #: ../../library/importlib.metadata.rst:272
271
271
msgid ""
272
272
"While the above API is the most common and convenient usage, you can get all "
273
273
"of that information from the ``Distribution`` class. A ``Distribution`` is "
274
274
"an abstract object that represents the metadata for a Python package. You "
275
275
"can get the ``Distribution`` instance::"
276
276
msgstr ""
277
277
278
- #: ../../library/importlib.metadata.rst:279
278
+ #: ../../library/importlib.metadata.rst:280
279
279
msgid ""
280
280
"Thus, an alternative way to get the version number is through the "
281
281
"``Distribution`` instance::"
282
282
msgstr ""
283
283
284
- #: ../../library/importlib.metadata.rst:285
284
+ #: ../../library/importlib.metadata.rst:286
285
285
msgid ""
286
286
"There are all kinds of additional metadata available on the ``Distribution`` "
287
287
"instance::"
288
288
msgstr ""
289
289
290
- #: ../../library/importlib.metadata.rst:293
290
+ #: ../../library/importlib.metadata.rst:294
291
291
msgid ""
292
292
"The full set of available metadata is not described here. See :pep:`566` "
293
293
"for additional details."
294
294
msgstr ""
295
295
296
- #: ../../library/importlib.metadata.rst:298
296
+ #: ../../library/importlib.metadata.rst:299
297
297
msgid "Extending the search algorithm"
298
298
msgstr ""
299
299
300
- #: ../../library/importlib.metadata.rst:300
300
+ #: ../../library/importlib.metadata.rst:301
301
301
msgid ""
302
302
"Because package metadata is not available through :data:`sys.path` searches, "
303
303
"or package loaders directly, the metadata for a package is found through "
@@ -306,14 +306,14 @@ msgid ""
306
306
"path finders <meta path finder>` on :data:`sys.meta_path`."
307
307
msgstr ""
308
308
309
- #: ../../library/importlib.metadata.rst:306
309
+ #: ../../library/importlib.metadata.rst:307
310
310
msgid ""
311
311
"The default ``PathFinder`` for Python includes a hook that calls into "
312
312
"``importlib.metadata.MetadataPathFinder`` for finding distributions loaded "
313
313
"from typical file-system-based paths."
314
314
msgstr ""
315
315
316
- #: ../../library/importlib.metadata.rst:310
316
+ #: ../../library/importlib.metadata.rst:311
317
317
msgid ""<
8000
/span>
318
318
"The abstract class :py:class:`importlib.abc.MetaPathFinder` defines the "
319
319
"interface expected of finders by Python's import system. ``importlib."
@@ -323,14 +323,14 @@ msgid ""
323
323
"base class, which defines this abstract method::"
324
324
msgstr ""
325
325
326
- #: ../../library/importlib.metadata.rst:324
326
+ #: ../../library/importlib.metadata.rst:325
327
327
msgid ""
328
328
"The ``DistributionFinder.Context`` object provides ``.path`` and ``.name`` "
329
329
"properties indicating the path to search and name to match and may supply "
330
330
"other relevant context."
331
331
msgstr ""
332
332
333
- #: ../../library/importlib.metadata.rst:328
333
+ #: ../../library/importlib.metadata.rst:329
334
334
msgid ""
335
335
"What this means in practice is that to support finding distribution package "
336
336
"metadata in locations other than the file system, subclass ``Distribution`` "
0 commit comments