File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 1515# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717#
18- # $Id: hyperdb.py,v 1.56 2002-02-20 05:05:28 richard Exp $
18+ # $Id: hyperdb.py,v 1.57 2002-02-20 05:23:24 richard Exp $
1919
2020__doc__ = """
2121Hyperdatabase implementation, especially field types.
@@ -508,7 +508,7 @@ class or a KeyError is raised.
508508
509509 # if the value's the same as the existing value, no sense in
510510 # doing anything
511- if value == node [key ]:
511+ if node . has_key ( key ) and value == node [key ]:
512512 del propvalues [key ]
513513 continue
514514
@@ -1083,6 +1083,12 @@ def Choice(name, *options):
10831083
10841084#
10851085# $Log: not supported by cvs2svn $
1086+ # Revision 1.56 2002/02/20 05:05:28 richard
1087+ # . Added simple editing for classes that don't define a templated interface.
1088+ # - access using the admin "class list" interface
1089+ # - limited to admin-only
1090+ # - requires the csv module from object-craft (url given if it's missing)
1091+ #
10861092# Revision 1.55 2002/02/15 07:27:12 richard
10871093# Oops, precedences around the way w0rng.
10881094#
You can’t perform that action at this time.
0 commit comments