summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-07-06 08:40:50 -0400
committerTim Graham <timograham@gmail.com>2015-07-06 08:49:24 -0400
commit8556978078b3a7ec8c86c7d7a9dbfe650aea8f2f (patch)
tree37795dde0378115b41aa347803fe03b1e939e248
parenta871cf422d8f7a15d3029684538136e0c92f99dc (diff)
Removed unused variable template.base.ALLOWED_VARIABLE_CHARS.
Unused since 5d863f1fbd26537a8bca2920bc591279d15fbdf1.
-rw-r--r--django/template/base.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/django/template/base.py b/django/template/base.py
index 2f1b92851d..43df12b6dd 100644
--- a/django/template/base.py
+++ b/django/template/base.py
@@ -103,9 +103,6 @@ TRANSLATOR_COMMENT_MARK = 'Translators'
SINGLE_BRACE_START = '{'
SINGLE_BRACE_END = '}'
-ALLOWED_VARIABLE_CHARS = ('abcdefghijklmnopqrstuvwxyz'
- 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_.')
-
# what to report as the origin for templates that come from non-loader sources
# (e.g. strings)
UNKNOWN_SOURCE = '<unknown source>'