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
e7b9a58b
Kaydet (Commit)
e7b9a58b
authored
Kas 19, 2014
tarafından
Carl Meyer
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #21794 -- Removed deprecation warning for abstract models outside an app.
üst
47b7f601
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
+4
-6
base.py
django/db/models/base.py
+4
-6
No files found.
django/db/models/base.py
Dosyayı görüntüle @
e7b9a58b
...
...
@@ -100,13 +100,11 @@ class ModelBase(type):
msg
=
(
"Model class
%
s.
%
s doesn't declare an explicit app_label "
"and either isn't in an application in INSTALLED_APPS or "
"else was imported before its application was loaded. "
%
"else was imported before its application was loaded. "
"This will no longer be supported in Django 1.9."
%
(
module
,
name
))
if
abstract
:
msg
+=
"Its app_label will be set to None in Django 1.9."
else
:
msg
+=
"This will no longer be supported in Django 1.9."
warnings
.
warn
(
msg
,
RemovedInDjango19Warning
,
stacklevel
=
2
)
if
not
abstract
:
warnings
.
warn
(
msg
,
RemovedInDjango19Warning
,
stacklevel
=
2
)
model_module
=
sys
.
modules
[
new_class
.
__module__
]
package_components
=
model_module
.
__name__
.
split
(
'.'
)
...
...
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