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.

classification
Title: test_bsddb broken
Type: behavior Stage:
Components: Tests Versions: Python 3.0
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: jcea Nosy List: jcea, pitrou
Priority: critical Keywords:

Created on 2008-09-01 15:09 by pitrou, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg72260 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2008-09-01 15:09
Since the latest bsddb merge, test_bsddb is basically broken, all tests
fail with the same error (see also the buildbots):

======================================================================
ERROR: test_update (test.test_bsddb.TestBTree_InMemory_Truncate)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/antoine/py3k/__svn__/Lib/test/test_bsddb.py", line 20, in
setUp
    self.f = self.do_open(self.fname, self.openflag, cachesize=32768)
  File "/home/antoine/py3k/__svn__/Lib/test/test_bsddb.py", line 17, in
do_open
    return bsddb.StringValues(bsddb.StringKeys(self.openmethod[0](*args,
**kw)))
AttributeError: 'module' object has no attribute 'StringValues'
msg72401 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2008-09-03 17:10
Solved in r66137 and r66138.
History
Date User Action Args
2022-04-11 14:56:38adminsetgithub: 48002
2008-09-03 17:10:32jceasetresolution: accepted -> fixed
2008-09-03 17:10:14jceasetstatus: open -> closed
resolution: accepted
messages: + msg72401
2008-09-01 15:09:11pitroucreate