Skip to content

Commit

Permalink
compat: (py2) urlparse = urllib.parse (py3)
Browse files Browse the repository at this point in the history
  • Loading branch information
casimir committed Nov 19, 2018
1 parent 75edc4f commit 9b36eba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
7 changes: 0 additions & 7 deletions rest_framework/compat.py
Expand Up @@ -17,13 +17,6 @@
# Python 2.7
from collections import Mapping # noqa

try:
# Python 3
import urllib.parse as urlparse # noqa
except ImportError:
# Python 2.7
from urlparse import urlparse # noqa

try:
from django.urls import ( # noqa
URLPattern,
Expand Down
3 changes: 2 additions & 1 deletion rest_framework/renderers.py
Expand Up @@ -21,11 +21,12 @@
from django.urls import NoReverseMatch
from django.utils import six
from django.utils.html import mark_safe
from django.utils.six.moves.urllib import parse as urlparse

from rest_framework import VERSION, exceptions, serializers, status
from rest_framework.compat import (
INDENT_SEPARATORS, LONG_SEPARATORS, SHORT_SEPARATORS, coreapi, coreschema,
pygments_css, urlparse, yaml
pygments_css, yaml
)
from rest_framework.exceptions import ParseError
from rest_framework.request import is_form_media_type, override_method
Expand Down

0 comments on commit 9b36eba

Please sign in to comment.