diff options
author | Dong-hee Na <donghee.na92@gmail.com> | 2020-05-24 14:37:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-24 14:37:08 (GMT) |
commit | 3436f5f899f272d7164add072beb18eebd46d777 (patch) | |
tree | 559cad38e58cda6e450a32cfea602af2fe4293de /Lib/zoneinfo | |
parent | 16ef3241939a3a64a447e5d7aabaf2e29deca621 (diff) | |
download | cpython-3436f5f899f272d7164add072beb18eebd46d777.zip cpython-3436f5f899f272d7164add072beb18eebd46d777.tar.gz cpython-3436f5f899f272d7164add072beb18eebd46d777.tar.bz2 |
bpo-40443: Remove unused imports in the zoneinfo (GH-20354)
Diffstat (limited to 'Lib/zoneinfo')
-rw-r--r-- | Lib/zoneinfo/_tzpath.py | 1 | ||||
-rw-r--r-- | Lib/zoneinfo/_zoneinfo.py | 3 |
2 files changed, 0 insertions, 4 deletions
diff --git a/Lib/zoneinfo/_tzpath.py b/Lib/zoneinfo/_tzpath.py index c4c671d..9e381b6 100644 --- a/Lib/zoneinfo/_tzpath.py +++ b/Lib/zoneinfo/_tzpath.py @@ -1,5 +1,4 @@ import os -import sys import sysconfig diff --git a/Lib/zoneinfo/_zoneinfo.py b/Lib/zoneinfo/_zoneinfo.py index 69133ae..b207dd3 100644 --- a/Lib/zoneinfo/_zoneinfo.py +++ b/Lib/zoneinfo/_zoneinfo.py @@ -2,10 +2,7 @@ import bisect import calendar import collections import functools -import os import re -import struct -import sys import weakref from datetime import datetime, timedelta, timezone, tzinfo |