Re: [IronPython] os.path functions give wrong result on non-Windows platforms

2005-12-29 Thread Dino Viehland
day, December 28, 2005 10:06 PM To: users@lists.ironpython.com Subject: [IronPython] os.path functions give wrong result on non-Windows platforms Currently, os.path module is same as ntpath, and gives wrong result on non-Windows platforms. IronPython 0.9.6 on .NET 2.0.50727.42 Copyright (c) M

[IronPython] os.path functions give wrong result on non-Windows platforms

2005-12-28 Thread Sanghyeon Seo
Currently, os.path module is same as ntpath, and gives wrong result on non-Windows platforms. IronPython 0.9.6 on .NET 2.0.50727.42 Copyright (c) Microsoft Corporation. All rights reserved. >>> import os >>> os.path.join('a', 'b') 'a\\b' Currently, I have the following code in my site.py, but obv