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 upendra-k14
Recipients lorenzogotuned, terry.reedy, upendra-k14
Date 2016-05-24.13:21:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1464096109.68.0.833511279502.issue27051@psf.upfronthosting.co.za>
In-reply-to
Content
These are some of the code parts which may be necessary :

1. Code for identification of OS

from sys import platform

if platform.startswith("linux"):
    #linux
elif platform == "darwin":
    #mac os x
else platform == "win32":
    # Windows
History
Date User Action Args
2016-05-24 13:21:49upendra-k14setrecipients: + upendra-k14, terry.reedy, lorenzogotuned
2016-05-24 13:21:49upendra-k14setmessageid: <1464096109.68.0.833511279502.issue27051@psf.upfronthosting.co.za>
2016-05-24 13:21:49upendra-k14linkissue27051 messages
2016-05-24 13:21:49upendra-k14create