From 9cc78c432c328ef4a8cf058ece1cc53b4b7757fd Mon Sep 17 00:00:00 2001 From: Qi Date: Fri, 11 Mar 2016 21:53:05 +0800 Subject: [PATCH] Update p05_define_functions_with_default_arguments.rst MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 错别字修正 --- source/c07/p05_define_functions_with_default_arguments.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/c07/p05_define_functions_with_default_arguments.rst b/source/c07/p05_define_functions_with_default_arguments.rst index a1b6a6b7..0cbf5ae5 100644 --- a/source/c07/p05_define_functions_with_default_arguments.rst +++ b/source/c07/p05_define_functions_with_default_arguments.rst @@ -139,5 +139,5 @@ 这里对 ``object()`` 的使用看上去有点不太常见。``object`` 是python中所有类的基类。 你可以创建 ``object`` 类的实例,但是这些实例没什么实际用处,因为它并没有任何有用的方法, -也没有哦任何实例数据(因为它没有任何的实例字典,你甚至都不能设置任何属性值)。 +也没有任何实例数据(因为它没有任何的实例字典,你甚至都不能设置任何属性值)。 你唯一能做的就是测试同一性。这个刚好符合我的要求,因为我在函数中就只是需要一个同一性的测试而已。