[Zope3-checkins] CVS: ZODB4/src/zodb - interfaces.py:1.12
Jeremy Hylton
jeremy@zope.com
Thu, 6 Mar 2003 15:04:26 -0500
Update of /cvs-repository/ZODB4/src/zodb
In directory cvs.zope.org:/tmp/cvs-serv8613
Modified Files:
interfaces.py
Log Message:
InvalidObjectReference is not an interface.
=== ZODB4/src/zodb/interfaces.py 1.11 => 1.12 ===
--- ZODB4/src/zodb/interfaces.py:1.11 Wed Mar 5 17:14:30 2003
+++ ZODB4/src/zodb/interfaces.py Thu Mar 6 15:04:13 2003
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# Copyright (c) 2001 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
@@ -11,7 +11,7 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
-"""ZODB-defined exceptions
+"""ZODB database interfaces and exceptions
$Id$
"""
@@ -30,6 +30,7 @@
'ConflictError',
'ReadConflictError',
'DanglingReferenceError',
+ 'InvalidObjectReference',
'VersionError',
'VersionCommitError',
'VersionLockError',
@@ -38,7 +39,6 @@
'ExportError',
'Unsupported',
- 'InvalidObjectReference',
'IAppConnection',
'IConnection',
'ITransaction',