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
1835563a
Kaydet (Commit)
1835563a
authored
Şub 09, 2019
tarafından
Sergey Fedoseev
Kaydeden (comit)
Tim Graham
Şub 10, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Removed unneeded list() calls in sorted() argument.
üst
a98bcfb0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
autoreload.py
django/utils/autoreload.py
+2
-2
test_datastructures.py
tests/utils_tests/test_datastructures.py
+1
-1
No files found.
django/utils/autoreload.py
Dosyayı görüntüle @
1835563a
...
...
@@ -98,8 +98,8 @@ def iter_all_python_module_files():
# modules based on the module name and pass it to iter_modules_and_files().
# This ensures cached results are returned in the usual case that modules
# aren't loaded on the fly.
modules_view
=
sorted
(
list
(
sys
.
modules
.
items
()),
key
=
lambda
i
:
i
[
0
]
)
modules
=
tuple
(
m
[
1
]
for
m
in
modules_view
if
not
isinstance
(
m
[
1
]
,
weakref
.
ProxyTypes
))
keys
=
sorted
(
sys
.
modules
)
modules
=
tuple
(
m
for
m
in
map
(
sys
.
modules
.
__getitem__
,
keys
)
if
not
isinstance
(
m
,
weakref
.
ProxyTypes
))
return
iter_modules_and_files
(
modules
,
frozenset
(
_error_files
))
...
...
tests/utils_tests/test_datastructures.py
Dosyayı görüntüle @
1835563a
...
...
@@ -168,7 +168,7 @@ class CaseInsensitiveMappingTests(SimpleTestCase):
CaseInsensitiveMapping
([(
1
,
'2'
)])
def
test_list
(
self
):
self
.
assertEqual
(
sorted
(
list
(
self
.
dict1
)),
sorted
([
'Accept'
,
'content-type'
])
)
self
.
assertEqual
(
list
(
self
.
dict1
),
[
'Accept'
,
'content-type'
]
)
def
test_dict
(
self
):
self
.
assertEqual
(
dict
(
self
.
dict1
),
{
'Accept'
:
'application/json'
,
'content-type'
:
'text/html'
})
...
...
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