diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-03-24 11:52:06 +0000 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-03-24 11:52:06 +0000 |
commit | 0873d4713fb81f1402c481ac6c7745fbc586c9a1 (patch) | |
tree | c08a3312fa48372afd24f464678fb03a3ede0de2 /tests/test_pkg_resources.py | |
parent | 8f5e0004edcd54aafe7f6fc30527f20aa8e05838 (diff) | |
download | external_python_setuptools-0873d4713fb81f1402c481ac6c7745fbc586c9a1.tar.gz external_python_setuptools-0873d4713fb81f1402c481ac6c7745fbc586c9a1.tar.bz2 external_python_setuptools-0873d4713fb81f1402c481ac6c7745fbc586c9a1.zip |
Remove unused UTC implementation
Diffstat (limited to 'tests/test_pkg_resources.py')
-rw-r--r-- | tests/test_pkg_resources.py | 13 |
1 files changed, 0 insertions, 13 deletions
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 = [] |