index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
typing.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-112345: `typing.Protocol`: Let failed subclasscheck show non-method member...
Randolf Scholz
2023-11-24
1
-1/+6
*
gh-112194: Convert more examples to doctests in `typing.py` (#112195)
Nikita Sobolev
2023-11-17
1
-31/+43
*
gh-112155: Run `typing.py` doctests as part of `test_typing` (#112156)
Nikita Sobolev
2023-11-16
1
-2/+2
*
GH-112152: Fix typo in `typing.override` docstring (#112158)
Qua27
2023-11-16
1
-1/+1
*
gh-110682: Ignore `__match_args__` from `__instancecheck__` in protocols (#11...
Nikita Sobolev
2023-10-12
1
-1/+2
*
gh-110180: Remove unused `_PickleUsingNameMixin` class from `typing` (#110181)
Alex Waygood
2023-10-01
1
-7/+0
*
gh-109653: `typing.py`: improve import time by creating soft-deprecated membe...
Alex Waygood
2023-09-23
1
-8/+18
*
gh-109543: Remove unnecessary hasattr check (#109544)
Jelle Zijlstra
2023-09-20
1
-2/+1
*
gh-105509: Simplify implementation of `typing.Annotated` (#105510)
Alex Waygood
2023-09-01
1
-25/+13
*
gh-106309: Deprecate typing.no_type_check_decorator (#106312)
Alex Waygood
2023-07-13
1
-0/+2
*
gh-105974: Revert unintentional behaviour change for protocols with non-calla...
Alex Waygood
2023-06-23
1
-32/+33
*
gh-105570: Deprecate unusual ways of creating empty TypedDicts (#105780)
Alex Waygood
2023-06-14
1
-2/+17
*
gh-105566: Deprecate unusual ways of creating `typing.NamedTuple` classes (#1...
Alex Waygood
2023-06-14
1
-3/+45
*
gh-104873: Add typing.get_protocol_members and typing.is_protocol (#104878)
Jelle Zijlstra
2023-06-14
1
-0/+42
*
Miscellaneous improvements to the typing docs (#105529)
Alex Waygood
2023-06-09
1
-6/+6
*
Further improve docs for `typing.Annotated` (#105498)
Alex Waygood
2023-06-08
1
-6/+8
*
typing: Improve documentation of generic classes and aliases (#105369)
Alex Waygood
2023-06-07
1
-3/+5
*
gh-105430: Remove `typing._Immutable` unused internal helper (#105434)
Nikita Sobolev
2023-06-07
1
-11/+0
*
gh-105286: Further improvements to `typing.py` docstrings (#105363)
Alex Waygood
2023-06-07
1
-25/+43
*
gh-105286: Improve `typing.py` docstrings (#105287)
Alex Waygood
2023-06-05
1
-217/+253
*
gh-105280: Ensure `isinstance([], collections.abc.Mapping)` always evaluates ...
Alex Waygood
2023-06-05
1
-8/+20
*
gh-105237: Allow calling `issubclass(X, typing.Protocol)` again (#105239)
Alex Waygood
2023-06-05
1
-0/+4
*
gh-105144: Runtime-checkable protocols: move all 'sanity checks' to `_Protoco...
Alex Waygood
2023-05-31
1
-19/+15
*
gh-104943: Remove mentions of old Python versions (#104945)
Tomas R
2023-05-26
1
-4/+1
*
gh-104786: Remove kwargs-based TypedDict creation (#104891)
Tomas R
2023-05-25
1
-17/+2
*
gh-104935: typing: Fix interactions between `@runtime_checkable` and `Generic...
Jelle Zijlstra
2023-05-25
1
-3/+3
*
gh-104797: Allow Protocols to inherit from collections.abc.Buffer (#104827)
Jelle Zijlstra
2023-05-24
1
-1/+1
*
gh-92871: Remove typing.{io,re} namespaces (#92873)
Sebastian Rittau
2023-05-23
1
-42/+1
*
Improve readability of `typing._ProtocolMeta.__instancecheck__` (#104649)
Alex Waygood
2023-05-19
1
-13/+14
*
gh-74690: Don't set special protocol attributes on non-protocol subclasses of...
Alex Waygood
2023-05-18
1
-6/+7
*
gh-104555: Runtime-checkable protocols: Don't let previous calls to `isinstan...
Alex Waygood
2023-05-17
1
-7/+13
*
typing: Use PEP 695 syntax in typing.py (#104553)
Jelle Zijlstra
2023-05-17
1
-11/+17
*
gh-104555: Fix isinstance() and issubclass() for runtime-checkable protocols ...
Alex Waygood
2023-05-16
1
-1/+1
*
gh-103763: Implement PEP 695 (#103764)
Jelle Zijlstra
2023-05-16
1
-421/+170
*
gh-91896: Revert some very noisy DeprecationWarnings for `ByteString` (#104424)
Alex Waygood
2023-05-13
1
-24/+3
*
gh-104415: Fix refleak tests for `typing.ByteString` deprecation (#104416)
Nikita Sobolev
2023-05-12
1
-0/+9
*
gh-91896: Improve visibility of `ByteString` deprecation warnings (#104294)
Alex Waygood
2023-05-12
1
-1/+31
*
gh-104392: Remove _paramspec_tvars from typing (#104393)
Jelle Zijlstra
2023-05-11
1
-13/+6
*
gh-104328: Fix typo in ``typing.Generic`` multiple inheritance error message ...
Kirill Podoprigora
2023-05-09
1
-1/+1
*
Improve assert_type phrasing (#104081)
Shantanu
2023-05-02
1
-3/+4
*
GH-103629: Update Unpack's repr in compliance with PEP 692 (#104048)
Franek Magiera
2023-05-01
1
-1/+12
*
GH-103699: Add `__orig_bases__` to various typing classes (#103698)
Adrian Garcia Badaracco
2023-04-23
1
-2/+9
*
gh-97797: Mention `__metadata__` in docstrings of `typing.{_AnnotatedAlias, A...
Nikita Sobolev
2023-04-10
1
-0/+6
*
gh-74690: Further optimise `typing._ProtocolMeta.__instancecheck__` (#103280)
Alex Waygood
2023-04-05
1
-1/+1
*
gh-74690: typing: Call `_get_protocol_attrs` and `_callable_members_only` at ...
Alex Waygood
2023-04-05
1
-11/+14
*
gh-74690: typing: Simplify and optimise `_ProtocolMeta.__instancecheck__` (#1...
Alex Waygood
2023-04-05
1
-11/+3
*
gh-102433: Use `inspect.getattr_static` in `typing._ProtocolMeta.__instancech...
Alex Waygood
2023-04-02
1
-5/+21
*
gh-74690: Micro-optimise `typing._get_protocol_attrs` (#103152)
Alex Waygood
2023-03-31
1
-8/+12
*
gh-74690: typing: Don't unnecessarily call `_get_protocol_attrs` twice in `_P...
Alex Waygood
2023-03-31
1
-10/+21
*
gh-88965: typing: fix type substitution of a list of types after initial `Pa...
Nikita Sobolev
2023-03-23
1
-7/+26
[next]