From d0fdd02ab92ebf15d50edac17b3df0898b86436f Mon Sep 17 00:00:00 2001 From: domingo-dong <57818997+domingo-dong@users.noreply.github.com> Date: Sat, 16 Nov 2019 09:32:47 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E4=BA=86=E4=B8=80=E4=B8=AA=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/c15/p10_wrap_existing_c_code_with_cython.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/c15/p10_wrap_existing_c_code_with_cython.rst b/source/c15/p10_wrap_existing_c_code_with_cython.rst index 68738b13..507bd176 100644 --- a/source/c15/p10_wrap_existing_c_code_with_cython.rst +++ b/source/c15/p10_wrap_existing_c_code_with_cython.rst @@ -10,7 +10,7 @@ ---------- 解决方案 ---------- -使用Cython构建一个扩展模块看上去很手写扩展有些类似, +使用Cython构建一个扩展模块看上去和手写扩展有些类似, 因为你需要创建很多包装函数。不过,跟前面不同的是,你不需要在C语言中做这些——代码看上去更像是Python。 作为准备,假设本章介绍部分的示例代码已经被编译到某个叫 ``libsample`` 的C函数库中了。