Skip to content

Commit 4c3862e

Browse files
author
Richard Jones
committed
*sigh* some databases have _foo.so as their underlying implementation.
This time for sure, Rocky.
1 parent 36476a0 commit 4c3862e

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

roundup/backends/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import _bsddb; bsddb = _bsddb
2-
import _anydbm; anydbm = _anydbm
1+
import back_bsddb; bsddb = back_bsddb
2+
import back_anydbm; anydbm = back_anydbm
33

44
__all__ = ['bsddb', 'anydbm']
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#$Id: _anydbm.py,v 1.1 2001-07-23 07:15:57 richard Exp $
1+
#$Id: back_anydbm.py,v 1.1 2001-07-23 07:22:13 richard Exp $
22

33
import anydbm, os, cPickle
44
from roundup import hyperdb, date
@@ -162,4 +162,7 @@ def rollback(self):
162162

163163
#
164164
#$Log: not supported by cvs2svn $
165+
#Revision 1.1 2001/07/23 07:15:57 richard
166+
#Moved the backends into the backends package. Anydbm hasn't been tested at all.
167+
#
165168
#
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#$Id: _bsddb.py,v 1.1 2001-07-23 07:15:57 richard Exp $
1+
#$Id: back_bsddb.py,v 1.1 2001-07-23 07:22:13 richard Exp $
22

33
import bsddb, os, cPickle
44
from roundup import hyperdb, date
@@ -169,6 +169,9 @@ def rollback(self):
169169

170170
#
171171
#$Log: not supported by cvs2svn $
172+
#Revision 1.1 2001/07/23 07:15:57 richard
173+
#Moved the backends into the backends package. Anydbm hasn't been tested at all.
174+
#
172175
#Revision 1.1 2001/07/23 06:23:41 richard
173176
#moved hyper_bsddb.py to the new backends package as bsddb.py
174177
#

0 commit comments

Comments
 (0)