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:26:42
SpamBayes Score 0.34500784
Marked as misclassified No
Message-id <1274372804.46.0.0739306119852.issue8772@psf.upfronthosting.co.za>
In-reply-to
Content
Here it is:

        def get_current_scheme():
            scheme = os.name
            if scheme == 'posix':
                scheme = 'posix_prefix'
            return scheme

        def get_current_user_scheme():
            scheme = os.name
            if sys.platform == 'darwin':
                scheme = 'osx_framework_user'
            else:
                scheme += '_user'
            return scheme

What do you think?
History
Date User Action Args
2010-05-20 16:26:44sridsetrecipients: + srid, tarek
2010-05-20 16:26:44sridsetmessageid: <1274372804.46.0.0739306119852.issue8772@psf.upfronthosting.co.za>
2010-05-20 16:26:42sridlinkissue8772 messages
2010-05-20 16:26:42sridcreate