summaryrefslogtreecommitdiff
path: root/src/jinja2/utils.py
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2021-01-31 08:48:44 -0800
committerDavid Lord <davidism@gmail.com>2021-01-31 08:48:44 -0800
commit076d3803614ae433b1591a99572e8026a6004496 (patch)
tree62444fc9f6e56ea7a1fccb16d0fdb819ad2ddc92 /src/jinja2/utils.py
parent1cad38c44b6dba6999eb16de83417025affc0079 (diff)
parentcf215390d4a4d6f0a4de27e2687eed176878f13d (diff)
downloadjinja2-076d3803614ae433b1591a99572e8026a6004496.tar.gz
Merge branch '2.11.x'
Diffstat (limited to 'src/jinja2/utils.py')
-rw-r--r--src/jinja2/utils.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/jinja2/utils.py b/src/jinja2/utils.py
index 84185fa..18e6d1a 100644
--- a/src/jinja2/utils.py
+++ b/src/jinja2/utils.py
@@ -11,11 +11,6 @@ from urllib.parse import quote_from_bytes
from markupsafe import escape
from markupsafe import Markup
-_striptags_re = re.compile(r"(<!--.*?-->|<[^>]*>)")
-_entity_re = re.compile(r"&([^;]+);")
-_letters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
-_digits = "0123456789"
-
# special singleton representing missing values for the runtime
missing = type("MissingType", (), {"__repr__": lambda x: "missing"})()