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 r.david.murray
Recipients Arfrever, Niklas.Brunberg, jcea, marienz, python-dev, r.david.murray
Date 2012-03-30.15:28:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1333121316.25.0.964306266305.issue13007@psf.upfronthosting.co.za>
In-reply-to
Content
Oh, I meant sticking a print statement into the stdlib code.

But I really think your problem is that you aren't running the 3.2.3 stdlib code.

Try opening up the file /Library/Frameworks/Python.framework/Versions/3.2/lib/python3.2/dbm/__init__.py in your favorite editor, and see if there is a line that says:

  if magic in (0x13579ace, 0x13579acd, 0x13579acf):

If it instead says:

  if magic == 0x13579ace:

Then you are using the 3.2 stdlib (which from the traceback filenames it looks like you are).

In other words, I'm pretty sure what you have here is a problem with correctly installing or running the 3.2.3RC2 version of python, and you should ask for help on python-list.
History
Date User Action Args
2012-03-30 15:28:36r.david.murraysetrecipients: + r.david.murray, jcea, marienz, Arfrever, python-dev, Niklas.Brunberg
2012-03-30 15:28:36r.david.murraysetmessageid: <1333121316.25.0.964306266305.issue13007@psf.upfronthosting.co.za>
2012-03-30 15:28:35r.david.murraylinkissue13007 messages
2012-03-30 15:28:35r.david.murraycreate