From c2a5a636545a88f349dbe3e452ffb4494b68e534 Mon Sep 17 00:00:00 2001 From: Anthony Baxter Date: Mon, 2 Aug 2004 06:10:11 +0000 Subject: PEP-0318, @decorator-style. In Guido's words: "@ seems the syntax that everybody can hate equally" Implementation by Mark Russell, from SF #979728. --- Lib/pyclbr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/pyclbr.py') diff --git a/Lib/pyclbr.py b/Lib/pyclbr.py index 9e6bcb09c5..0812e22ff4 100644 --- a/Lib/pyclbr.py +++ b/Lib/pyclbr.py @@ -222,7 +222,7 @@ def _readmodule(module, path, inpackage=None): else: super.append(token) inherit = names - cur_class = Class(module, class_name, inherit, file, lineno) + cur_class = Class(fullmodule, class_name, inherit, file, lineno) if not stack: dict[class_name] = cur_class stack.append((cur_class, thisindent)) -- cgit v1.2.1