summaryrefslogtreecommitdiffstats
path: root/Lib/sre_parse.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/sre_parse.py')
-rw-r--r--Lib/sre_parse.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/sre_parse.py b/Lib/sre_parse.py
index 635605d..fc3c492 100644
--- a/Lib/sre_parse.py
+++ b/Lib/sre_parse.py
@@ -14,6 +14,9 @@ import sys
from sre_constants import *
+__all__ = ["Pattern","SubPattern","Tokenizer","parse","parse_template",
+ "expand_template"]
+
SPECIAL_CHARS = ".\\[{()*+?^$|"
REPEAT_CHARS = "*+?{"