Message10162

Author tchaypo
Recipients tchaypo
Date 2015-07-23.07:35:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1437636932.51.0.417850997954.issue2380@psf.upfronthosting.co.za>
In-reply-to
Content
⏚ 1d [:/tmp] [default] $ cat version_info.py
import sys
import platform

print platform.python_implementation()
print type(sys.version_info)
print sys.version_info
⏚ 1d [:/tmp] [default] $ python2.6 version_info.py
CPython
<type 'tuple'>
(2, 6, 9, 'final', 0)
⏚ 1d [:/tmp] [default] $ python2.7 version_info.py
CPython
<type 'sys.version_info'>
sys.version_info(major=2, minor=7, micro=6, releaselevel='final', serial=0)
⏚ 1d [:/tmp] [default] $ jython version_info.py
warning: /Users/james/.jython is a directory, not a file
Jython
<type 'tuple'>
(2, 7, 0, 'final', 0)
⏚ 1d [:/tmp] [default] $
History
Date User Action Args
2015-07-23 07:35:32tchayposetrecipients: + tchaypo
2015-07-23 07:35:32tchayposetmessageid: <1437636932.51.0.417850997954.issue2380@psf.upfronthosting.co.za>
2015-07-23 07:35:32tchaypolinkissue2380 messages
2015-07-23 07:35:31tchaypocreate