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 ronaldoussoren
Recipients flox, janssen, ronaldoussoren, vstinner
Date 2010-05-24.06:33:47
SpamBayes Score 0.0063848407
Marked as misclassified No
Message-id <1274682830.24.0.0480527696695.issue8446@psf.upfronthosting.co.za>
In-reply-to
Content
The patch somewhat works, in that it makes test_py3kwarn pass but I'd add more filterwarning calls:

        filterwarnings("ignore", ".*the icglue module is removed",
            DeprecationWarning)
        filterwarnings("ignore", ".*the MacOS module is removed",
            DeprecationWarning)
        filterwarnings("ignore", ".*the macostools module is removed",
            DeprecationWarning)

This ensures that importing webbrowser won't trigger py3k warnings.
 
It is probably safe to remove the import of 'ic' and related code the block with guard "if sys.platform == 'darwin'" just below that overrides the IC based browser detection by one that doesn't use IC (that one is added to the front of the search list, which means the IC one never gets used).
History
Date User Action Args
2010-05-24 06:33:51ronaldoussorensetrecipients: + ronaldoussoren, janssen, vstinner, flox
2010-05-24 06:33:50ronaldoussorensetmessageid: <1274682830.24.0.0480527696695.issue8446@psf.upfronthosting.co.za>
2010-05-24 06:33:48ronaldoussorenlinkissue8446 messages
2010-05-24 06:33:47ronaldoussorencreate