Skip to content

Commit b62d20e

Browse files
author
Alexander Smishlajev
committed
remove bsddb, bsddb3 backends
1 parent 4405df1 commit b62d20e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

roundup/backends/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
# FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS"
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
17-
#
18-
# $Id: __init__.py,v 1.27 2004-04-05 23:43:03 richard Exp $
17+
#
18+
# $Id: __init__.py,v 1.28 2004-10-24 08:23:16 a1s Exp $
1919

2020
'''Container for the hyperdb storage backend implementations.
2121
@@ -26,8 +26,8 @@
2626

2727
__all__ = []
2828

29-
for backend in ['anydbm', ('mysql', 'MySQLdb'), ('bsddb', '_bsddb'),
30-
'bsddb3', 'sqlite', 'metakit', ('postgresql', 'psycopg')]:
29+
for backend in ['anydbm', ('mysql', 'MySQLdb'),
30+
'sqlite', 'metakit', ('postgresql', 'psycopg')]:
3131
if len(backend) == 2:
3232
backend, backend_module = backend
3333
else:

0 commit comments

Comments
 (0)