[Zope3-checkins] CVS: Zope3/src/datetime/tests - test_datetime.py:1.1.2.3
Tim Peters
tim.one@comcast.net
Tue, 24 Dec 2002 21:21:27 -0500
Update of /cvs-repository/Zope3/src/datetime/tests
In directory cvs.zope.org:/tmp/cvs-serv19240/src/datetime/tests
Modified Files:
Tag: NameGeddon-branch
test_datetime.py
Log Message:
Whitespace normalization, via Python's Tools/scripts/reindent.py. The
files are fixed-points of that script now. Fixed a few cases where
code relied on significant trailing whitespace (ouch).
=== Zope3/src/datetime/tests/test_datetime.py 1.1.2.2 => 1.1.2.3 ===
--- Zope3/src/datetime/tests/test_datetime.py:1.1.2.2 Tue Dec 24 00:53:16 2002
+++ Zope3/src/datetime/tests/test_datetime.py Tue Dec 24 21:19:56 2002
@@ -2266,7 +2266,7 @@
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 ''