Mercurial > p > roundup > code
diff roundup/backends/__init__.py @ 972:ca0a542b2d19
That's gadfly done, mostly.
Things left:
- Class.filter (I'm a wuss ;)
- schema changes adding new non-multilink properties are not implemented.
gadfly doesn't have an ALTER TABLE command, making that quite difficult :)
I had to mangle two unit tests to get this all working:
- gadfly also can't handle two handles open on the one database, so
testIDGeneration doesn't try that.
- testNewProperty is disabled as per the second comment above.
I noticed test_pack was incorrect, and the *dbm tests fail there now.
Looking into it...
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 23 Aug 2002 04:48:10 +0000 |
| parents | 07d8a4e296f8 |
| children | 32e41ddf2edb |
line wrap: on
line diff
--- a/roundup/backends/__init__.py Fri Aug 23 04:42:43 2002 +0000 +++ b/roundup/backends/__init__.py Fri Aug 23 04:48:10 2002 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: __init__.py,v 1.14 2002-08-22 07:56:51 richard Exp $ +# $Id: __init__.py,v 1.15 2002-08-23 04:48:10 richard Exp $ __all__ = [] @@ -42,7 +42,7 @@ if str(message) != 'No module named gadfly': raise else: import back_gadfly - bsddb = back_gadfly + gadfly = back_gadfly __all__.append('gadfly') try: @@ -74,6 +74,10 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.14 2002/08/22 07:56:51 richard +# Whee! It's not finished yet, but I can create a new instance and play with +# it a little bit :) +# # Revision 1.13 2002/07/11 01:11:03 richard # Added metakit backend to the db tests and fixed the more easily fixable test # failures.
