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

Side by Side Diff: third_party/google-endpoints/future/moves/urllib/response.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 standard_library
2 from future.utils import PY3
3
4 if PY3:
5 from urllib.response import *
6 else:
7 __future_module__ = True
8 with standard_library.suspend_hooks():
9 from urllib import (addbase,
10 addclosehook,
11 addinfo,
12 addinfourl)
13
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698