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
f5f556db
Kaydet (Commit)
f5f556db
authored
Ock 25, 2014
tarafından
Andrew Godwin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Unroll choices iterators in field deconstruction
üst
2a30b39f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
__init__.py
django/db/models/fields/__init__.py
+4
-0
No files found.
django/db/models/fields/__init__.py
Dosyayı görüntüle @
f5f556db
...
@@ -329,6 +329,10 @@ class Field(RegisterLookupMixin):
...
@@ -329,6 +329,10 @@ class Field(RegisterLookupMixin):
equals_comparison
=
set
([
"choices"
,
"validators"
,
"db_tablespace"
])
equals_comparison
=
set
([
"choices"
,
"validators"
,
"db_tablespace"
])
for
name
,
default
in
possibles
.
items
():
for
name
,
default
in
possibles
.
items
():
value
=
getattr
(
self
,
attr_overrides
.
get
(
name
,
name
))
value
=
getattr
(
self
,
attr_overrides
.
get
(
name
,
name
))
# Unroll anything iterable for choices into a concrete list
if
name
==
"choices"
and
isinstance
(
value
,
collections
.
Iterable
):
value
=
list
(
value
)
# Do correct kind of comparison
if
name
in
equals_comparison
:
if
name
in
equals_comparison
:
if
value
!=
default
:
if
value
!=
default
:
keywords
[
name
]
=
value
keywords
[
name
]
=
value
...
...
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