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
6bfd864f
Kaydet (Commit)
6bfd864f
authored
Nis 13, 2015
tarafından
Tommy Beadle
Kaydeden (comit)
Tim Graham
Nis 14, 2015
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #24603 -- Allowed Context.update() to be used as a context manager.
üst
c612786c
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
32 additions
and
2 deletions
+32
-2
context.py
django/template/context.py
+1
-2
api.txt
docs/ref/templates/api.txt
+15
-0
1.9.txt
docs/releases/1.9.txt
+3
-0
test_context.py
tests/template_tests/test_context.py
+13
-0
No files found.
django/template/context.py
Dosyayı görüntüle @
6bfd864f
...
...
@@ -171,8 +171,7 @@ class Context(BaseContext):
"Pushes other_dict to the stack of dictionaries in the Context"
if
not
hasattr
(
other_dict
,
'__getitem__'
):
raise
TypeError
(
'other_dict must be a mapping (dictionary-like) object.'
)
self
.
dicts
.
append
(
other_dict
)
return
other_dict
return
ContextDict
(
self
,
other_dict
)
class
RenderContext
(
BaseContext
):
...
...
docs/ref/templates/api.txt
Dosyayı görüntüle @
6bfd864f
...
...
@@ -497,6 +497,21 @@ the stack instead of an empty one.
>>> c['foo']
'first level'
Like ``push()``, you can use ``update()`` as a context manager to ensure a
matching ``pop()`` is called.
>>> c = Context()
>>> c['foo'] = 'first level'
>>> with c.update({'foo': 'second level'}):
... c['foo']
'second level'
>>> c['foo']
'first level'
.. versionadded:: 1.9
The ability to use ``update()`` as a context manager was added.
Using a ``Context`` as a stack comes in handy in :ref:`some custom template
tags <howto-writing-custom-template-tags>`.
...
...
docs/releases/1.9.txt
Dosyayı görüntüle @
6bfd864f
...
...
@@ -211,6 +211,9 @@ Templates
* The :ttag:`firstof` template tag supports storing the output in a variable
using 'as'.
* :meth:`Context.update() <django.template.Context.update>` can now be used as
a context manager.
Requests and Responses
^^^^^^^^^^^^^^^^^^^^^^
...
...
tests/template_tests/test_context.py
Dosyayı görüntüle @
6bfd864f
...
...
@@ -21,6 +21,8 @@ class ContextTests(SimpleTestCase):
self
.
assertEqual
(
c
[
"a"
],
1
)
self
.
assertEqual
(
c
.
get
(
"foo"
,
42
),
42
)
def
test_push_context_manager
(
self
):
c
=
Context
({
"a"
:
1
})
with
c
.
push
():
c
[
'a'
]
=
2
self
.
assertEqual
(
c
[
'a'
],
2
)
...
...
@@ -30,6 +32,17 @@ class ContextTests(SimpleTestCase):
self
.
assertEqual
(
c
[
'a'
],
3
)
self
.
assertEqual
(
c
[
'a'
],
1
)
def
test_update_context_manager
(
self
):
c
=
Context
({
"a"
:
1
})
with
c
.
update
({}):
c
[
'a'
]
=
2
self
.
assertEqual
(
c
[
'a'
],
2
)
self
.
assertEqual
(
c
[
'a'
],
1
)
with
c
.
update
({
'a'
:
3
}):
self
.
assertEqual
(
c
[
'a'
],
3
)
self
.
assertEqual
(
c
[
'a'
],
1
)
def
test_setdefault
(
self
):
c
=
Context
()
...
...
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