diff options
author | Nate Prewitt <nate.prewitt@gmail.com> | 2018-06-14 07:39:13 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-14 07:39:13 -0700 |
commit | cd4762d5a3b56d8933d1d9c1dff365fc5db4c768 (patch) | |
tree | 7527463d2cef00a5bc3bae79f4a27574e65f37a5 /requests/types.py | |
parent | 8f3f022c54db7c8348c84c079dfe7f7c354f1062 (diff) | |
parent | 2bbe38fd8b5ea2bbd5873ff286659d3c1abadec8 (diff) | |
download | python-requests-3.0.tar.gz |
Merge pull request #4551 from RatanShreshtha/3.03.0
Updated types in __init__.py according to types.py
Diffstat (limited to 'requests/types.py')
-rw-r--r-- | requests/types.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/requests/types.py b/requests/types.py index 4b609867..0ea5d7b6 100644 --- a/requests/types.py +++ b/requests/types.py @@ -68,3 +68,5 @@ Host = str Sequence = List Filename = str KeyValueList = List[Tuple[Text, Text]] +String = str +Boolean = Union[bool, None] |