File tree Expand file tree Collapse file tree 4 files changed +10
-11
lines changed Expand file tree Collapse file tree 4 files changed +10
-11
lines changed Original file line number Diff line number Diff line change 77msgstr ""
88"Project-Id-Version : Python 3.13\n "
99"Report-Msgid-Bugs-To : \n "
10- "POT-Creation-Date : 2024-09-30 09:19 +0000\n "
10+ "POT-Creation-Date : 2024-10-14 00:14 +0000\n "
1111"PO-Revision-Date : 2018-05-23 14:06+0000\n "
1212"Last-Translator : Adrian Liaw <adrianliaw2000@gmail.com>\n "
1313"Language-Team : Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
@@ -624,13 +624,13 @@ msgid ""
624624"is subject to change."
625625msgstr ""
626626
627- #: ../../c-api/long.rst:543
627+ #: ../../c-api/long.rst:546
628628msgid ""
629629"If *op* is compact, as determined by :c:func:`PyUnstable_Long_IsCompact`, "
630630"return its value."
631631msgstr ""
632632
633- #: ../../c-api/long.rst:546
633+ #: ../../c-api/long.rst:549
634634msgid "Otherwise, the return value is undefined."
635635msgstr ""
636636
Original file line number Diff line number Diff line change 66msgstr ""
77"Project-Id-Version : Python 3.13\n "
88"Report-Msgid-Bugs-To : \n "
9- "POT-Creation-Date : 2024-10-10 00:13 +0000\n "
9+ "POT-Creation-Date : 2024-10-14 00:14 +0000\n "
1010"PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
1111"Last-Translator : FULL NAME <EMAIL@ADDRESS>\n "
1212"Language-Team : LANGUAGE <LL@li.org>\n "
@@ -16,12 +16,10 @@ msgstr ""
1616"Content-Transfer-Encoding : 8bit\n "
1717
1818#: ../../deprecations/pending-removal-in-3.15.rst:2
19- #: ../../deprecations/c-api-pending-removal-in-3.15.rst:2
2019msgid "Pending Removal in Python 3.15"
2120msgstr "Python 3.15 中待移除的項目"
2221
2322#: ../../deprecations/pending-removal-in-3.15.rst:4
24- #: ../../deprecations/pending-removal-in-3.14.rst:4
2523msgid "The import system:"
2624msgstr "引入系統 (import system):"
2725
Original file line number Diff line number Diff line change 88msgstr ""
99"Project-Id-Version : Python 3.13\n "
1010"Report-Msgid-Bugs-To : \n "
11- "POT-Creation-Date : 2024-10-10 00:13 +0000\n "
11+ "POT-Creation-Date : 2024-10-14 00:14 +0000\n "
1212"PO-Revision-Date : 2023-07-02 22:47+0800\n "
1313"Last-Translator : Matt Wang <mattwang44@gmail.com>\n "
1414"Language-Team : Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
@@ -1338,10 +1338,11 @@ msgstr ""
13381338"O 時,GIL 總是會被解除。"
13391339
13401340#: ../../glossary.rst:586
1341+ #, fuzzy
13411342msgid ""
13421343"As of Python 3.13, the GIL can be disabled using the :option:`--disable-gil` "
13431344"build configuration. After building Python with this option, code must be "
1344- "run with :option:`-X gil 0 <-X>` or after setting the :envvar:`PYTHON_GIL=0 "
1345+ "run with :option:`-X gil= 0 <-X>` or after setting the :envvar:`PYTHON_GIL=0 "
13451346"<PYTHON_GIL>` environment variable. This feature enables improved "
13461347"performance for multi-threaded applications and makes it easier to use multi-"
13471348"core CPUs efficiently. For more details, see :pep:`703`."
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.13\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2024-10-12 01:08 +0000\n "
14+ "POT-Creation-Date : 2024-10-14 00:14 +0000\n "
1515"PO-Revision-Date : 2022-07-24 14:52+0800\n "
1616"Last-Translator : Steven Hsu <hsuhaochun@gmail.com>\n "
1717"Language-Team : Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
@@ -901,8 +901,8 @@ msgstr "我們可以建立一個函式來產生費式數列到任何一個上界
901901
902902#: ../../tutorial/controlflow.rst:464
903903msgid ""
904- ">>> def fib(n): # write Fibonacci series up to n\n"
905- "... \"\"\" Print a Fibonacci series up to n.\"\"\" \n"
904+ ">>> def fib(n): # write Fibonacci series less than n\n"
905+ "... \"\"\" Print a Fibonacci series less than n.\"\"\" \n"
906906"... a, b = 0, 1\n"
907907"... while a < n:\n"
908908"... print(a, end=' ')\n"
You can’t perform that action at this time.
0 commit comments