File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed
Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -18,8 +18,6 @@ pending hyperdb migrate "id" property to be Number type
1818pending hyperdb multilink sorting by length is dumb
1919pending hyperdb lastchangedby auto-property giving last user to change an
2020 item
21- pending hyperdb pysqlite and locks
22- http://www.hwaci.com/sw/sqlite/c_interface.html
2321pending tracker split instance.open() into open() and login()
2422pending mailgw allow commands (feature request #556996)
2523 like "help", "dump issue123" (would send all info about
@@ -31,8 +29,6 @@ pending mailgw Use in-reply-to for determining message lineage when subject
3129 line lets us down
3230pending mailgw Allow different brackets delimiting [issueNNN] in Subject
3331pending email email sig could use a "remove me from this list"
34- pending messages Snarf the first whole sentence, or full first line of
35- messages for the summary - whichever is longer.
3632pending project switch to a Roundup instance for Roundup bug/feature tracking
3733pending security authenticate over a secure connection
3834pending security optionally auth with Basic HTTP auth instead of cookies
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: back_anydbm.py,v 1.97 2003-01-15 22:17:19 kedder Exp $
18+ #$Id: back_anydbm.py,v 1.98 2003-01-21 23:44:27 richard Exp $
1919'''
2020This module defines a backend that saves the hyperdatabase in a database
2121chosen by anydbm. It is guaranteed to always be available in python
@@ -555,7 +555,6 @@ def commit(self):
555555 '''
556556 if __debug__ :
557557 print >> hyperdb .DEBUG , 'commit' , (self ,)
558- # TODO: lock the DB
559558
560559 # keep a handle to all the database files opened
561560 self .databases = {}
@@ -569,7 +568,6 @@ def commit(self):
569568 for db in self .databases .values ():
570569 db .close ()
571570 del self .databases
572- # TODO: unlock the DB
573571
574572 # reindex the nodes that request it
575573 for classname , nodeid in filter (None , reindex .keys ()):
You can’t perform that action at this time.
0 commit comments