Commit 0873d471 authored by Jason R. Coombs's avatar Jason R. Coombs

Remove unused UTC implementation

parent 8f5e0004
......@@ -29,19 +29,6 @@ class EggRemover(unicode):
if os.path.exists(self):
os.remove(self)
ZERO = datetime.timedelta(0)
class UTC(datetime.tzinfo):
"""UTC"""
def utcoffset(self, dt):
return ZERO
def tzname(self, dt):
return "UTC"
def dst(self, dt):
return ZERO
class TestZipProvider(object):
finalizers = []
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment