We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
2 parents2ebd2b9 +9b1f154 commit5b45117Copy full SHA for 5b45117
c-api/apiabiversion.po
@@ -31,7 +31,7 @@ msgid ""
31
"version used at **run time**."
32
msgstr""
33
"CPython 透過以下巨集 (macro) 公開其版本號。請注意,對應到的是\\ **建置 "
34
-"(built)** 所用到的版本,並不一定是\\ **運行時期 (run time)** 所使用的版本。"
+"(built)** 所用到的版本,並不一定是\\ **執行環境 (run time)** 所使用的版本。"
35
36
#:../../c-api/apiabiversion.rst:13
37
msgid""
c-api/file.po
@@ -124,8 +124,8 @@ msgid ""
124
"functions may be called from different runtimes, this pointer should not "
125
"refer directly to Python state."
126
127
-"*userData* 指標被傳遞到掛鉤函式 (hook function) 中。由於可能會從不同的運行時"
128
-"間 (runtime) 呼叫掛鉤函式,因此該指標不應直接指向 Python 狀態。"
+"*userData* 指標被傳遞到掛鉤函式 (hook function) 中。由於可能會從不同的執行環境"
+" (runtime) 呼叫掛鉤函式,因此該指標不應直接指向 Python 狀態。"
129
130
#:../../c-api/file.rst:75
131
c-api/intro.po
@@ -1002,7 +1002,7 @@ msgid ""
1002
"of overhead to the runtime so they are not enabled by default."
1003
1004
"Python 可以在建置時使用多個巨集來啟用對直譯器和擴充模組的額外檢查,這些檢查往"
1005
-"往會在運行時增加大量開銷 (overhead),因此預設情況下不啟用它們。"
+"往會在執行環境 (runtime) 增加大量開銷 (overhead),因此預設情況下不啟用它們。"
1006
1007
#:../../c-api/intro.rst:778
1008
extending/index.po
@@ -38,7 +38,7 @@ msgstr ""
38
"功能。那些模組不僅可以定義新的函式,也可以定義新的物件型別及其方法 (method)。"
39
"文件內容也會描述如何將 Python 直譯器嵌入另一個應用程式中,做為一種擴充語言 "
40
"(extension language) 使用。最後,它會展示如何編譯及連結擴充模組,使那些模組可"
41
-"以動態地(在運行時)被載入到直譯器中,前提是底層作業系統有支援這個功能。"
+"以動態地(在執行環境)被載入到直譯器中,前提是底層作業系統有支援這個功能。"
42
43
#:../../extending/index.rst:15
44
faq/extending.po
@@ -331,7 +331,7 @@ msgid ""
331
"work for C++ objects."
332
333
"根據你的要求,有多種方法。要手動執行此操作,請先閱讀 :ref:`「擴充和嵌入」說明"
334
-"檔案 <extending-index>`。意識到對於 Python運行時系統,C 和 C++ 之間並沒有太"
+"檔案 <extending-index>`。意識到對於 Python執行環境 (run-time) 系統,C 和 C++ 之間並沒有太"
335
"多區別——因此圍繞 C 結構(指標)型別構建新 Python 型別的策略也適用於 C++ 物"
336
"件。"
337
faq/gui.po
@@ -89,7 +89,7 @@ msgid ""
89
"point to them at run-time using the :envvar:`TCL_LIBRARY` and :envvar:"
90
"`TK_LIBRARY` environment variables."
91
92
-"將應用程式與 Tcl 和 Tk 函式庫一併發送是一種解決方法,並在運行時使用 :envvar:"
+"將應用程式與 Tcl 和 Tk 函式庫一併發送是一種解決方法,並在執行環境 (run-time) 使用 :envvar:"
93
"`TCL_LIBRARY` 和 :envvar:`TK_LIBRARY` 環境變數來指向該函式庫。"
94
95
#:../../faq/gui.rst:49
faq/programming.po
@@ -1798,7 +1798,7 @@ msgid ""
1798
"quadratic in the total string length."
1799
1800
":class:`str` 和 :class:`bytes` 物件是不可變的,因此將多個字串連接在一起效率低"
1801
-"下,因為每次連接都會建立一個新物件。在一般情況下,總運行時成本是總字串長度的"
+"下,因為每次連接都會建立一個新物件。在一般情況下,總執行環境 (runtime) 成本是總字串長度的"
1802
"二次方。"
1803
1804
#:../../faq/programming.rst:1138
faq/windows.po
@@ -290,7 +290,7 @@ msgid ""
290
"merely defines symbols for the linker.)"
291
292
"你可以透過兩種不同的方式連結到 Python。載入時連結 (load-time linking) 表示要"
293
-"連結到 :file:`python{NN}.lib`,而運行時連結 (run-time linking) 表示要連結到 :"
+"連結到 :file:`python{NN}.lib`,而執行環境連結 (run-time linking) 表示要連結到 :"
294
"file:`python{NN}.dll`。(一般註解::file:`python{NN}.lib` 是 :file:"
295
"`python{NN}.dll` 相對應的所謂\"import lib\"。它只會為鏈接器定義符號。)"
296
@@ -304,7 +304,7 @@ msgid ""
304
"these pointers transparent to any C code that calls routines in Python's C "
305
"API."
306
307
-"運行時連結大大簡化了連結選項;所有事情都會發生在運行時間。你的程式碼必須使用 "
+"執行環境連結大大簡化了連結選項;所有事情都會發生在執行環境。你的程式碼必須使用 "
308
"Windows ``LoadLibraryEx()`` 常式 (routine) 來載入 :file:`python{NN}.dll`。該"
309
"程式碼也必須用 Windows ``GetProcAddress()`` 常式所取得的指標,來使用 :file:"
310
"`python{NN}.dll` 中的(即為 Python C API 的)存取常式和資料。對於任何呼叫 "
glossary.po
@@ -128,7 +128,7 @@ msgid ""
"in the :attr:`__annotations__` special attribute of modules, classes, and "
"functions, respectively."
-"在運行時 (runtime),區域變數的註釋無法被存取,但全域變數、class 屬性和函式的"
+"在執行環境 (runtime),區域變數的註釋無法被存取,但全域變數、class 屬性和函式的"
132
"註解,會分別被儲存在模組、class 和函式的 :attr:`__annotations__` 特殊屬性中。"
133
134
#:../../glossary.rst:58
library/collections.po
@@ -613,7 +613,7 @@ msgid ""
613
"To enumerate all distinct multisets of a given size over a given set of "
614
"elements, see :func:`itertools.combinations_with_replacement`::"
615
616
-"若要根據給定的元素集合來枚舉出所有不重複且擁有指定元素數量的 multiset,請見 :"
+"若要根據給定的元素集合來列舉出所有不重複且擁有指定元素數量的 multiset,請見 :"
617
"func:`itertools.combinations_with_replacement`\\ :\n"
618
"\n"
619
"::"