Sridhar Ratnakumar <sridh...@activestate.com> added the comment:

> 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

----------

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

Reply via email to