summaryrefslogtreecommitdiff
path: root/django/utils/html.py
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2021-10-14 19:56:37 +0200
committerGitHub <noreply@github.com>2021-10-14 19:56:37 +0200
commit514c16e85f7ac2512235f3b6413646627420e969 (patch)
treee04c27671e85071de5ff69209644a194c031fa47 /django/utils/html.py
parentcb8d7ca0ba0adc4fcefc069eae26f842a15755a1 (diff)
Removed unused DOTS list.
Unused since 4ff389dcdc15884eef059b2b8dea4b710e0a3b98.
Diffstat (limited to 'django/utils/html.py')
-rw-r--r--django/utils/html.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/django/utils/html.py b/django/utils/html.py
index bd58317a79..2c8c1cc79e 100644
--- a/django/utils/html.py
+++ b/django/utils/html.py
@@ -19,9 +19,6 @@ from django.utils.text import normalize_newlines
TRAILING_PUNCTUATION_CHARS = '.,:;!'
WRAPPING_PUNCTUATION = [('(', ')'), ('[', ']')]
-# List of possible strings used for bullets in bulleted lists.
-DOTS = ['&middot;', '*', '\u2022', '&#149;', '&bull;', '&#8226;']
-
word_split_re = _lazy_re_compile(r'''([\s<>"']+)''')
simple_url_re = _lazy_re_compile(r'^https?://\[?\w', re.IGNORECASE)
simple_url_2_re = _lazy_re_compile(