Merge pull request #68 from timabbott/tabbott-stubs

Expand stubs for simplejson, unittest, email
This commit is contained in:
Guido van Rossum
2016-01-27 19:49:53 -08:00
7 changed files with 212 additions and 13 deletions

View File

@@ -1,11 +1,11 @@
# Stubs for email (Python 3.4)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
def message_from_string(s, *args, **kws): ...
def message_from_bytes(s, *args, **kws): ...
def message_from_file(fp, *args, **kws): ...
def message_from_binary_file(fp, *args, **kws): ...
from typing import IO, Any
def message_from_string(s: str, *args, **kwargs): ...
def message_from_bytes(s: bytes, *args, **kwargs): ...
def message_from_file(fp: IO[str], *args, **kwargs): ...
def message_from_binary_file(fp: IO[bytes], *args, **kwargs): ...
# Names in __all__ with no definition:
# base64mime