summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2013-09-05 14:38:59 -0500
committerAymeric Augustin <aymeric.augustin@m4x.org>2013-09-05 14:39:23 -0500
commit6a6428a36f221446b17eaf4876e92d3db1781962 (patch)
treea57290e315203b770a56b0d4691ee2d4d104cccc /docs
parented9cd4fd8b425ab5010b27aefc7ef6e50d55fb54 (diff)
Took advantage of django.utils.six.moves.urllib.*.
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/python3.txt9
1 files changed, 0 insertions, 9 deletions
diff --git a/docs/topics/python3.txt b/docs/topics/python3.txt
index 8f2306962b..372de1009d 100644
--- a/docs/topics/python3.txt
+++ b/docs/topics/python3.txt
@@ -367,15 +367,6 @@ Moved modules
Some modules were renamed in Python 3. The :mod:`django.utils.six.moves
<six.moves>` module provides a compatible location to import them.
-The ``urllib``, ``urllib2`` and ``urlparse`` modules were reworked in depth
-and :mod:`django.utils.six.moves <six.moves>` doesn't handle them. Django
-explicitly tries both locations, as follows::
-
- try:
- from urllib.parse import urlparse, urlunparse
- except ImportError: # Python 2
- from urlparse import urlparse, urlunparse
-
PY2
~~~