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.

作者 vstinner
收信人 neologix, vstinner
日期 2011-06-13.14:38:23
SpamBayes Score 0.00016956203
Marked as misclassified
Message-id <1307975904.51.0.369737860423.issue12326@psf.upfronthosting.co.za>
In-reply-to
内容
Why should be used instead?
 - sys.platform.startswith('linux')
 - os.uname()[0] == 'Linux'
 - platform.system() == 'Linux'
 - other?

Tests like sys.platform in ('linux2', 'darwin') can be replaced by sys.platform in ('linux2', 'linux3', 'darwin'). We will have to patch this test again for Linux 4.
历史
日期 用户 动作 参数
2011-06-13 14:38:24vstinner修改recipients: + vstinner, neologix
2011-06-13 14:38:24vstinner修改messageid: <1307975904.51.0.369737860423.issue12326@psf.upfronthosting.co.za>
2011-06-13 14:38:23vstinner链接issue12326 messages
2011-06-13 14:38:23vstinner创建