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
d63ac5b5
Kaydet (Commit)
d63ac5b5
authored
Eyl 16, 2014
tarafından
Baptiste Mispelon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #23492 -- Restored F.__deepcopy__.
This reverts commit
3a660351
. A regression test was also added.
üst
ed782123
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
expressions.py
django/db/models/expressions.py
+5
-0
tests.py
tests/expressions/tests.py
+9
-0
No files found.
django/db/models/expressions.py
Dosyayı görüntüle @
d63ac5b5
...
...
@@ -145,6 +145,11 @@ class F(ExpressionNode):
super
(
F
,
self
)
.
__init__
(
None
,
None
,
False
)
self
.
name
=
name
def
__deepcopy__
(
self
,
memodict
):
obj
=
super
(
F
,
self
)
.
__deepcopy__
(
memodict
)
obj
.
name
=
self
.
name
return
obj
def
prepare
(
self
,
evaluator
,
query
,
allow_joins
):
return
evaluator
.
prepare_leaf
(
self
,
query
,
allow_joins
)
...
...
tests/expressions/tests.py
Dosyayı görüntüle @
d63ac5b5
from
__future__
import
unicode_literals
from
copy
import
deepcopy
import
datetime
from
django.core.exceptions
import
FieldError
...
...
@@ -287,6 +288,14 @@ class ExpressionsTests(TestCase):
)
self
.
assertEqual
(
str
(
qs
.
query
)
.
count
(
'JOIN'
),
2
)
def
test_F_object_deepcopy
(
self
):
"""
Make sure F objects can be deepcopied (#23492)
"""
f
=
F
(
"foo"
)
g
=
deepcopy
(
f
)
self
.
assertEqual
(
f
.
name
,
g
.
name
)
class
ExpressionsNumericTests
(
TestCase
):
...
...
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