[Zodb-checkins] CVS: ZODB3/Doc/guide - prog-zodb.tex:1.2.4.3
Jeremy Hylton
jeremy@zope.com
Fri, 4 Oct 2002 14:40:58 -0400
Update of /cvs-repository/ZODB3/Doc/guide
In directory cvs.zope.org:/tmp/cvs-serv23924/Doc/guide
Modified Files:
Tag: ZODB3-3_1-branch
prog-zodb.tex
Log Message:
Mention that Persistent is an ExtensionClass and won't work with object.
=== ZODB3/Doc/guide/prog-zodb.tex 1.2.4.2 => 1.2.4.3 ===
--- ZODB3/Doc/guide/prog-zodb.tex:1.2.4.2 Fri Oct 4 14:19:03 2002
+++ ZODB3/Doc/guide/prog-zodb.tex Fri Oct 4 14:40:56 2002
@@ -205,6 +205,10 @@
correctly, since the ZODB code does some magical tricks with
importing.
+The \class{Persistent} base class is an \module{ExtensionClass}
+class. As a result, it not compatible with new-style classes or types
+in Python 2.2 and up.
+
For simplicity, in the examples the \class{User} class will
simply be used as a holder for a bunch of attributes. Normally the
class would define various methods that add functionality, but that