[Zope3-checkins] CVS: Zope3/src/transaction - __init__.py:1.1.2.2 interfaces.py:1.1.2.2

Tim Peters tim.one@comcast.net
Tue, 24 Dec 2002 21:21:31 -0500


Update of /cvs-repository/Zope3/src/transaction
In directory cvs.zope.org:/tmp/cvs-serv19240/src/transaction

Modified Files:
      Tag: NameGeddon-branch
	__init__.py interfaces.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/transaction/__init__.py 1.1.2.1 => 1.1.2.2 ===
--- Zope3/src/transaction/__init__.py:1.1.2.1	Mon Dec 23 14:30:42 2002
+++ Zope3/src/transaction/__init__.py	Tue Dec 24 21:19:58 2002
@@ -2,14 +2,14 @@
 #
 # Copyright (c) 2001, 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.
-# 
+#
 ##############################################################################
 
 from transaction.manager import ThreadedTransactionManager


=== Zope3/src/transaction/interfaces.py 1.1.2.1 => 1.1.2.2 ===
--- Zope3/src/transaction/interfaces.py:1.1.2.1	Mon Dec 23 14:30:42 2002
+++ Zope3/src/transaction/interfaces.py	Tue Dec 24 21:19:58 2002
@@ -2,14 +2,14 @@
 #
 # Copyright (c) 2001, 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.
-# 
+#
 ##############################################################################
 from zope.interface import Interface
 
@@ -36,10 +36,10 @@
 
         DataManager should return True or False.
         """
-        
+
     def abort(transaction):
         """Abort changes made by transaction."""
-    
+
     def commit(transaction):
         """Commit changes made by transaction."""
 
@@ -48,9 +48,9 @@
 
         Should return an object implementing IRollback
         """
-        
+
 class IRollback(Interface):
-    
+
     def rollback():
         """Rollback changes since savepoint."""