7
7
msgstr ""
8
8
"Project-Id-Version : Python 3.12\n "
9
9
"Report-Msgid-Bugs-To : \n "
10
- "POT-Creation-Date : 2023-07-17 17:39+0800 \n "
10
+ "POT-Creation-Date : 2023-09-13 00:03+0000 \n "
11
11
"PO-Revision-Date : 2018-05-23 16:16+0000\n "
12
12
"Last-Translator : Adrian Liaw <adrianliaw2000@gmail.com>\n "
13
13
"Language-Team : Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
@@ -357,25 +357,17 @@ msgid ""
357
357
msgstr ""
358
358
359
359
#: ../../library/zipapp.rst:284
360
- msgid ""
361
- "Optionally, delete the ``.dist-info`` directories created by pip in the "
362
- "``myapp`` directory. These hold metadata for pip to manage the packages, and "
363
- "as you won't be making any further use of pip they aren't required - "
364
- "although it won't do any harm if you leave them."
365
- msgstr ""
366
-
367
- #: ../../library/zipapp.rst:289
368
360
msgid "Package the application using:"
369
361
msgstr ""
370
362
371
- #: ../../library/zipapp.rst:295
363
+ #: ../../library/zipapp.rst:290
372
364
msgid ""
373
365
"This will produce a standalone executable, which can be run on any machine "
374
366
"with the appropriate interpreter available. See :ref:`zipapp-specifying-the-"
375
367
"interpreter` for details. It can be shipped to users as a single file."
376
368
msgstr ""
377
369
378
- #: ../../library/zipapp.rst:299
370
+ #: ../../library/zipapp.rst:294
379
371
msgid ""
380
372
"On Unix, the ``myapp.pyz`` file is executable as it stands. You can rename "
381
373
"the file to remove the ``.pyz`` extension if you prefer a \" plain\" command "
@@ -384,11 +376,11 @@ msgid ""
384
376
"extensions when installed."
385
377
msgstr ""
386
378
387
- #: ../../library/zipapp.rst:307
379
+ #: ../../library/zipapp.rst:302
388
380
msgid "Caveats"
389
381
msgstr ""
390
382
391
- #: ../../library/zipapp.rst:309
383
+ #: ../../library/zipapp.rst:304
392
384
msgid ""
393
385
"If your application depends on a package that includes a C extension, that "
394
386
"package cannot be run from a zip file (this is an OS limitation, as "
@@ -402,11 +394,11 @@ msgid ""
402
394
"based on the user's machine)."
403
395
msgstr ""
404
396
405
- #: ../../library/zipapp.rst:321
397
+ #: ../../library/zipapp.rst:316
406
398
msgid "The Python Zip Application Archive Format"
407
399
msgstr ""
408
400
409
- #: ../../library/zipapp.rst:323
401
+ #: ../../library/zipapp.rst:318
410
402
msgid ""
411
403
"Python has been able to execute zip files which contain a ``__main__.py`` "
412
404
"file since version 2.6. In order to be executed by Python, an application "
@@ -417,18 +409,18 @@ msgid ""
417
409
"the zip file."
418
410
msgstr ""
419
411
420
- #: ../../library/zipapp.rst:330
412
+ #: ../../library/zipapp.rst:325
421
413
msgid ""
422
414
"The zip file format allows arbitrary data to be prepended to a zip file. "
423
415
"The zip application format uses this ability to prepend a standard POSIX "
424
416
"\" shebang\" line to the file (``#!/path/to/interpreter``)."
425
417
msgstr ""
426
418
427
- #: ../../library/zipapp.rst:334
419
+ #: ../../library/zipapp.rst:329
428
420
msgid "Formally, the Python zip application format is therefore:"
429
421
msgstr ""
430
422
431
- #: ../../library/zipapp.rst:336
423
+ #: ../../library/zipapp.rst:331
432
424
msgid ""
433
425
"An optional shebang line, containing the characters ``b'#!'`` followed by an "
434
426
"interpreter name, and then a newline (``b'\\ n'``) character. The "
@@ -438,21 +430,21 @@ msgid ""
438
430
"POSIX."
439
431
msgstr ""
440
432
441
- #: ../../library/zipapp.rst:341
433
+ #: ../../library/zipapp.rst:336
442
434
msgid ""
443
435
"Standard zipfile data, as generated by the :mod:`zipfile` module. The "
444
436
"zipfile content *must* include a file called ``__main__.py`` (which must be "
445
437
"in the \" root\" of the zipfile - i.e., it cannot be in a subdirectory). The "
446
438
"zipfile data can be compressed or uncompressed."
447
439
msgstr ""
448
440
449
- #: ../../library/zipapp.rst:346
441
+ #: ../../library/zipapp.rst:341
450
442
msgid ""
451
443
"If an application archive has a shebang line, it may have the executable bit "
452
444
"set on POSIX systems, to allow it to be executed directly."
453
445
msgstr ""
454
446
455
- #: ../../library/zipapp.rst:349
447
+ #: ../../library/zipapp.rst:344
456
448
msgid ""
457
449
"There is no requirement that the tools in this module are used to create "
458
450
"application archives - the module is a convenience, but archives in the "
0 commit comments