From 0909fa20c1320c4df9da01a297a9c999c01bf315 Mon Sep 17 00:00:00 2001 From: yunyu2019 Date: Thu, 30 Nov 2017 17:03:37 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AC=AC=E4=B9=9D=E7=AB=A0=E7=AC=AC174?= =?UTF-8?q?=E8=8A=82=E8=AF=AD=E5=8F=A5=E4=B8=8D=E9=80=9A=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/c09/p17_enforce_coding_conventions_in_classes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/c09/p17_enforce_coding_conventions_in_classes.rst b/source/c09/p17_enforce_coding_conventions_in_classes.rst index d437a807..1bcd821d 100644 --- a/source/c09/p17_enforce_coding_conventions_in_classes.rst +++ b/source/c09/p17_enforce_coding_conventions_in_classes.rst @@ -142,7 +142,7 @@ 它只能在类的实例被创建之后,并且相应的方法解析顺序也已经被设置好了。 最后一个例子还演示了Python的函数签名对象的使用。 -实际上,元类会管理中每个一个调用定义,搜索前一个定义(如果有的话), +实际上,元类将每个可调用定义放在一个类中,搜索前一个定义(如果有的话), 然后通过使用 ``inspect.signature()`` 来简单的比较它们的调用签名。 最后一点,代码中有一行使用了 ``super(self, self)`` 并不是排版错误。