mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Removed redundant code
This commit is contained in:
parent
9125775aa6
commit
016ef551a7
1 changed files with 2 additions and 4 deletions
|
@ -1670,10 +1670,8 @@ class datetime(date):
|
|||
if mytz is ottz:
|
||||
base_compare = True
|
||||
else:
|
||||
if mytz is not None:
|
||||
myoff = self.utcoffset()
|
||||
if ottz is not None:
|
||||
otoff = other.utcoffset()
|
||||
myoff = self.utcoffset()
|
||||
otoff = other.utcoffset()
|
||||
base_compare = myoff == otoff
|
||||
|
||||
if base_compare:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue