mirror of
https://github.com/django/django.git
synced 2025-08-03 10:34:04 +00:00
Cleaned up the django.template namespace.
Since this package is going to hold both the implementation of the Django Template Language and the infrastructure for Multiple Template Engines, it should be untied from the DTL as much as possible within our backwards-compatibility policy. Only public APIs (i.e. APIs mentioned in the documentation) were left.
This commit is contained in:
parent
bfa21ddf76
commit
7eefdbf7ab
11 changed files with 99 additions and 100 deletions
|
@ -5,8 +5,8 @@ from __future__ import unicode_literals
|
|||
|
||||
from unittest import TestCase
|
||||
|
||||
from django.template import (TokenParser, FilterExpression, Parser, Variable,
|
||||
Template, TemplateSyntaxError, Library)
|
||||
from django.template import Library, Template, TemplateSyntaxError
|
||||
from django.template.base import FilterExpression, Parser, TokenParser, Variable
|
||||
from django.test import override_settings
|
||||
from django.utils import six
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue