fix urlparse monkeypatches for python 2.7.4. closes #144

This commit is contained in:
Daniel Graña 2012-06-18 11:50:43 -03:00
parent 7bbeadb92c
commit c065f2c922
1 changed files with 6 additions and 2 deletions

View File

@ -1,7 +1,11 @@
from urlparse import urlparse, uses_netloc, uses_query
from urlparse import urlparse
# workaround for http://bugs.python.org/issue7904
# workaround for http://bugs.python.org/issue7904 - Python < 2.7
if urlparse('s3://bucket/key').netloc != 'bucket':
from urlparse import uses_netloc
uses_netloc.append('s3')
# workaround for http://bugs.python.org/issue9374 - Python < 2.7.4
if urlparse('s3://bucket/key?key=value').query != 'key=value':
from urlparse import uses_query
uses_query.append('s3')