10000 Generic type aliases by ilevkivskyi · Pull Request #2378 · python/mypy · GitHub
[go: up one dir, main page]

Skip to content

Generic type aliases #2378

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 21 commits into from
Nov 3, 2016
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Yet another tiny correction to docs
  • Loading branch information
ilevkivskyi committed Nov 2, 2016
commit 8cea1560d36cb47fce19bb2146f690a7775b5b14
2 changes: 1 addition & 1 deletion docs/source/kinds_of_types.rst
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ variables replaced with ``Any``. Examples (following `PEP 484

def response(query: str) -> UInt[str]: # Same as Union[str, int]
...
def activate(cb: CBack[T]) -> T: # Same as Callable[..., T]
def activate(cb: CBack[S]) -> S: # Same as Callable[..., S]
...
table_entry: TInt # Same as Tuple[int, Any]

Expand Down
0