From 512384ea078c432bd5f07609caf509d21d5297c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=BE=E5=9D=82=E7=A0=82=E7=B3=96=E6=B5=86?= <122478771+HisAtri@users.noreply.github.com> Date: Thu, 17 Oct 2024 09:28:46 +0800 Subject: [PATCH] =?UTF-8?q?[Typo]=E4=BF=AE=E6=AD=A3C=E6=89=A9=E5=B1=95?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E7=BF=BB=E8=AF=91=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 删除了原文中“不知为何编译失败了”的错误翻译。 - 强调关于C扩展接口特指CPython的部分,与英文原文一致。 --- extending/extending.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extending/extending.po b/extending/extending.po index b36d1f1cc..a559e1d95 100644 --- a/extending/extending.po +++ b/extending/extending.po @@ -70,7 +70,7 @@ msgid "" msgstr "" "C扩展接口特指CPython,扩展模块无法在其他Python实现上工作。在大多数情况下,应该避免写C扩展,来保持可移植性。举个例子,如果你的用例调用了C库或系统调用,你应该考虑使用" " :mod:`ctypes` 模块或 `cffi `_ " -"库,而不是自己写C代码。这些模块允许你写Python代码来接口C代码,而且可移植性更好。不知为何编译失败了。" +"库,而不是自己写C代码。这些模块允许你写Python代码来接口C代码,并且相较于编写和编译C扩展模块,该方法在不同Python实现之间具有更高的可移植性。" #: ../../extending/extending.rst:40 msgid "A Simple Example"