Skip to content

Commit 3d0c72f

Browse files
author
Richard Jones
committed
minor changes
1 parent 24b8cf9 commit 3d0c72f

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

TODO.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ pending hyperdb migrate "id" property to be Number type
1818
pending hyperdb multilink sorting by length is dumb
1919
pending 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
2321
pending tracker split instance.open() into open() and login()
2422
pending 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
3230
pending mailgw Allow different brackets delimiting [issueNNN] in Subject
3331
pending 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.
3632
pending project switch to a Roundup instance for Roundup bug/feature tracking
3733
pending security authenticate over a secure connection
3834
pending security optionally auth with Basic HTTP auth instead of cookies

roundup/backends/back_anydbm.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
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
'''
2020
This module defines a backend that saves the hyperdatabase in a database
2121
chosen 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()):

0 commit comments

Comments
 (0)