Permalink
Switch branches/tags
{{ refName }}
default
master
Could not load branches
Nothing to show
Could not load tags
Nothing to show
{{ refName }}
default
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Commits on Oct 10, 2022
-
* Update the copyright years. * Update some wording in the history introduction. * Change capitalization of the word "internet".
Commits on Jul 7, 2022
Commits on Jun 2, 2022
-
Best Practices: Add note about object/Any (#1198)
Part of #851 Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
Commits on May 24, 2022
Commits on May 21, 2022
-
Split Best Practics document from Stubs document (#1193)
Move all "style guide" items over that apply to both stubs as well as implementation. The items are reordered and the "Types" section was split, but the text itself is unchanged. Part of #851
-
Commits on May 19, 2022
Commits on May 1, 2022
Commits on Apr 29, 2022
Commits on Apr 19, 2022
-
Change home URL to tree instead of README (#1157)
The README is displayed below the file tree anyway, but this makes it easier to explore the repository.
-
-
Commits on Apr 18, 2022
Commits on Apr 17, 2022
Commits on Apr 16, 2022
-
Fix tests on Python 3.11 (#1139)
- Defer to the PEP 646 implementation in typing.py on 3.11 - Adjust some tests accordingly. Noted a bug in python/cpython#32341 (comment) - typing._type_check() is more lenient in 3.11 and no longer rejects ints - The representation of the empty tuple type changed Tests pass for me on a 3.11 build from today now.
-
-
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
-
Commits on Apr 15, 2022
Commits on Apr 11, 2022
-
Fix "accepts only single type" errors (#1130)
- Add "a" to make the message grammatical - Add a trailing period because _type_check adds another sentence after it. For example, `Unpack[3]` on 3.10 currently fails with `TypeError: Unpack accepts only single type Got 3.`. - Use an f-string
-