From fcc44e6f4915eae02692840d43afb493abb69c12 Mon Sep 17 00:00:00 2001 From: Kevin Matz Date: Sun, 17 Nov 2019 11:48:55 -0500 Subject: [PATCH] parse text in upper case --- comment.py | 1 + 1 file changed, 1 insertion(+) diff --git a/comment.py b/comment.py index 9a2025c..424339a 100755 --- a/comment.py +++ b/comment.py @@ -58,6 +58,7 @@ walker = ParseTreeWalker() def comment(text): + text = text.upper() input_stream = InputStream(text) lexer = CommentMacroLexer(input_stream) stream = CommonTokenStream(lexer)