Whitespace normalization.

This commit is contained in:
Tim Peters 2002-12-24 18:31:27 +00:00
parent 75bfd0585b
commit 6578dc925f
7 changed files with 10 additions and 11 deletions

View file

@ -2258,7 +2258,7 @@ class TestDateTimeTZ(TestDateTime, TZInfoBase):
cls = self.theclass
datestr = '0001-02-03'
for ofs in None, zero, plus, minus, unknown:
for us in 0, 987001:
for us in 0, 987001:
d = cls(1, 2, 3, 4, 5, 59, us, tzinfo=ofs)
timestr = '04:05:59' + (us and '.987001' or '')
ofsstr = ofs is not None and d.tzname() or ''