File tree 4 files changed +10
-9
lines changed
4 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 7
7
msgstr ""
8
8
"Project-Id-Version : Python 3.13\n "
9
9
"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 "
11
11
"PO-Revision-Date : 2018-05-23 14:06+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- "
@@ -624,13 +624,13 @@ msgid ""
624
624
"is subject to change."
625
625
msgstr ""
626
626
627
- #: ../../c-api/long.rst:543
627
+ #: ../../c-api/long.rst:546
628
628
msgid ""
629
629
"If *op* is compact, as determined by :c:func:`PyUnstable_Long_IsCompact`, "
630
630
"return its value."
631
631
msgstr ""
632
632
633
- #: ../../c-api/long.rst:546
633
+ #: ../../c-api/long.rst:549
634
634
msgid "Otherwise, the return value is undefined."
635
635
msgstr ""
636
636
Original file line number Diff line number Diff line change 7
7
msgstr ""
8
8
"Project-Id-Version : Python 3.13\n "
9
9
"Report-Msgid-Bugs-To : \n "
10
- "POT-Creation-Date : 2024-10-10 00:13 +0000\n "
10
+ "POT-Creation-Date : 2024-10-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 : LANGUAGE <LL@li.org>\n "
Original file line number Diff line number Diff line change 8
8
msgstr ""
9
9
"Project-Id-Version : Python 3.13\n "
10
10
"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 "
12
12
"PO-Revision-Date : 2023-07-02 22:47+0800\n "
13
13
"Last-Translator : Matt Wang <mattwang44@gmail.com>\n "
14
14
"Language-Team : Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
@@ -1338,10 +1338,11 @@ msgstr ""
1338
1338
"O 時,GIL 總是會被解除。"
1339
1339
1340
1340
#: ../../glossary.rst:586
1341
+ #, fuzzy
1341
1342
msgid ""
1342
1343
"As of Python 3.13, the GIL can be disabled using the :option:`--disable-gil` "
1343
1344
"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 "
1345
1346
"<PYTHON_GIL>` environment variable. This feature enables improved "
1346
1347
"performance for multi-threaded applications and makes it easier to use multi-"
1347
1348
"core CPUs efficiently. For more details, see :pep:`703`."
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ msgid ""
11
11
msgstr ""
12
12
"Project-Id-Version : Python 3.13\n "
13
13
"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 "
15
15
"PO-Revision-Date : 2022-07-24 14:52+0800\n "
16
16
"Last-Translator : Steven Hsu <hsuhaochun@gmail.com>\n "
17
17
"Language-Team : Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
@@ -901,8 +901,8 @@ msgstr "我們可以建立一個函式來產生費式數列到任何一個上界
901
901
902
902
#: ../../tutorial/controlflow.rst:464
903
903
msgid ""
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"
906
906
"... a, b = 0, 1\n"
907
907
"... while a < n:\n"
908
908
"... print(a, end=' ')\n"
You can’t perform that action at this time.
0 commit comments