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
0c687e5e
Kaydet (Commit)
0c687e5e
authored
Haz 08, 2012
tarafından
Alexander Belopolsky
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Relax datetime.timestamp() test around DST change
üst
0bf506cc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
datetimetester.py
Lib/test/datetimetester.py
+3
-3
No files found.
Lib/test/datetimetester.py
Dosyayı görüntüle @
0c687e5e
...
...
@@ -1744,10 +1744,10 @@ class TestDateTime(TestDate):
t
=
self
.
theclass
(
1970
,
1
,
1
,
1
,
2
,
3
,
4
)
self
.
assertEqual
(
t
.
timestamp
(),
18000.0
+
3600
+
2
*
60
+
3
+
4
*
1e-6
)
# Missing hour
defaults to standard time
# Missing hour
may produce platform-dependent result
t
=
self
.
theclass
(
2012
,
3
,
11
,
2
,
30
)
self
.
assert
Equal
(
self
.
theclass
.
fromtimestamp
(
t
.
timestamp
()),
t
+
timedelta
(
hours
=
1
)
)
self
.
assert
In
(
self
.
theclass
.
fromtimestamp
(
t
.
timestamp
()),
[
t
,
t
+
timedelta
(
hours
=
1
)]
)
# Ambiguous hour defaults to DST
t
=
self
.
theclass
(
2012
,
11
,
4
,
1
,
30
)
self
.
assertEqual
(
self
.
theclass
.
fromtimestamp
(
t
.
timestamp
()),
t
)
...
...
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