Add stubs for UserList, UserString, UserDict.

This commit is contained in:
Tim Abbott
2016-01-27 21:33:26 -08:00
parent c48b931d92
commit fcb63d2028
6 changed files with 17 additions and 14 deletions

View File

@@ -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