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
72f1eb48
Kaydet (Commit)
72f1eb48
authored
Agu 03, 2014
tarafından
Baptiste Mispelon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #23156 -- Added missing BinaryField.deconstruct() method.
üst
a9fa3d46
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
__init__.py
django/db/models/fields/__init__.py
+5
-0
tests.py
tests/field_deconstruction/tests.py
+7
-0
No files found.
django/db/models/fields/__init__.py
Dosyayı görüntüle @
72f1eb48
...
...
@@ -2178,6 +2178,11 @@ class BinaryField(Field):
if
self
.
max_length
is
not
None
:
self
.
validators
.
append
(
validators
.
MaxLengthValidator
(
self
.
max_length
))
def
deconstruct
(
self
):
name
,
path
,
args
,
kwargs
=
super
(
BinaryField
,
self
)
.
deconstruct
()
del
kwargs
[
'editable'
]
return
name
,
path
,
args
,
kwargs
def
get_internal_type
(
self
):
return
"BinaryField"
...
...
tests/field_deconstruction/tests.py
Dosyayı görüntüle @
72f1eb48
...
...
@@ -347,3 +347,10 @@ class FieldDeconstructionTests(TestCase):
self
.
assertEqual
(
path
,
"django.db.models.URLField"
)
self
.
assertEqual
(
args
,
[])
self
.
assertEqual
(
kwargs
,
{
"max_length"
:
231
})
def
test_binary_field
(
self
):
field
=
models
.
BinaryField
()
name
,
path
,
args
,
kwargs
=
field
.
deconstruct
()
self
.
assertEqual
(
path
,
"django.db.models.BinaryField"
)
self
.
assertEqual
(
args
,
[])
self
.
assertEqual
(
kwargs
,
{})
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