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 polaar
Recipients polaar
Date 2007-10-03.16:45:20
SpamBayes Score 0.36651337
Marked as misclassified No
Message-id <1191429921.84.0.632330951206.issue1233@psf.upfronthosting.co.za>
In-reply-to
Content
The check for DB_RECNO seems to do the opposite of what it's supposed to do:

    def append(self, value, txn=None):
        if self.get_type() != db.DB_RECNO:
            self.append = self.__append
            return self.append(value, txn=txn)
        raise db.DBError, "append() only supported when dbshelve opened
with filetype=dbshelve.db.DB_RECNO"
History
Date User Action Args
2007-10-03 16:45:22polaarsetspambayes_score: 0.366513 -> 0.36651337
recipients: + polaar
2007-10-03 16:45:21polaarsetspambayes_score: 0.366513 -> 0.366513
messageid: <1191429921.84.0.632330951206.issue1233@psf.upfronthosting.co.za>
2007-10-03 16:45:21polaarlinkissue1233 messages
2007-10-03 16:45:21polaarcreate