Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Side by Side Diff: third_party/google-endpoints/future/moves/urllib/parse.py

Issue 2666783008: Add google-endpoints to third_party/. (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 from __future__ import absolute_import
2 from future.standard_library import suspend_hooks
3
4 from future.utils import PY3
5
6 if PY3:
7 from urllib.parse import *
8 else:
9 __future_module__ = True
10 from urlparse import (ParseResult, SplitResult, parse_qs, parse_qsl,
11 urldefrag, urljoin, urlparse, urlsplit,
12 urlunparse, urlunsplit)
13
14 # we use this method to get at the original py2 urllib before any renaming
15 # quote = sys.py2_modules['urllib'].quote
16 # quote_plus = sys.py2_modules['urllib'].quote_plus
17 # unquote = sys.py2_modules['urllib'].unquote
18 # unquote_plus = sys.py2_modules['urllib'].unquote_plus
19 # urlencode = sys.py2_modules['urllib'].urlencode
20 # splitquery = sys.py2_modules['urllib'].splitquery
21
22 with suspend_hooks():
23 from urllib import (quote,
24 quote_plus,
25 unquote,
26 unquote_plus,
27 urlencode,
28 splitquery)
OLDNEW
« no previous file with comments | « third_party/google-endpoints/future/moves/urllib/error.py ('k') | third_party/google-endpoints/future/moves/urllib/request.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698