Message11407

Author trickyturtle
Recipients trickyturtle
Date 2017-05-26.15:04:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1495811091.09.0.733784508063.issue2595@psf.upfronthosting.co.za>
In-reply-to
Content
in the example /tmp is a symlink, but a different symlink could be created using 'ln'

also, for reference, in 2.1 the above code would result in the following:
$print (os.path.isdir('/tmp'))
1
$print (os.path.exists('/tmp'))
1
$print (os.path.isfile('/tmp'))
0
$print (os.path.islink('/tmp'))
0
History
Date User Action Args
2017-05-26 15:04:51trickyturtlesetmessageid: <1495811091.09.0.733784508063.issue2595@psf.upfronthosting.co.za>
2017-05-26 15:04:51trickyturtlesetrecipients: + trickyturtle
2017-05-26 15:04:51trickyturtlelinkissue2595 messages
2017-05-26 15:04:50trickyturtlecreate