From 0873d4713fb81f1402c481ac6c7745fbc586c9a1 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Mon, 24 Mar 2014 11:52:06 +0000 Subject: Remove unused UTC implementation --- tests/test_pkg_resources.py | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'tests') diff --git a/tests/test_pkg_resources.py b/tests/test_pkg_resources.py index ed414096..11edfe85 100644 --- a/tests/test_pkg_resources.py +++ b/tests/test_pkg_resources.py @@ -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 = [] -- cgit v1.2.1