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
a26cf46d
Kaydet (Commit)
a26cf46d
authored
May 26, 2010
tarafından
Alexander Belopolsky
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #7879: Do not test negative timestamps on any Windows platform
including Windows CE.
üst
784a47f2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
test_datetime.py
Lib/test/test_datetime.py
+3
-3
No files found.
Lib/test/test_datetime.py
Dosyayı görüntüle @
a26cf46d
...
...
@@ -3,7 +3,7 @@
See http://www.zope.org/Members/fdrake/DateTimeWiki/TestCases
"""
from
__future__
import
division
import
o
s
import
sy
s
import
pickle
import
cPickle
import
unittest
...
...
@@ -1513,7 +1513,7 @@ class TestDateTime(TestDate):
def
test_negative_float_fromtimestamp
(
self
):
# Windows doesn't accept negative timestamps
if
os
.
name
==
"nt
"
:
if
sys
.
platform
==
"win32
"
:
return
# The result is tz-dependent; at least test that this doesn't
# fail (like it did before bug 1646728 was fixed).
...
...
@@ -1521,7 +1521,7 @@ class TestDateTime(TestDate):
def
test_negative_float_utcfromtimestamp
(
self
):
# Windows doesn't accept negative timestamps
if
os
.
name
==
"nt
"
:
if
sys
.
platform
==
"win32
"
:
return
d
=
self
.
theclass
.
utcfromtimestamp
(
-
1.05
)
self
.
assertEquals
(
d
,
self
.
theclass
(
1969
,
12
,
31
,
23
,
59
,
58
,
950000
))
...
...
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