summaryrefslogtreecommitdiff
path: root/django/template/__init__.py
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2014-11-22 21:21:30 +0100
committerAymeric Augustin <aymeric.augustin@m4x.org>2014-11-23 11:52:25 +0100
commit240ea67ce03b2fe3daeabd7bc6fd1efd95997013 (patch)
tree583a00b1dac505445b58e403631dac0088691d7b /django/template/__init__.py
parent5b1bb40216ff452e34198345fdad63e2be370d2c (diff)
Move compile_string into the Engine class.
Diffstat (limited to 'django/template/__init__.py')
-rw-r--r--django/template/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/template/__init__.py b/django/template/__init__.py
index 0be11cb8e6..a43ff50f01 100644
--- a/django/template/__init__.py
+++ b/django/template/__init__.py
@@ -69,7 +69,7 @@ from django.template.base import (Context, FilterExpression, Lexer, Node, # NOQ
filter_raw_string)
# Compiling templates
-from django.template.base import (compile_string, resolve_variable, # NOQA
+from django.template.base import (resolve_variable, # NOQA
unescape_string_literal, generic_tag_compiler)
# Library management
@@ -77,4 +77,4 @@ from django.template.base import (Library, add_to_builtins, builtins, # NOQA
get_library, get_templatetags_modules, get_text_list, import_library,
libraries)
-__all__ = ('Template', 'Context', 'RequestContext', 'compile_string')
+__all__ = ('Template', 'Context', 'RequestContext')