Message1099

Author pekka.klarck
Recipients
Date 2006-02-02.23:35:25
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
C:\temp>python
Python 2.4 (#60, Nov 30 2004, 11:49:19) [MSC v.1310 32
bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for
more information.
>>> import os
>>> os.path.abspath('..')
'C:\\'
>>> ^Z


C:\temp>jython
Jython 2.2a1 on java1.5.0_04 (JIT: null)
Type "copyright", "credits" or "license" for more
information.
>>> import os
>>> os.path.abspath('..')
'C:\\temp\\..'
>>> os.path.normpath(os.path.abspath('..'))
'C:'
>>> ^Z
History
Date User Action Args
2008-02-20 17:17:27adminlinkissue1423047 messages
2008-02-20 17:17:27admincreate