Indicate Py3 vs. Py2 codepath.

This commit is contained in:
Kyle Kelley 2014-01-21 14:47:58 -06:00
parent 5800b1c625
commit 104275ab73

View File

@ -17,9 +17,9 @@ Authors:
#-----------------------------------------------------------------------------
try:
from urllib.parse import urlparse
from urllib.parse import urlparse # Py 3
except ImportError:
from urlparse import urlparse
from urlparse import urlparse # Py 2
try:
from http.cookies import SimpleCookie # Py 3