Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
229488c8
Kaydet (Commit)
229488c8
authored
Ock 21, 2016
tarafından
Ahmed Mohamed
Kaydeden (comit)
Tim Graham
Ock 25, 2016
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #26109 -- Raised a helpful error if loader.select_tamplate() is passed a string.
üst
275d11fb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
0 deletions
+16
-0
loader.py
django/template/loader.py
+7
-0
tests.py
tests/template_loader/tests.py
+9
-0
No files found.
django/template/loader.py
Dosyayı görüntüle @
229488c8
...
...
@@ -33,6 +33,13 @@ def select_template(template_name_list, using=None):
Raises TemplateDoesNotExist if no such template exists.
"""
if
isinstance
(
template_name_list
,
six
.
string_types
):
raise
TypeError
(
'select_template() takes an iterable of template names but got a '
'string:
%
r. Use get_template() if you want to load a single '
'template by name.'
%
template_name_list
)
chain
=
[]
engines
=
_engine_list
(
using
)
for
template_name
in
template_name_list
:
...
...
tests/template_loader/tests.py
Dosyayı görüntüle @
229488c8
...
...
@@ -60,6 +60,15 @@ class TemplateLoaderTests(SimpleTestCase):
with
self
.
assertRaises
(
TemplateDoesNotExist
):
select_template
([])
def
test_select_template_string
(
self
):
with
self
.
assertRaisesMessage
(
TypeError
,
"select_template() takes an iterable of template names but got a "
"string: 'template_loader/hello.html'. Use get_template() if you "
"want to load a single template by name."
):
select_template
(
'template_loader/hello.html'
)
def
test_select_template_not_found
(
self
):
with
self
.
assertRaises
(
TemplateDoesNotExist
)
as
e
:
select_template
([
"template_loader/unknown.html"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment