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 srid
Recipients srid, tarek
Date 2010-05-20.16:23:38
SpamBayes Score 0.25653318
Marked as misclassified No
Message-id <1274372620.46.0.481962075007.issue8772@psf.upfronthosting.co.za>
In-reply-to
Content
> removing 2.7 as a target -- it's too late

If contribute a patch to `get_current_scheme` and `get_current_user_scheme`, will be accepted as part of 2.7?

Roughly I would do something like this:

            scheme = os.name
            if usersite: # get_current_user_scheme
                if sys.platform == 'darwin':
                    scheme = 'osx_framework_user'
                else:
                    scheme += '_user'
            elif scheme == 'posix':
                scheme = 'posix_prefix'
            return scheme
History
Date User Action Args
2010-05-20 16:23:40sridsetrecipients: + srid, tarek
2010-05-20 16:23:40sridsetmessageid: <1274372620.46.0.481962075007.issue8772@psf.upfronthosting.co.za>
2010-05-20 16:23:38sridlinkissue8772 messages
2010-05-20 16:23:38sridcreate