Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
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
cpython
Commits
90f2cb42
Kaydet (Commit)
90f2cb42
authored
May 16, 2008
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove the last usage of statvfs in the stdlib.
üst
2224817c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
10 deletions
+6
-10
test_os.py
Lib/test/test_os.py
+6
-10
No files found.
Lib/test/test_os.py
Dosyayı görüntüle @
90f2cb42
...
...
@@ -220,7 +220,6 @@ class StatAttributeTests(unittest.TestCase):
if
not
hasattr
(
os
,
"statvfs"
):
return
import
statvfs
try
:
result
=
os
.
statvfs
(
self
.
fname
)
except
OSError
,
e
:
...
...
@@ -230,16 +229,13 @@ class StatAttributeTests(unittest.TestCase):
return
# Make sure direct access works
self
.
assertEquals
(
result
.
f_bfree
,
result
[
statvfs
.
F_BFREE
])
self
.
assertEquals
(
result
.
f_bfree
,
result
[
3
])
# Make sure all the attributes are there
members
=
dir
(
result
)
for
name
in
dir
(
statvfs
):
if
name
[:
2
]
==
'F_'
:
attr
=
name
.
lower
()
self
.
assertEquals
(
getattr
(
result
,
attr
),
result
[
getattr
(
statvfs
,
name
)])
self
.
assert_
(
attr
in
members
)
# Make sure all the attributes are there.
members
=
(
'bsize'
,
'frsize'
,
'blocks'
,
'bfree'
,
'bavail'
,
'files'
,
'ffree'
,
'favail'
,
'flag'
,
'namemax'
)
for
value
,
member
in
enumerate
(
members
):
self
.
assertEquals
(
getattr
(
result
,
'f_'
+
member
),
result
[
value
])
# Make sure that assignment really fails
try
:
...
...
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