This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author josiahcarlson
Recipients ghaering, gregburd, gregory.p.smith, jcea, josiahcarlson, pitrou, rhettinger, skip.montanaro
Date 2008-09-11.18:25:58
SpamBayes Score 5.4955613e-06
Marked as misclassified No
Message-id <1221157605.43.0.863187200707.issue3783@psf.upfronthosting.co.za>
In-reply-to
Content
> I like Skip's version better, because it's closer to the dbm
> "specification" instead of trying to mimic bsddb (first, last, etc.).
> I'd like to keep such things out.

dbm.sqlite is meant as a potential replacement of dbm.bsddb.  Since 
people do use the extra methods (.first(), .last(), etc.), not having 
them could lead to breakage.

Separating them out into a subclass (regular open doesn't have it, but 
btopen does), along with all of the other order guarantees (the ORDER BY 
clauses in the SQL statements), could keep it fast for people who don't 
care about ordering, and keep it consistent for those who do care about 
ordering.

Attached you will find an updated version.
History
Date User Action Args
2008-09-11 18:26:45josiahcarlsonsetrecipients: + josiahcarlson, skip.montanaro, rhettinger, gregory.p.smith, jcea, ghaering, pitrou, gregburd
2008-09-11 18:26:45josiahcarlsonsetmessageid: <1221157605.43.0.863187200707.issue3783@psf.upfronthosting.co.za>
2008-09-11 18:26:00josiahcarlsonlinkissue3783 messages
2008-09-11 18:26:00josiahcarlsoncreate