This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author adalvi
Recipients
Date 2002-06-26.19:48:03
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
In distutils/util.py, in the function convert_path, I find I 
have to add the following two lines:

def convert_path (pathname):
    ...
    if os.sep == '/':
        return pathname
>>    if pathname=='':
>>        return pathname

This is required when installing piddle-1.0.15 on a Win32 
platform.  It is required under Python 2.1.2 as well as 
2.2.1.

I don't know if it is something specific to piddle, Win32, 
or something else.
History
Date User Action Args
2007-08-23 14:02:25adminlinkissue574235 messages
2007-08-23 14:02:25admincreate