[Python 3] urllib.urlencode / httplib module change
Summary:
try: import httplib except ImportError: import http.client as httplib try: from urlparse import urlparse except ImportError: from urllib.parse import urlparse try: from urllib import urlencode except ImportError: from urllib.parse import urlencode
Reviewers: PyKolab Developers, sicherha
Reviewed By: PyKolab Developers, sicherha
Subscribers: sicherha
Differential Revision: https://git.kolab.org/D3878