|
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.87.2.1 2003-09-04 23:09:48 richard Exp $ |
| 18 | +# $Id: hyperdb.py,v 1.87.2.2 2003-10-24 22:54:06 richard Exp $ |
19 | 19 |
|
20 | 20 | """ |
21 | 21 | Hyperdatabase implementation, especially field types. |
@@ -260,11 +260,6 @@ def countnodes(self, classname, db=None): |
260 | 260 | ''' |
261 | 261 | raise NotImplementedError |
262 | 262 |
|
263 | | - def getnodeids(self, classname, db=None): |
264 | | - '''Retrieve all the ids of the nodes for a particular Class. |
265 | | - ''' |
266 | | - raise NotImplementedError |
267 | | - |
268 | 263 | def storefile(self, classname, nodeid, property, content): |
269 | 264 | '''Store the content of the file in the database. |
270 | 265 | |
@@ -381,6 +376,11 @@ def getnode(self, nodeid, cache=1): |
381 | 376 | ''' |
382 | 377 | return Node(self, nodeid) |
383 | 378 |
|
| 379 | + def getnodeids(self, db=None): |
| 380 | + '''Retrieve all the ids of the nodes for a particular Class. |
| 381 | + ''' |
| 382 | + raise NotImplementedError |
| 383 | + |
384 | 384 | def set(self, nodeid, **propvalues): |
385 | 385 | """Modify a property on an existing node of this class. |
386 | 386 | |
|
0 commit comments