diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-04-24 16:02:54 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-04-24 16:02:54 (GMT) |
commit | 0eadaac7dc3ae49974c105ff9e8c1e98a04d7d5a (patch) | |
tree | 6d84cc9f2da9f24dd76871e75a80e618fd519a27 /Lib/test/test_time.py | |
parent | 0822ff7ccab0465cf4377176089dfdbabbd0a35b (diff) | |
download | cpython-0eadaac7dc3ae49974c105ff9e8c1e98a04d7d5a.zip cpython-0eadaac7dc3ae49974c105ff9e8c1e98a04d7d5a.tar.gz cpython-0eadaac7dc3ae49974c105ff9e8c1e98a04d7d5a.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/test/test_time.py')
-rw-r--r-- | Lib/test/test_time.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py index 705b3ed..4b9ed99 100644 --- a/Lib/test/test_time.py +++ b/Lib/test/test_time.py @@ -58,16 +58,16 @@ class TimeTestCase(unittest.TestCase): from os import environ - # Epoch time of midnight Dec 25th 2002. Never DST in northern + # Epoch time of midnight Dec 25th 2002. Never DST in northern # hemisphere. - xmas2002 = 1040774400.0 + xmas2002 = 1040774400.0 # These formats are correct for 2002, and possibly future years # This format is the 'standard' as documented at: # http://www.opengroup.org/onlinepubs/007904975/basedefs/xbd_chap08.html # They are also documented in the tzset(3) man page on most Unix # systems. - eastern = 'EST+05EDT,M4.1.0,M10.5.0' + eastern = 'EST+05EDT,M4.1.0,M10.5.0' victoria = 'AEST-10AEDT-11,M10.5.0,M3.5.0' utc='UTC+0' @@ -83,7 +83,7 @@ class TimeTestCase(unittest.TestCase): self.failUnlessEqual( time.gmtime(xmas2002), time.localtime(xmas2002) ) - self.failUnlessEqual(time.daylight, 0) + self.failUnlessEqual(time.daylight, 0) self.failUnlessEqual(time.timezone, 0) self.failUnlessEqual(time.localtime(xmas2002).tm_isdst, 0) @@ -119,7 +119,7 @@ class TimeTestCase(unittest.TestCase): elif environ.has_key('TZ'): del environ['TZ'] time.tzset() - + def test_main(): test_support.run_unittest(TimeTestCase) |