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
bbabfdcc
Kaydet (Commit)
bbabfdcc
authored
Ara 17, 2012
tarafından
Aymeric Augustin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #19485 -- Python 3 compatibility for
c2a6b2a4
.
Refs #9589.
üst
85712a53
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
autoreload.py
django/utils/autoreload.py
+7
-2
No files found.
django/utils/autoreload.py
Dosyayı görüntüle @
bbabfdcc
...
...
@@ -56,8 +56,13 @@ _error_files = []
def
code_changed
():
global
_mtimes
,
_win
filenames
=
[
getattr
(
m
,
"__file__"
,
None
)
for
m
in
sys
.
modules
.
values
()]
for
filename
in
filter
(
None
,
filenames
)
+
_error_files
:
filenames
=
[]
for
m
in
sys
.
modules
.
values
():
try
:
filenames
.
append
(
m
.
__file__
)
except
AttributeError
:
pass
for
filename
in
filenames
+
_error_files
:
if
filename
.
endswith
(
".pyc"
)
or
filename
.
endswith
(
".pyo"
):
filename
=
filename
[:
-
1
]
if
filename
.
endswith
(
"$py.class"
):
...
...
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