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
832ab0db
Kaydet (Commit)
832ab0db
authored
Ara 19, 2013
tarafından
Alex Hill
Kaydeden (comit)
Baptiste Mispelon
Ara 20, 2013
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #21639 -- Implemented RenderContext.__getitem__
It's now consistent with RenderContext.get.
üst
23d9f517
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
4 deletions
+18
-4
context.py
django/template/context.py
+3
-4
test_context.py
tests/template_tests/test_context.py
+15
-0
No files found.
django/template/context.py
Dosyayı görüntüle @
832ab0db
...
...
@@ -145,11 +145,10 @@ class RenderContext(BaseContext):
return
key
in
self
.
dicts
[
-
1
]
def
get
(
self
,
key
,
otherwise
=
None
):
d
=
self
.
dicts
[
-
1
]
if
key
in
d
:
return
d
[
key
]
return
otherwise
return
self
.
dicts
[
-
1
]
.
get
(
key
,
otherwise
)
def
__getitem__
(
self
,
key
):
return
self
.
dicts
[
-
1
][
key
]
# This is a function rather than module-level procedural code because we only
# want it to execute if somebody uses RequestContext.
...
...
tests/template_tests/test_context.py
Dosyayı görüntüle @
832ab0db
...
...
@@ -3,6 +3,7 @@
from
unittest
import
TestCase
from
django.template
import
Context
,
Variable
,
VariableDoesNotExist
from
django.template.context
import
RenderContext
class
ContextTests
(
TestCase
):
...
...
@@ -34,3 +35,17 @@ class ContextTests(TestCase):
self
.
assertRaises
(
VariableDoesNotExist
,
Variable
(
'new'
)
.
resolve
,
empty_context
)
self
.
assertEqual
(
Variable
(
'new'
)
.
resolve
(
Context
({
'new'
:
'foo'
})),
'foo'
)
def
test_render_context
(
self
):
test_context
=
RenderContext
({
'fruit'
:
'papaya'
})
# Test that push() limits access to the topmost dict
test_context
.
push
()
test_context
[
'vegetable'
]
=
'artichoke'
self
.
assertEqual
(
list
(
test_context
),
[
'vegetable'
])
self
.
assertNotIn
(
'fruit'
,
test_context
)
with
self
.
assertRaises
(
KeyError
):
test_context
[
'fruit'
]
self
.
assertIsNone
(
test_context
.
get
(
'fruit'
))
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