-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adjusting documentation * RTD theme version * Adding circle ci config * Install rtd requirements * requirements.txt no longer needed * Fixing circleci config * Fixing circleci config * Typo fix * Typo fix * Fixing mypy * Fixing test
- Loading branch information
1 parent
962c35f
commit 41a9bda
Showing
7 changed files
with
22 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
__all__ = [ | ||
"Headers", | ||
"RequestHeaders", | ||
"ResponseHeaders", | ||
"Params", | ||
] | ||
|
||
from typing import MutableMapping | ||
|
||
from multidict import MultiDict | ||
from multidict import CIMultiDictProxy, MultiDict | ||
|
||
Headers = MutableMapping[str, str] | MultiDict[str] | ||
Headers.__doc__ = """Type definition for HTTP headers""" | ||
RequestHeaders = MutableMapping[str, str] | MultiDict[str] | ||
RequestHeaders.__doc__ = """Type definition for request HTTP headers""" | ||
|
||
ResponseHeaders = MutableMapping[str, str] | MultiDict[str] | CIMultiDictProxy[str] | ||
ResponseHeaders.__doc__ = """Type definition for response HTTP headers""" | ||
|
||
Params = MutableMapping[str, bool | int | str] | ||
Params.__doc__ = """Type definition for URL (query) parameters""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters