summaryrefslogtreecommitdiff
path: root/Lib/datetime.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-09-22 09:23:12 +0200
committerGeorg Brandl <georg@python.org>2012-09-22 09:23:12 +0200
commit0085a2407574a4af46019bee279895bdafbd76b8 (patch)
treeadfe988557488cc52e34b16bb971f8a8727f1ae6 /Lib/datetime.py
parentfd296ff5d6436ad3a782cca816783f05acd9fe78 (diff)
downloadcpython-git-0085a2407574a4af46019bee279895bdafbd76b8.tar.gz
Closes #15973: fix a segmentation fault when comparing timezone objects.
Diffstat (limited to 'Lib/datetime.py')
-rw-r--r--Lib/datetime.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/datetime.py b/Lib/datetime.py
index a15c6b0919..f506e9ab22 100644
--- a/Lib/datetime.py
+++ b/Lib/datetime.py
@@ -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):