Mercurial > p > roundup > code
annotate roundup/backends/__init__.py @ 46:3c5920433866
*sigh* some databases have _foo.so as their underlying implementation.
This time for sure, Rocky.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 23 Jul 2001 07:22:13 +0000 |
| parents | c1f3e058c58d |
| children | 764db91c0dea |
| rev | line source |
|---|---|
|
46
3c5920433866
*sigh* some databases have _foo.so as their underlying implementation.
Richard Jones <richard@users.sourceforge.net>
parents:
44
diff
changeset
|
1 import back_bsddb; bsddb = back_bsddb |
|
3c5920433866
*sigh* some databases have _foo.so as their underlying implementation.
Richard Jones <richard@users.sourceforge.net>
parents:
44
diff
changeset
|
2 import back_anydbm; anydbm = back_anydbm |
|
44
c1f3e058c58d
Moved the database backends off into backends.
Richard Jones <richard@users.sourceforge.net>
parents:
42
diff
changeset
|
3 |
|
c1f3e058c58d
Moved the database backends off into backends.
Richard Jones <richard@users.sourceforge.net>
parents:
42
diff
changeset
|
4 __all__ = ['bsddb', 'anydbm'] |
