Message7333

Author duffy151
Recipients duffy151
Date 2012-07-23.21:28:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1343078925.34.0.602614561552.issue1948@psf.upfronthosting.co.za>
In-reply-to
Content
Here is the jython output:
===>
>java -jar ./code/jython2.7a2/jython.jar 
Jython 2.7a2 (default:9c148a201233, May 24 2012, 15:49:00) 
[Java HotSpot(TM) 64-Bit Server VM (Apple Inc.)] on java1.6.0_33
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys, os.path
>>> sys.version
'2.7a2 (default:9c148a201233, May 24 2012, 15:49:00) \n[Java HotSpot(TM) 64-Bit Server VM (Apple Inc.)]'
>>> os.path.exists('')
True
>>> 

<===

Versus the CPython output:
>python
Python 2.7.3 (default, Jul  9 2012, 10:36:52) 
[GCC 4.2.1 Compatible Apple Clang 4.0 (tags/Apple/clang-418.0.60)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys, os.path
>>> sys.version
'2.7.3 (default, Jul  9 2012, 10:36:52) \n[GCC 4.2.1 Compatible Apple Clang 4.0 (tags/Apple/clang-418.0.60)]'
>>> os.path.exists('')
False
>>>
History
Date User Action Args
2012-07-23 21:28:45duffy151setmessageid: <1343078925.34.0.602614561552.issue1948@psf.upfronthosting.co.za>
2012-07-23 21:28:45duffy151setrecipients: + duffy151
2012-07-23 21:28:45duffy151linkissue1948 messages
2012-07-23 21:28:44duffy151create