mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-19 09:32:49 +08:00
Add stubs for UserList, UserString, UserDict.
This commit is contained in:
4
third_party/2.7/six/moves/__init__.pyi
vendored
4
third_party/2.7/six/moves/__init__.pyi
vendored
@@ -14,8 +14,8 @@ from __builtin__ import reduce as reduce
|
||||
from pipes import quote as shlex_quote
|
||||
from StringIO import StringIO as StringIO
|
||||
from UserDict import UserDict as UserDict
|
||||
## from UserList import UserList as UserList
|
||||
## from UserString import UserString as UserString
|
||||
from UserList import UserList as UserList
|
||||
from UserString import UserString as UserString
|
||||
from __builtin__ import xrange as xrange
|
||||
from itertools import izip as zip
|
||||
from itertools import izip_longest as zip_longest
|
||||
|
||||
6
third_party/3/six/moves/__init__.pyi
vendored
6
third_party/3/six/moves/__init__.pyi
vendored
@@ -16,9 +16,9 @@ from imp import reload as reload_module
|
||||
from functools import reduce as reduce
|
||||
from shlex import quote as shlex_quote
|
||||
from io import StringIO as StringIO
|
||||
# from collections import UserDict as UserDict
|
||||
# from collections import UserList as UserList
|
||||
# from collections import UserString as UserString
|
||||
from collections import UserDict as UserDict
|
||||
from collections import UserList as UserList
|
||||
from collections import UserString as UserString
|
||||
from builtins import range as xrange
|
||||
from builtins import zip as zip
|
||||
from itertools import zip_longest as zip_longest
|
||||
|
||||
Reference in New Issue
Block a user