| Index: third_party/google-endpoints/future/moves/html/parser.py
|
| diff --git a/third_party/google-endpoints/future/moves/html/parser.py b/third_party/google-endpoints/future/moves/html/parser.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a6115b59f0892168ff10e5f4aecf7b20c58f79ee
|
| --- /dev/null
|
| +++ b/third_party/google-endpoints/future/moves/html/parser.py
|
| @@ -0,0 +1,8 @@
|
| +from __future__ import absolute_import
|
| +from future.utils import PY3
|
| +__future_module__ = True
|
| +
|
| +if PY3:
|
| + from html.parser import *
|
| +else:
|
| + from HTMLParser import *
|
|
|