massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / stdlib / 3 / email / mime / base.pyi
1 # Stubs for email.mime.base (Python 3.4)\r
2 \r
3 from typing import Optional, Tuple, Union\r
4 import email.message\r
5 \r
6 _ParamsType = Union[str, None, Tuple[str, Optional[str], str]]\r
7 \r
8 class MIMEBase(email.message.Message):\r
9     def __init__(self, _maintype: str, _subtype: str,\r
10                  **_params: _ParamsType) -> None: ...\r