From 0b0ca0c0f379b9de94f174196ade113363e5ab6f Mon Sep 17 00:00:00 2001 From: Michael Hanselmann <hansmi@google.com> Date: Mon, 8 Aug 2011 18:14:10 +0200 Subject: [PATCH] Fix epydoc breakage caused by f8638e288c7a Signed-off-by: Michael Hanselmann <hansmi@google.com> Reviewed-by: Iustin Pop <iustin@google.com> --- lib/qlang.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/qlang.py b/lib/qlang.py index b0bc07d86..db0a59d35 100644 --- a/lib/qlang.py +++ b/lib/qlang.py @@ -62,10 +62,10 @@ OP_REGEXP = "=~" OP_CONTAINS = "=[]" -#: Characters used for detecting user-written filters (see L{MaybeFilter}) +#: Characters used for detecting user-written filters (see L{_CheckFilter}) FILTER_DETECTION_CHARS = frozenset("()=/!~'\"\\" + string.whitespace) -#: Characters used to detect globbing filters (see L{MaybeGlobbing}) +#: Characters used to detect globbing filters (see L{_CheckGlobbing}) GLOB_DETECTION_CHARS = frozenset("*?") -- GitLab