Re: [PyCS-devel] bug in medusa that creates problems for both pycs and pyds (functionality bug, not
Status: Alpha
Brought to you by:
myelin
|
From: Phillip P. <ph...@my...> - 2003-03-04 10:23:48
|
OK, more on this.
I take it that the offending bit is:
# unquote path if necessary (thanks to Skip Montanaro for
pointing
# out that we must unquote in piecemeal fashion).
if '%' in uri:
uri = unquote (uri)
IMHO this should become:
if '%' in uri:
path, qs = urllib.splitquery(uri)
url = unquote(path) + qs
That should unquote the path, but leave the rest to do later. What do you
think?
Cheers,
Phil :)
|