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
0085a240
Kaydet (Commit)
0085a240
authored
Eyl 22, 2012
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Closes #15973: fix a segmentation fault when comparing timezone objects.
üst
fd296ff5
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
0 deletions
+13
-0
datetime.py
Lib/datetime.py
+2
-0
datetimetester.py
Lib/test/datetimetester.py
+2
-0
NEWS
Misc/NEWS
+3
-0
_datetimemodule.c
Modules/_datetimemodule.c
+6
-0
No files found.
Lib/datetime.py
Dosyayı görüntüle @
0085a240
...
...
@@ -1854,6 +1854,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 @
0085a240
...
...
@@ -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
...
...
Misc/NEWS
Dosyayı görüntüle @
0085a240
...
...
@@ -31,6 +31,9 @@ Library
Extension Modules
-----------------
- Issue #15973: Fix a segmentation fault when comparing datetime timezone
objects.
- Issue #15977: Fix memory leak in Modules/_ssl.c when the function
_set_npn_protocols() is called multiple times, thanks to Daniel Sommermann.
...
...
Modules/_datetimemodule.c
Dosyayı görüntüle @
0085a240
...
...
@@ -3215,6 +3215,12 @@ timezone_richcompare(PyDateTime_TimeZone *self,
{
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