From 77109ca418dcc5a54b1ed02a6f7466989f75d254 Mon Sep 17 00:00:00 2001 From: 707 <707472783@qq.com> Date: Fri, 6 Jul 2018 14:07:02 +0800 Subject: [PATCH] typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 发现一个打印错误 --- chapter3/01_Introduction.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapter3/01_Introduction.rst b/chapter3/01_Introduction.rst index b53ab0c..ea16698 100644 --- a/chapter3/01_Introduction.rst +++ b/chapter3/01_Introduction.rst @@ -11,7 +11,7 @@ 在Python多进程的官方文档中,明确指出 ``multiprocessing`` 模块要求,使用此模块的函数的main模块对子类来说必须是可导入的( https://docs.python.org/3.3/library/multiprocessing.html )。 -``__main__`` 在IELE中并不是可以导入的,即使你在IDLE中将文件当做一个脚本来运行。为了能正确使用此模块,本章我们将在命令行使用下面的命令运行脚本: :: +``__main__`` 在IDLE中并不是可以导入的,即使你在IDLE中将文件当做一个脚本来运行。为了能正确使用此模块,本章我们将在命令行使用下面的命令运行脚本: :: python multiprocessing example.py