summaryrefslogtreecommitdiff
path: root/Doc/library/typing.rst
Commit message (Expand)AuthorAgeFilesLines
* Issue 29310: Document typing.NamedTuple default argument syntaxRaymond Hettinger2017-01-281-4/+18
* Issue #29316: Restore the provisional status of typing module and addNed Deily2017-01-201-0/+7
* mergeRaymond Hettinger2017-01-161-11/+32
|\
| * Merge from 3.5Berker Peksag2016-11-251-1/+1
| |\
| * \ Issue #28773: Add typing.FrozenSet docs. (Manuel Krebber) (3.5->3.6)Guido van Rossum2016-11-241-0/+4
| |\ \
| * \ \ Issue 28644: Document recent changes in typing.py (Ivan L) (3.5->3.6)Guido van Rossum2016-11-111-15/+50
| |\ \ \
| * | | | Issue #28107: Update typing module documentation for NamedTuple (Ivan)Guido van Rossum2016-10-251-4/+13
| * | | | Issue #19795: Mark up None as literal text.Serhiy Storchaka2016-10-191-1/+1
| |\ \ \ \
| * \ \ \ \ Issue #28388: update typing module documentation. (merge 3.5->3.6)Guido van Rossum2016-10-081-6/+18
| |\ \ \ \ \
| | * | | | | Issue #26141: Update docs for typing.py. Ivan Levkivskyi.Guido van Rossum2016-09-101-10/+104
| | * | | | | Issue #28073: Improve wording around None. Michael Lee. (3.5->3.6)Guido van Rossum2016-09-101-2/+4
| | |\ \ \ \ \
| | * | | | | | Issue #28049: Add documentation for typing.Awaitable and friends.Guido van Rossum2016-09-091-1/+13
| | * | | | | | Issue #27905: Docs for typing.Type[C], by Michael Lee. (Merge 3.5->3.6)Guido van Rossum2016-09-061-0/+39
| | |\ \ \ \ \ \
| | * | | | | | | Closes #27904: Improved logging statements to defer formatting until needed.Vinay Sajip2016-08-311-1/+1
| | * | | | | | | Add docs for typing.AnyStr and typing.Text. By Michael Lee. (Merge 3.5->3.6)Guido van Rossum2016-08-151-8/+13
| | |\ \ \ \ \ \ \
| | | * \ \ \ \ \ \ Merge from 3.5Berker Peksag2016-08-081-8/+13
| | | |\ \ \ \ \ \ \
| | | | * \ \ \ \ \ \ Better docs for typing.Any by Michael Lee. Fixes issue #27688. (Merge 3.5->3.6)Guido van Rossum2016-08-061-8/+13
| | | | |\ \ \ \ \ \ \
| | | | | * \ \ \ \ \ \ Add typing.Generator docs, by Michael Lee. (Merge 3.5->3.6)Guido van Rossum2016-08-051-0/+29
| | | | | |\ \ \ \ \ \ \
| | | | | * \ \ \ \ \ \ \ Merge from 3.5Berker Peksag2016-07-301-1/+1
| | | | | |\ \ \ \ \ \ \ \
| | | | | * \ \ \ \ \ \ \ \ Fix whitespace.Guido van Rossum2016-07-291-8/+13
| | | | | |\ \ \ \ \ \ \ \ \
| | | | | | * \ \ \ \ \ \ \ \ Expand documentation about type aliases and NewType in the typing module (mer...Guido van Rossum2016-07-291-8/+13
| | | | | | |\ \ \ \ \ \ \ \ \
| | | | | | | * \ \ \ \ \ \ \ \ Fix issue #27402: example for typing did not type-check. (Merge 3.5->3.6)Guido van Rossum2016-06-281-2/+2
| | | | | | | |\ \ \ \ \ \ \ \ \
| | | | | | | * \ \ \ \ \ \ \ \ \ Merge Issue #22558.Terry Jan Reedy2016-06-111-2/+2
| | | | | | | |\ \ \ \ \ \ \ \ \ \
| | | | | | | * \ \ \ \ \ \ \ \ \ \ Issue #27125: Merge typo fixes from 3.5Martin Panter2016-05-301-8/+13
| | | | | | | |\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | * \ \ \ \ \ \ \ \ \ \ Issue #27125: Merge typo fixes from 3.5Martin Panter2016-05-291-8/+13
| | | | | | | | |\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | * \ \ \ \ \ \ \ \ \ \ Issue #26322: Document typing.Set, patch by Joseph MoranBerker Peksag2016-04-291-2/+2
| | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | * \ \ \ \ \ \ \ \ \ \ \ Merge 3.5Victor Stinner2016-04-111-8/+13
| | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | * | | | | | | | | | | | Issue #25609: Introduce contextlib.AbstractContextManager andBrett Cannon2016-04-081-3/+9
| | | | | | | | | | * | | | | | | | | | | | Add collections.Reversible. Patch by Ivan Levkivskyi. Fixes issue #25987.Guido van Rossum2016-04-041-6/+5
* | | | | | | | | | | | | | | | | | | | | | Issue #29011: Fix an important omission by adding Deque to the typing module.Raymond Hettinger2017-01-161-0/+4
| |_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | | | Add missing square bracket in typing.get_type_hints()Berker Peksag2016-11-251-1/+1
| |_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | | Issue #28773: Add typing.FrozenSet docs. (Manuel Krebber)Guido van Rossum2016-11-241-0/+4
| |_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | Issue 28644: Document recent changes in typing.py (Ivan L)Guido van Rossum2016-11-111-15/+50
| |_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | Issue #19795: Mark up None as literal text.Serhiy Storchaka2016-10-191-1/+1
* | | | | | | | | | | | | | | | | | Adjust ClassVar example to use pre-PEP-526 syntax. (Issue #28388)Guido van Rossum2016-10-081-2/+2
|/ / / / / / / / / / / / / / / / /
* | | | | | | | | | | | | | | | | Issue #28388: update typing module documentation.Guido van Rossum2016-10-081-122/+125
* | | | | | | | | | | | | | | | | Issue #26141: Update docs for typing.py. Ivan Levkivskyi. (Backport from the ...Guido van Rossum2016-09-101-14/+113
| |_|_|_|_|_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | Issue #28073: Improve wording around None. Michael Lee.Guido van Rossum2016-09-101-2/+4
| |_|_|_|_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Issue #27905: Docs for typing.Type[C], by Michael Lee.Guido van Rossum2016-09-061-0/+39
|/ / / / / / / / / / / / / /
* | | | | | | | | | | | | | Add docs for typing.AnyStr and typing.Text. By Michael Lee.Guido van Rossum2016-08-151-0/+27
|/ / / / / / / / / / / / /
* | | | | | | | | | | | | Fix use of default reST roleBerker Peksag2016-08-081-3/+3
|/ / / / / / / / / / / /
* | | | | | | | | | | | Better docs for typing.Any by Michael Lee. Fixes issue #27688.Guido van Rossum2016-08-061-9/+71
| |_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | |
* | | | | | | | | | | Add typing.Generator docs, by Michael Lee.Guido van Rossum2016-08-051-0/+29
| |_|_|_|_|_|_|_|_|/ |/| | | | | | | | |
* | | | | | | | | | Silence another "default role used" warning in typing.rstBerker Peksag2016-07-301-1/+1
|/ / / / / / / / /
* | | | | | | | | Fix whitespace.Guido van Rossum2016-07-291-1/+1
|/ / / / / / / /
* | | | | | | | Expand documentation about type aliases and NewType in the typing module.Guido van Rossum2016-07-291-1/+96
| |_|_|_|_|_|/ |/| | | | | |
* | | | | | | Fix issue #27402: example for typing did not type-check.Guido van Rossum2016-06-281-2/+2
| |_|_|_|_|/ |/| | | | |
* | | | | | Issue #22558: Add remaining doc links to source code for Python-coded modules.Terry Jan Reedy2016-06-111-2/+2
|/ / / / /
* | | | | Issue #27125: Remove duplicated words from documentation and commentsMartin Panter2016-05-301-1/+1
|/ / / /
* | | | Issue #27125: Fix various errors like ?will [be] inherited?Martin Panter2016-05-291-1/+1
| |_|/ |/| |