mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-16 00:37:10 +08:00
Merge pull request #69 from timabbott/tabbott-html
Add html module stubs.
This commit is contained in:
2
third_party/2.7/six/moves/__init__.pyi
vendored
2
third_party/2.7/six/moves/__init__.pyi
vendored
@@ -20,6 +20,8 @@ from __builtin__ import xrange as xrange
|
||||
from itertools import izip as zip
|
||||
from itertools import izip_longest as zip_longest
|
||||
import six.moves.cPickle as cPickle
|
||||
import HTMLParser as html_parser
|
||||
import htmlentitydefs as html_entities
|
||||
|
||||
import six.moves.urllib_parse as urllib_parse
|
||||
import six.moves.urllib_error as urllib_error
|
||||
|
||||
2
third_party/3/six/moves/__init__.pyi
vendored
2
third_party/3/six/moves/__init__.pyi
vendored
@@ -23,6 +23,8 @@ from builtins import range as xrange
|
||||
from builtins import zip as zip
|
||||
from itertools import zip_longest as zip_longest
|
||||
import six.moves.cPickle as cPickle
|
||||
import html.parser as html_parser
|
||||
import html.entities as html_entities
|
||||
|
||||
import six.moves.urllib_parse as urllib_parse
|
||||
import six.moves.urllib_error as urllib_error
|
||||
|
||||
Reference in New Issue
Block a user