Patches item #1761465, was opened at 2007-07-26 18:37
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=305470&aid=1761465&group_id=5470

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Macintosh
Group: Python 3000
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Jeffrey Yasskin (jyasskin)
Assigned to: Jack Jansen (jackjansen)
Summary: struni: Fix test_aepack by converting 4cc's to bytes

Initial Comment:
Also includes a simple fix for test_applesingle.

The core of this fix is to change 
Python/mactoolboxglue.c:PyMac_BuildOSType(OSType) to return a bytes object 
instead of a str8, and then to go through the python code and change the 
four-character-codes to bytes. This hits a snag when they're used as dictionary 
keys, since bytes isn't hashable, so a hacky little b2i() function converts 
them to ints first. b2i() should go away when someone writes the general 
bytes/int conversion api.

This is discussed some at 
http://mail.python.org/pipermail/python-3000/2007-July/008935.html. If Talin's 
and Ronald's preference from that thread is taken, then PyMac_BuildOSType 
should return their new type instead.

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=305470&aid=1761465&group_id=5470
_______________________________________________
Patches mailing list
Patches@python.org
http://mail.python.org/mailman/listinfo/patches

Reply via email to