[Zope3-checkins] CVS: Zope3/src/zodb/code/tests - _pmtest.py:1.1.2.2 test_module.py:1.1.2.4 test_patch.py:1.1.2.4
Tim Peters
tim.one@comcast.net
Tue, 24 Dec 2002 21:21:33 -0500
Update of /cvs-repository/Zope3/src/zodb/code/tests
In directory cvs.zope.org:/tmp/cvs-serv19240/src/zodb/code/tests
Modified Files:
Tag: NameGeddon-branch
_pmtest.py test_module.py test_patch.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/zodb/code/tests/_pmtest.py 1.1.2.1 => 1.1.2.2 ===
--- Zope3/src/zodb/code/tests/_pmtest.py:1.1.2.1 Mon Dec 23 14:30:48 2002
+++ Zope3/src/zodb/code/tests/_pmtest.py Tue Dec 24 21:20:02 2002
@@ -10,4 +10,3 @@
def f(x):
return a * x ** 2 + b * x + c
-
=== Zope3/src/zodb/code/tests/test_module.py 1.1.2.3 => 1.1.2.4 ===
--- Zope3/src/zodb/code/tests/test_module.py:1.1.2.3 Tue Dec 24 11:24:25 2002
+++ Zope3/src/zodb/code/tests/test_module.py Tue Dec 24 21:20:02 2002
@@ -2,14 +2,14 @@
#
# Copyright (c) 2002 Zope Corporation and Contributors.
# All Rights Reserved.
-#
+#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
-#
+#
##############################################################################
import os
import unittest
=== Zope3/src/zodb/code/tests/test_patch.py 1.1.2.3 => 1.1.2.4 ===
--- Zope3/src/zodb/code/tests/test_patch.py:1.1.2.3 Mon Dec 23 17:45:49 2002
+++ Zope3/src/zodb/code/tests/test_patch.py Tue Dec 24 21:20:02 2002
@@ -21,7 +21,7 @@
moddict = atestmodule.__dict__
convert(atestmodule, {})
newdict = atestmodule.__dict__
-
+
L1 = moddict.keys()
L2 = newdict.keys()
L1.sort()