@@ -19,7 +19,7 @@ msgid ""
19
19
msgstr ""
20
20
"Project-Id-Version :Python 3.7\n "
21
21
"Report-Msgid-Bugs-To :\n "
22
- "POT-Creation-Date :2023-05-18 02:26 +0000\n "
22
+ "POT-Creation-Date :2023-05-19 14:37 +0000\n "
23
23
"PO-Revision-Date :2019-09-01 03:42+0000\n "
24
24
"Last-Translator :Freesand Leo <yuqinju@163.com>, 2023\n "
25
25
"Language-Team :Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n "
@@ -859,7 +859,7 @@ msgstr ""
859
859
860
860
#: /home/runner/work/docspush-transifex/docspush-transifex/cpython/Doc/c-api/init.rst:671
861
861
msgid "Releasing the GIL from extension code"
862
- msgstr ""
862
+ msgstr "从扩展扩展代码中释放 GIL "
863
863
864
864
#: /home/runner/work/docspush-transifex/docspush-transifex/cpython/Doc/c-api/init.rst:673
865
865
msgid ""
@@ -869,14 +869,16 @@ msgstr "大多数操作 :term:`GIL` 的扩展代码具有以下简单结构:"
869
869
870
870
#: /home/runner/work/docspush-transifex/docspush-transifex/cpython/Doc/c-api/init.rst:682
871
871
msgid "This is so common that a pair of macros exists to simplify it::"
872
- msgstr ""
872
+ msgstr "这是如此常用因此增加了一对宏来简化它:: "
873
873
874
874
#: /home/runner/work/docspush-transifex/docspush-transifex/cpython/Doc/c-api/init.rst:692
875
875
msgid ""
876
876
"The :c:macro:`Py_BEGIN_ALLOW_THREADS` macro opens a new block and declares a"
877
877
" hidden local variable; the :c:macro:`Py_END_ALLOW_THREADS` macro closes the"
878
878
" block."
879
879
msgstr ""
880
+ ":c:macro:`Py_BEGIN_ALLOW_THREADS` "
881
+ "宏将打开一个新块并声明一个隐藏的局部变量;:c:macro:`Py_END_ALLOW_THREADS` 宏将关闭这个块。"
880
882
881
883
#: /home/runner/work/docspush-transifex/docspush-transifex/cpython/Doc/c-api/init.rst:696
882
884
msgid "The block above expands to the following code::"
@@ -1176,17 +1178,21 @@ msgid ""
1176
1178
"This macro expands to ``PyEval_RestoreThread(_save);``: it is equivalent to "
1177
1179
":c:macro:`Py_END_ALLOW_THREADS` without the closing brace."
1178
1180
msgstr ""
1181
+ "这个宏扩展为 ``PyEval_RestoreThread(_save);``: 它等价于没有关闭花括号的 "
1182
+ ":c:macro:`Py_END_ALLOW_THREADS`。"
1179
1183
1180
1184
#: /home/runner/work/docspush-transifex/docspush-transifex/cpython/Doc/c-api/init.rst:980
1181
1185
msgid ""
1182
1186
"This macro expands to ``_save = PyEval_SaveThread();``: it is equivalent to "
1183
1187
":c:macro:`Py_BEGIN_ALLOW_THREADS` without the opening brace and variable "
1184
1188
"declaration."
1185
1189
msgstr ""
1190
+ "这个宏扩展为 ``_save = PyEval_SaveThread();``: 它等价于没有开始花括号和变量声明的 "
1191
+ ":c:macro:`Py_BEGIN_ALLOW_THREADS`。"
1186
1192
1187
1193
#: /home/runner/work/docspush-transifex/docspush-transifex/cpython/Doc/c-api/init.rst:986
1188
1194
msgid "Low-level API"
1189
- msgstr ""
1195
+ msgstr "底层级 API "
1190
1196
1191
1197
#: /home/runner/work/docspush-transifex/docspush-transifex/cpython/Doc/c-api/init.rst:988
1192
1198
msgid ""