1
0
mirror of https://github.com/django/django.git synced 2025-03-24 16:20:46 +00:00

Removed unused DOTS list.

Unused since 4ff389dcdc15884eef059b2b8dea4b710e0a3b98.
This commit is contained in:
Claude Paroz 2021-10-14 19:56:37 +02:00 committed by GitHub
parent cb8d7ca0ba
commit 514c16e85f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 = ['·', '*', '\u2022', '•', '•', '•']
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(