Mercurial > p > roundup > code
comparison roundup/backends/__init__.py @ 2005:fc52d57c6c3e
documentation cleanup
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 11 Feb 2004 23:55:10 +0000 |
| parents | f63aa57386b0 |
| children | 3f89c8ffe4f1 |
comparison
equal
deleted
inserted
replaced
| 2004:1782fe36e7b8 | 2005:fc52d57c6c3e |
|---|---|
| 13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | 13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" | 14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" |
| 15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, | 15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
| 16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | 16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
| 17 # | 17 # |
| 18 # $Id: __init__.py,v 1.25 2003-10-25 22:53:26 richard Exp $ | 18 # $Id: __init__.py,v 1.26 2004-02-11 23:55:08 richard Exp $ |
| 19 | 19 |
| 20 ''' Container for the hyperdb storage backend implementations. | 20 '''Container for the hyperdb storage backend implementations. |
| 21 | 21 |
| 22 The __all__ variable is constructed containing only the backends which are | 22 The __all__ variable is constructed containing only the backends which are |
| 23 available. | 23 available. |
| 24 ''' | 24 ''' |
| 25 __docformat__ = 'restructuredtext' | |
| 25 | 26 |
| 26 __all__ = [] | 27 __all__ = [] |
| 27 | 28 |
| 28 for backend in ['anydbm', ('mysql', 'MySQLdb'), 'bsddb', 'bsddb3', 'sqlite', | 29 for backend in ['anydbm', ('mysql', 'MySQLdb'), 'bsddb', 'bsddb3', 'sqlite', |
| 29 'metakit', ('postgresql', 'psycopg')]: | 30 'metakit', ('postgresql', 'psycopg')]: |
