R. David Murray <rdmur...@bitdance.com> added the comment:

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.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue13007>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to