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
4d394dfe
Kaydet (Commit)
4d394dfe
authored
Ock 23, 2005
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Truncate st_?time before comparing it with ST_?TIME in the tests.
üst
1083c248
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
1 deletion
+9
-1
libos.tex
Doc/lib/libos.tex
+3
-0
test_os.py
Lib/test/test_os.py
+5
-1
NEWS
Misc/NEWS
+1
-0
No files found.
Doc/lib/libos.tex
Dosyayı görüntüle @
4d394dfe
...
...
@@ -1012,6 +1012,9 @@ objects. If newval is True, future calls to stat() return floats, if
it is False, future calls return ints. If newval is omitted, return
the current setting.
For compatibility with older Python versions, accessing
\class
{
stat
_
result
}
as a tuple always returns integers.
\versionchanged
[Python now returns float values by default. Applications
which do not work correctly with floating point time stamps can use
this function to restore the old behaviour]
{
2.5
}
...
...
Lib/test/test_os.py
Dosyayı görüntüle @
4d394dfe
...
...
@@ -111,7 +111,11 @@ class StatAttributeTests(unittest.TestCase):
for
name
in
dir
(
stat
):
if
name
[:
3
]
==
'ST_'
:
attr
=
name
.
lower
()
self
.
assertEquals
(
getattr
(
result
,
attr
),
if
name
.
endswith
(
"TIME"
):
def
trunc
(
x
):
return
int
(
x
)
else
:
def
trunc
(
x
):
return
x
self
.
assertEquals
(
trunc
(
getattr
(
result
,
attr
)),
result
[
getattr
(
stat
,
name
)])
self
.
assert_
(
attr
in
members
)
...
...
Misc/NEWS
Dosyayı görüntüle @
4d394dfe
...
...
@@ -151,6 +151,7 @@ C API
Tests
-----
-
In
test_os
,
st_
?
time
is
now
truncated
before
comparing
it
with
ST_
?
TIME
.
Mac
---
...
...
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