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
6f543a30
Kaydet (Commit)
6f543a30
authored
Eyl 20, 2012
tarafından
Alexander Belopolsky
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge
üst
c286e580
3ec15368
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
3 deletions
+11
-3
datetime.py
Lib/datetime.py
+2
-0
datetimetester.py
Lib/test/datetimetester.py
+2
-0
_datetimemodule.c
Modules/_datetimemodule.c
+7
-3
No files found.
Lib/datetime.py
Dosyayı görüntüle @
6f543a30
...
...
@@ -1821,6 +1821,8 @@ class timezone(tzinfo):
return
(
self
.
_offset
,
self
.
_name
)
def
__eq__
(
self
,
other
):
if
type
(
other
)
!=
timezone
:
return
False
return
self
.
_offset
==
other
.
_offset
def
__hash__
(
self
):
...
...
Lib/test/datetimetester.py
Dosyayı görüntüle @
6f543a30
...
...
@@ -235,6 +235,8 @@ class TestTimeZone(unittest.TestCase):
self
.
assertEqual
(
timezone
(
-
5
*
HOUR
),
timezone
(
-
5
*
HOUR
,
'EST'
))
with
self
.
assertRaises
(
TypeError
):
timezone
(
ZERO
)
<
timezone
(
ZERO
)
self
.
assertIn
(
timezone
(
ZERO
),
{
timezone
(
ZERO
)})
self
.
assertTrue
(
timezone
(
ZERO
)
!=
None
)
self
.
assertFalse
(
timezone
(
ZERO
)
==
None
)
def
test_aware_datetime
(
self
):
# test that timezone instances can be used by datetime
...
...
Modules/_datetimemodule.c
Dosyayı görüntüle @
6f543a30
...
...
@@ -3243,9 +3243,13 @@ static PyObject *
timezone_richcompare
(
PyDateTime_TimeZone
*
self
,
PyDateTime_TimeZone
*
other
,
int
op
)
{
if
(
op
!=
Py_EQ
&&
op
!=
Py_NE
)
{
Py_INCREF
(
Py_NotImplemented
);
return
Py_NotImplemented
;
if
(
op
!=
Py_EQ
&&
op
!=
Py_NE
)
Py_RETURN_NOTIMPLEMENTED
;
if
(
Py_TYPE
(
other
)
!=
&
PyDateTime_TimeZoneType
)
{
if
(
op
==
Py_EQ
)
Py_RETURN_FALSE
;
else
Py_RETURN_TRUE
;
}
return
delta_richcompare
(
self
->
offset
,
other
->
offset
,
op
);
}
...
...
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