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 Niklas.Brunberg
Recipients Arfrever, Niklas.Brunberg, jcea, marienz, python-dev
Date 2012-03-30.14:55:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1333119319.96.0.63656833233.issue13007@psf.upfronthosting.co.za>
In-reply-to
Content
This fix should be included in RC2, right? Because I can't get it to work.

Amarok:roller niklas$ ls
data.db		roller.py
Amarok:roller niklas$ python3-32 
Python 3.2.3rc2 (v3.2.3rc2:428f05cb7277, Mar 18 2012, 00:08:43) 
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import shelve
>>> file = shelve.open("data.db")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/Library/Frameworks/Python.framework/Versions/3.2/lib/python3.2/shelve.py", line 232, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/Library/Frameworks/Python.framework/Versions/3.2/lib/python3.2/shelve.py", line 216, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
  File "/Library/Frameworks/Python.framework/Versions/3.2/lib/python3.2/dbm/__init__.py", line 83, in open
    raise error[0]("db type could not be determined")
dbm.error: db type could not be determined
History
Date User Action Args
2012-03-30 14:55:20Niklas.Brunbergsetrecipients: + Niklas.Brunberg, jcea, marienz, Arfrever, python-dev
2012-03-30 14:55:19Niklas.Brunbergsetmessageid: <1333119319.96.0.63656833233.issue13007@psf.upfronthosting.co.za>
2012-03-30 14:55:19Niklas.Brunberglinkissue13007 messages
2012-03-30 14:55:19Niklas.Brunbergcreate