|
15 | 15 | # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
16 | 16 | # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
17 | 17 | # |
18 | | -# $Id: hyperdb.py,v 1.45 2002-01-02 04:18:17 richard Exp $ |
| 18 | +# $Id: hyperdb.py,v 1.46 2002-01-07 10:42:23 richard Exp $ |
19 | 19 |
|
20 | 20 | __doc__ = """ |
21 | 21 | Hyperdatabase implementation, especially field types. |
@@ -978,7 +978,7 @@ class Node: |
978 | 978 | def __init__(self, cl, nodeid, cache=1): |
979 | 979 | self.__dict__['cl'] = cl |
980 | 980 | self.__dict__['nodeid'] = nodeid |
981 | | - self.cache = cache |
| 981 | + self.__dict__['cache'] = cache |
982 | 982 | def keys(self, protected=1): |
983 | 983 | return self.cl.getprops(protected=protected).keys() |
984 | 984 | def values(self, protected=1): |
@@ -1027,6 +1027,9 @@ def Choice(name, *options): |
1027 | 1027 |
|
1028 | 1028 | # |
1029 | 1029 | # $Log: not supported by cvs2svn $ |
| 1030 | +# Revision 1.45 2002/01/02 04:18:17 richard |
| 1031 | +# hyperdb docstrings |
| 1032 | +# |
1030 | 1033 | # Revision 1.44 2002/01/02 02:31:38 richard |
1031 | 1034 | # Sorry for the huge checkin message - I was only intending to implement #496356 |
1032 | 1035 | # but I found a number of places where things had been broken by transactions: |
|
0 commit comments