Message6320

Author kieffer
Recipients kieffer
Date 2011-01-10.10:27:40
SpamBayes Score 0.000619017
Marked as misclassified No
Message-id <1294655260.8.0.306228317958.issue1695@psf.upfronthosting.co.za>
In-reply-to
Content
This bug has been noticed under windows ... not under linux.

C:\Users\kieffer.ESRF\workspace\tests>python
Python 2.6.2 (r262:71605, Apr 14 2009, 22:40:02) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> a="${NonExistingKey}"
>>> import os
>>> os.path.expandvars(a)
'${NonExistingKey}'
>>>

C:\Users\kieffer.ESRF\workspace\tests>jython
Jython 2.5.2rc2 (Release_2_5_2rc2:7167, Oct 24 2010, 22:48:30)
[Java HotSpot(TM) Client VM (Sun Microsystems Inc.)] on java1.6.0_22
Type "help", "copyright", "credits" or "license" for more information.
>>> a="${NonExistingKey}"
>>> import os
>>> os.path.expandvars(a)
''
History
Date User Action Args
2011-01-10 10:27:40kieffersetrecipients: + kieffer
2011-01-10 10:27:40kieffersetmessageid: <1294655260.8.0.306228317958.issue1695@psf.upfronthosting.co.za>
2011-01-10 10:27:40kiefferlinkissue1695 messages
2011-01-10 10:27:40kieffercreate