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 Светломир Балевски
Recipients Светломир Балевски
Date 2019-10-03.11:44:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1570103092.18.0.780844249271.issue38362@roundup.psfhosted.org>
In-reply-to
Content
Hi, I am using platform.system(). On linux I am using python3.6. 
>>> platform.system()
'Linux'
>>> platform.system() is 'Linux'
False 
>>> platform.system() == 'Linux'
True 

On Windows with python 3.7:
[‎10/‎3/‎2019 2:42 PM]  
>>> platform.system()
'Windows'
>>> platform.system() is 'Windows'
True
>>> platform.system() == 'Windows'
True 

Is this a known problem?
History
Date User Action Args
2019-10-03 11:44:52Светломир Балевскиsetrecipients: + Светломир Балевски
2019-10-03 11:44:52Светломир Балевскиsetmessageid: <1570103092.18.0.780844249271.issue38362@roundup.psfhosted.org>
2019-10-03 11:44:52Светломир Балевскиlinkissue38362 messages
2019-10-03 11:44:52Светломир Балевскиcreate