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 chas17360
Recipients
Date 2006-12-13.13:02:42
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
I may have found a related problem:

The following appears in function list2cmdline():

            elif c == '"':
                # Double backspaces.
                result.append('\\' * len(bs_buf)*2)
                bs_buf = []
                result.append('\\"')

i.e. the character(s) being checked is a double quote, but the comment states 'Double backspaces'.  The code as it is (using Python25) causes a problem when trying to perform a Windows XP copy on a file with whitespace in it's name.  The problem does not occur if the double quote in the code above is replaced by 2 back ticks.
History
Date User Action Args
2007-08-23 14:27:11adminlinkissue1057048 messages
2007-08-23 14:27:11admincreate