New submission from monk.e.boy <[EMAIL PROTECTED]>:
Hi,
The way urljoin works is a bit funky, equivalent paths do not get
cleaned in a consistent way:
import urlparse
import posixpath
print urlparse.urljoin('http://www.example.com', '///')
print urlparse.urljo
New submission from monk.e.boy <[EMAIL PROTECTED]>:
Hi,
This is my first problem with anything Python :-) and my first issue.
Doing in the following:
urlparse.urljoin( 'http://site.com/', '../../../../path/' )
'http://site.com/../../../../path/'