From e73d702344ad85fa1386d77cfa4d56091e39835b Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 13 Oct 1998 16:12:36 +0000 Subject: [PATCH] Ever-so-slight improvementL the patterns to recognize import statements now also stop at ';' (formerly they only stopped at '#'). --- Lib/pyclbr.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/pyclbr.py b/Lib/pyclbr.py index 6af46920743..25fc33f44e0 100644 --- a/Lib/pyclbr.py +++ b/Lib/pyclbr.py @@ -42,8 +42,8 @@ blank_line = re.compile('^[ \t]*($|#)') is_class = re.compile('^class[ \t]+(?P'+id+')[ \t]*(?P\([^)]*\))?[ \t]*:') is_method = re.compile('^[ \t]+def[ \t]+(?P'+id+')[ \t]*\(') -is_import = re.compile('^import[ \t]*(?P[^#]+)') -is_from = re.compile('^from[ \t]+(?P'+id+'([ \t]*\\.[ \t]*'+id+')*)[ \t]+import[ \t]+(?P[^#]+)') +is_import = re.compile('^import[ \t]*(?P[^#;]+)') +is_from = re.compile('^from[ \t]+(?P'+id+'([ \t]*\\.[ \t]*'+id+')*)[ \t]+import[ \t]+(?P[^#;]+)') dedent = re.compile('^[^ \t]') indent = re.compile('^[^ \t]*')