Message2064

Author billiejoex
Recipients
Date 2008-01-25.19:31:11
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
On windows XP prof SP2:


C:\Python23>python.exe
Python 2.3.5 (#62, Feb  8 2005, 16:23:02) [MSC v.1200 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> os.path.isabs('/a')
True
>>> os.path
<module 'ntpath' from 'C:\Python23\lib\ntpath.pyc'>
>>>



C:\dist>jython.bat
Jython 2.3a0 on java1.6.0_04
Type "copyright", "credits" or "license" for more information.
>>> import os
>>> os.path.isabs('/a')
False
>>> os.path
<module 'javapath' from 'C:\dist\Lib\javapath.py'>
>>>
History
Date User Action Args
2008-02-20 17:18:10adminlinkissue1879935 messages
2008-02-20 17:18:10admincreate