PY3 things

This commit is contained in:
Roland Hedberg
2015-09-07 09:09:37 +02:00
parent b7be49dbae
commit 3252037282
3 changed files with 955 additions and 897 deletions

View File

@@ -1,7 +1,4 @@
import logging
from urllib import urlencode
from urlparse import parse_qs
from urlparse import urlsplit
import six
import time
import ldap
@@ -13,6 +10,8 @@ from saml2.httputil import Redirect
from saml2.httputil import Unauthorized
from saml2.httputil import parse_cookie
from six.moves.urllib.parse import urlencode, parse_qs, urlsplit
__author__ = 'rolandh'
logger = logging.getLogger(__name__)

View File

@@ -6,8 +6,6 @@
to conclude its tasks.
"""
import threading
from six.moves.urllib.parse import urlencode
from six.moves.urllib.parse import urlparse
import six
from saml2.entity import Entity
@@ -26,8 +24,11 @@ import time
from saml2.soap import make_soap_enveloped_saml_thingy
from six.moves.urllib.parse import parse_qs
from six.moves.urllib.parse import urlencode
from six.moves.urllib.parse import urlparse
from saml2.s_utils import signature, UnravelError, exception_trace
from saml2.s_utils import signature
from saml2.s_utils import UnravelError
from saml2.s_utils import do_attributes
from saml2 import samlp, BINDING_SOAP, SAMLError

File diff suppressed because it is too large Load Diff