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 jackjansen
Recipients
Date 2003-08-01.09:40:07
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=45365

The problem is not with your ucs4 build, this call always fails 
under MacOSX. The problem is that the 'sysu' gestalt selector isn't 
available under OSX.

The code in _mac_ver_lookup does a try/except on RuntimeError 
around the call to gestalt, but I don't remember MacOS.Error ever 
being a subclass of RuntimeError. Currently MacOS.Error is in a 
class by itself, it should probably be an OSError subclass, but that 
still won't fix this.

I suggest doing the try/except on MacOS.Error.
History
Date User Action Args
2007-08-23 14:15:32adminlinkissue780461 messages
2007-08-23 14:15:32admincreate