# These aren't used but they're a pretty good reference: double_quoted_string = re.compile(r'((?<!\\)".*?(?<!\\)")') single_quoted_string = re.compile(r"((?<!\\)'.*?(?<!\\)')") single_line_single_quoted_string = re.compile(r"((?<!\\)'''.*?(?<!\\)''')") single_line_double_quoted_string = re.compile(r"((?<!\\)'''.*?(?<!\\)''')")
Found this in pyminifier
No comments:
Post a Comment