[Zope3-checkins] CVS: Zope3/lib/python/Persistence - cPersistenceAPI.h:1.4 cPersistence.h:1.4 cPersistence.c:1.17 Module.py:1.23 IPersistentModuleRegistry.py:1.2 IPersistentModuleManager.py:1.3 Function.py:1.11 Class.py:1.3
Jeremy Hylton
jeremy@zope.com
Thu, 3 Oct 2002 00:16:59 -0400
Update of /cvs-repository/Zope3/lib/python/Persistence
In directory cvs.zope.org:/tmp/cvs-serv19715
Modified Files:
cPersistenceAPI.h cPersistence.h cPersistence.c Module.py
IPersistentModuleRegistry.py IPersistentModuleManager.py
Function.py Class.py
Log Message:
Add copyright notices.
=== Zope3/lib/python/Persistence/cPersistenceAPI.h 1.3 => 1.4 ===
--- Zope3/lib/python/Persistence/cPersistenceAPI.h:1.3 Wed Jul 24 18:55:50 2002
+++ Zope3/lib/python/Persistence/cPersistenceAPI.h Thu Oct 3 00:16:59 2002
@@ -1,3 +1,15 @@
+/*
+ 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.
+*/
+
/* The PyPersist_C_API provides access to types and functions defined
in the cPersistence extension module to other extension modules.
On some (all?) platforms, it isn't possible to have static
=== Zope3/lib/python/Persistence/cPersistence.h 1.3 => 1.4 ===
--- Zope3/lib/python/Persistence/cPersistence.h:1.3 Wed Jul 24 18:55:50 2002
+++ Zope3/lib/python/Persistence/cPersistence.h Thu Oct 3 00:16:59 2002
@@ -1,3 +1,15 @@
+/*
+ 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.
+*/
+
#include <time.h>
/* Conceptually an enum is appropriate, but we may want to pack the
=== Zope3/lib/python/Persistence/cPersistence.c 1.16 => 1.17 ===
--- Zope3/lib/python/Persistence/cPersistence.c:1.16 Thu Aug 8 17:50:08 2002
+++ Zope3/lib/python/Persistence/cPersistence.c Thu Oct 3 00:16:59 2002
@@ -1,3 +1,15 @@
+/*
+ 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.
+*/
+
#include <assert.h>
#include "Python.h"
#include "structmember.h"
=== Zope3/lib/python/Persistence/Module.py 1.22 => 1.23 ===
--- Zope3/lib/python/Persistence/Module.py:1.22 Wed Oct 2 17:34:22 2002
+++ Zope3/lib/python/Persistence/Module.py Thu Oct 3 00:16:59 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.
+#
+##############################################################################
"""Persistent Module."""
__metaclass__ = type
=== Zope3/lib/python/Persistence/IPersistentModuleRegistry.py 1.1 => 1.2 ===
--- Zope3/lib/python/Persistence/IPersistentModuleRegistry.py:1.1 Thu Sep 19 17:37:21 2002
+++ Zope3/lib/python/Persistence/IPersistentModuleRegistry.py Thu Oct 3 00:16:59 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.
+#
+##############################################################################
try:
from Interface import Interface
except ImportError:
=== Zope3/lib/python/Persistence/IPersistentModuleManager.py 1.2 => 1.3 ===
--- Zope3/lib/python/Persistence/IPersistentModuleManager.py:1.2 Wed Oct 2 17:34:22 2002
+++ Zope3/lib/python/Persistence/IPersistentModuleManager.py Thu Oct 3 00:16:59 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.
+#
+##############################################################################
try:
from Interface import Interface
from Interface.Attribute import Attribute
=== Zope3/lib/python/Persistence/Function.py 1.10 => 1.11 ===
--- Zope3/lib/python/Persistence/Function.py:1.10 Mon Aug 5 16:08:38 2002
+++ Zope3/lib/python/Persistence/Function.py Thu Oct 3 00:16:59 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.
+#
+##############################################################################
"""Persistent functions."""
import dis
=== Zope3/lib/python/Persistence/Class.py 1.2 => 1.3 ===
--- Zope3/lib/python/Persistence/Class.py:1.2 Thu Sep 19 14:23:46 2002
+++ Zope3/lib/python/Persistence/Class.py Thu Oct 3 00:16:59 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.
+#
+##############################################################################
"""Persistent Classes."""
from Persistence import Persistent