[Zope3-checkins] CVS: Zope3/lib/python/ZODB - IZTransaction.py:1.2 Serialize.py:1.3 ZTransaction.py:1.2

Jeremy Hylton jeremy@zope.com
Thu, 3 Oct 2002 00:32:57 -0400


Update of /cvs-repository/Zope3/lib/python/ZODB
In directory cvs.zope.org:/tmp/cvs-serv21747

Modified Files:
	IZTransaction.py Serialize.py ZTransaction.py 
Log Message:
Add copyright notices.


=== Zope3/lib/python/ZODB/IZTransaction.py 1.1 => 1.2 ===
--- Zope3/lib/python/ZODB/IZTransaction.py:1.1	Wed Jul 24 19:14:41 2002
+++ Zope3/lib/python/ZODB/IZTransaction.py	Thu Oct  3 00:32:56 2002
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# 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.
+#
+##############################################################################
 from Transaction.ITransaction import ITransaction
 
 class IZTransaction(ITransaction):


=== Zope3/lib/python/ZODB/Serialize.py 1.2 => 1.3 ===
--- Zope3/lib/python/ZODB/Serialize.py:1.2	Thu Sep 19 15:12:04 2002
+++ Zope3/lib/python/ZODB/Serialize.py	Thu Oct  3 00:32:56 2002
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# 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.
+#
+##############################################################################
 """Support for ZODB object serialization.
 
 ZODB serializes objects using a custom format based on Python pickles.


=== Zope3/lib/python/ZODB/ZTransaction.py 1.1 => 1.2 ===
--- Zope3/lib/python/ZODB/ZTransaction.py:1.1	Wed Jul 24 19:14:41 2002
+++ Zope3/lib/python/ZODB/ZTransaction.py	Thu Oct  3 00:32:56 2002
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# 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.
+#
+##############################################################################
 from Transaction import set_factory
 from Transaction.Transaction import Transaction as BaseTransaction