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
3d0b8422
Kaydet (Commit)
3d0b8422
authored
Tem 20, 2015
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge 3.4
üst
043e8008
c0b1e0f8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
test_os.py
Lib/test/test_os.py
+8
-2
No files found.
Lib/test/test_os.py
Dosyayı görüntüle @
3d0b8422
...
...
@@ -430,12 +430,18 @@ class UtimeTests(unittest.TestCase):
with
open
(
self
.
fname
,
'wb'
)
as
fp
:
fp
.
write
(
b
"ABC"
)
def
restore_float_times
(
state
):
with
warnings
.
catch_warnings
():
warnings
.
simplefilter
(
"ignore"
,
DeprecationWarning
)
os
.
stat_float_times
(
state
)
# ensure that st_atime and st_mtime are float
with
warnings
.
catch_warnings
():
warnings
.
simplefilter
(
"ignore"
,
DeprecationWarning
)
old_
state
=
os
.
stat_float_times
(
-
1
)
self
.
addCleanup
(
os
.
stat_float_times
,
old_state
)
old_
float_times
=
os
.
stat_float_times
(
-
1
)
self
.
addCleanup
(
restore_float_times
,
old_float_times
)
os
.
stat_float_times
(
True
)
...
...
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