summaryrefslogtreecommitdiffstats
path: root/Doc/library/typing.rst
Commit message (Expand)AuthorAgeFilesLines
* bpo-46571: improve `typing.no_type_check` to skip foreign objects (GH-31042)Nikita Sobolev2022-02-191-2/+2
* bpo-46066: Deprecate kwargs syntax for TypedDict definitions (GH-31126)97littleleaf112022-02-171-2/+14
* bpo-46475: Add typing.Never and typing.assert_never (GH-30842)Jelle Zijlstra2022-02-081-0/+56
* bpo-46534: Implement PEP 673 Self in typing.py (GH-30924)James Hilton-Balfe2022-02-071-0/+47
* bpo-46414: Add typing.reveal_type (#30646)Jelle Zijlstra2022-02-021-0/+31
* fix typo in typing.rst (#30841)Jelle Zijlstra2022-01-231-1/+1
* bpo-46342: make @typing.final introspectable (GH-30530)Jelle Zijlstra2022-01-121-0/+9
* Remove unused `Any` from `Concatenate` example in typing docs (GH-30516)Michael Oliver2022-01-111-1/+1
* bpo-46120: State that `|` is preferred over `Union` (GH-30222)Nikita Sobolev2021-12-241-1/+1
* bpo-46104: Fix example broken by GH-30148 (GH-30203)Alex Waygood2021-12-201-1/+1
* bpo-46104: Reduce use of pre-PEP 526 syntax in typing docs (GH-30148)Alex Waygood2021-12-181-9/+8
* [doc] bpo-45680: Disambiguate ``__getitem__`` and ``__class_getitem__`` in th...Alex Waygood2021-11-181-0/+1
* Remove reference to ``Tuple`` at top of ``typing`` docs (GH-29401)Alex Waygood2021-11-041-4/+3
* bpo-45680: ``typing`` docs: improve links to docs on ``GenericAlias``/``__cla...Alex Waygood2021-11-041-4/+4
* bpo-45655: Add ref to union type expressions at top of typing docs (GH-29309)Alex Waygood2021-10-291-1/+2
* bpo-45655: Add "relevant PEPs" section to ``typing`` documentation (GH-29280)Alex Waygood2021-10-281-7/+41
* Add PEPs 593 & 647 to list of PEPs at top of typing docs (GH-29097)Alex Waygood2021-10-201-1/+1
* Replace usage of List[...] with list[...] in typing docs (GH-28821)Micael Jarniac2021-10-091-8/+8
* bpo-44925: [docs] Fix confusing deprecation notice for typing.IO (GH-28004)DonnaDia2021-08-311-4/+4
* bpo-44957: Promote PEP 604 syntax in typing docs (GH-27833)Sebastian Rittau2021-08-221-14/+16
* bpo-44926: `get_type_hints`: Add note about type aliases with forward refs (#...Maximilian Hils2021-08-201-0/+7
* Doc: Change errant 3.10.0 to 3.10, to match other mentions (GH-27459)Ori Avtalion2021-07-301-2/+2
* bpo-44353: Document that typing.NewType is now a class (#27319)Ken Jin2021-07-241-10/+19
* bpo-43453: Update and re-add example to typing runtime_checkable (#27013)andrei kulakov2021-07-051-2/+7
* bpo-38291: Remove mention of typing.io and typing.re again (GH-26113)Sebastian Rittau2021-06-141-2/+10
* bpo-44001: improve Literal documentation (GH-25877)Jelle Zijlstra2021-05-041-2/+2
* bpo-43766: Fix TypeGuard docs (#25660)Ken Jin2021-04-271-8/+3
* bpo-43766: Implement PEP 647 (User-Defined Type Guards) in typing.py (#25282)Ken Jin2021-04-271-0/+74
* bpo-43783: Add ParamSpecArgs/Kwargs (GH-25298)Jelle Zijlstra2021-04-111-2/+22
* bpo-41974: Remove part of the note regarding complex.__float__ (GH-25197)DevilXD2021-04-101-4/+1
* bpo-41370: Add note about ForwardRefs and PEP585 generic types in docs (#25183)Ken Jin2021-04-041-2/+7
* bpo-43345: Enhance TypedDict documentation. (#24668)Paul Bryan2021-02-281-12/+13
* bpo-41824: Add versionadded for typing.ForwardRef docs (#24224)Ken Jin2021-02-091-0/+2
* Fix various ParamSpec errors in typing (GH-24176)Ken Jin2021-01-111-2/+2
* Fix a typo in docs for typing.Concatenate (#24169)Johan Dahlin2021-01-081-1/+1
* bpo-41559: Documentation for PEP 612 (GH-24000)Ken Jin2021-01-021-1/+203
* Doc: fix typo in typing.Type docs (GH-23460)John Belmonte2020-11-221-1/+1
* bpo-42345: Add whatsnew and versionchanged for typing.Literal in 3.9 (GH-23386)kj2020-11-191-0/+6
* bpo-42345: Fix hash implementation of typing.Literal (GH-23383)Yurii Karabas2020-11-191-3/+3
* bpo-42317: Improve docs of typing.get_args concerning Union (GH-23254)Dominik11232020-11-161-0/+3
* bpo-42198: Link to GenericAlias in typing and expressions (GH-23030)kj2020-10-301-37/+74
* [doc] Add mentions of PEP 613 (TypeAlias) to docs (GH-22733)Andre Delfino2020-10-171-1/+3
* Fix typo in "Context manager types" section in typing.rst (GH-22676)Saiyang Gou2020-10-121-2/+2
* Fix typo in typing.rst (GH-22625)abdo2020-10-111-1/+1
* bpo-41923: PEP 613: Add TypeAlias to typing module (#22532)Mikhail Golubev2020-10-071-0/+13
* bpo-41428: Documentation for PEP 604 (gh-22517)Fidget-Spinner2020-10-051-0/+4
* [doc] Use list[int] instead of List[int] (etc.) in a few more places (GH-22524)Andre Delfino2020-10-031-6/+6
* [doc] Fix link to abc.collections.Iterable (GH-22520)Andre Delfino2020-10-031-2/+2
* [doc] Fix link to abc.collections.Iterable (GH-22502)Andre Delfino2020-10-021-1/+1
* Fix is_typeddict markup (#22501)Andre Delfino2020-10-021-5/+6