|
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.89 2003-10-07 11:58:57 anthonybaxter Exp $ |
| 18 | +# $Id: hyperdb.py,v 1.90 2003-10-24 22:52:48 richard Exp $ |
19 | 19 |
|
20 | 20 | """ |
21 | 21 | Hyperdatabase implementation, especially field types. |
@@ -268,11 +268,6 @@ def countnodes(self, classname, db=None): |
268 | 268 | ''' |
269 | 269 | raise NotImplementedError |
270 | 270 |
|
271 | | - def getnodeids(self, classname, db=None): |
272 | | - '''Retrieve all the ids of the nodes for a particular Class. |
273 | | - ''' |
274 | | - raise NotImplementedError |
275 | | - |
276 | 271 | def storefile(self, classname, nodeid, property, content): |
277 | 272 | '''Store the content of the file in the database. |
278 | 273 | |
@@ -389,6 +384,11 @@ def getnode(self, nodeid, cache=1): |
389 | 384 | ''' |
390 | 385 | return Node(self, nodeid) |
391 | 386 |
|
| 387 | + def getnodeids(self, db=None): |
| 388 | + '''Retrieve all the ids of the nodes for a particular Class. |
| 389 | + ''' |
| 390 | + raise NotImplementedError |
| 391 | + |
392 | 392 | def set(self, nodeid, **propvalues): |
393 | 393 | """Modify a property on an existing node of this class. |
394 | 394 | |
|
0 commit comments