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
/
Doc
/
library
/
typing.rst
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-35631: Improve typing docs wrt abstract/concrete collection types (GH-11396)
Ville Skyttä
2019-01-04
1
-8/+17
*
Add 2 missing commas (GH-10698)
Boštjan Mejak
2018-12-23
1
-1/+1
*
bpo-35341: Add generic version of OrderedDict to typing (GH-10850)
Ismo Toijala
2018-12-02
1
-0/+6
*
bpo-35089: Don't mention typing.io and typing.re (GH-10173)
Sebastian Rittau
2018-10-28
1
-16/+9
*
bpo-35042: Use the :pep: role where a PEP is specified (#10036)
Stéphane Wirtel
2018-10-26
1
-1/+1
*
bpo-35044, doc: Use the :exc: role for the exceptions (GH-10037)
Stéphane Wirtel
2018-10-26
1
-1/+1
*
Clarify that Type[SomeTypeVar] is legal (#9585)
Michael Lee
2018-09-26
1
-3/+6
*
bpo-34336: Don't promote possibility to leave out typing.Optional (#8677)
Ville Skyttä
2018-08-05
1
-4/+12
*
Document typing.NoReturn (GH-7107)
Ivan Levkivskyi
2018-05-25
1
-0/+12
*
bpo-28556: Don't simplify unions at runtime (GH-6841)
Ivan Levkivskyi
2018-05-18
1
-4/+3
*
Add AsyncContextManager to typing module documentation. (GH-6822)
Travis DePrato
2018-05-14
1
-0/+6
*
bpo-32284: Fix documentation of BinaryIO and TextIO (#4832)
Sebastian Rittau
2017-12-13
1
-3/+3
*
bpo-29879: Update typing documentation. (GH-4573)
Ivan Levkivskyi
2017-11-26
1
-0/+12
*
bpo-31567: more decorator markup fixes in docs (GH-3959) (#3966)
Éric Araujo
2017-10-12
1
-3/+3
*
bpo-31564: Update typing documentation (GH-3696)
topper-123
2017-09-24
1
-3/+9
*
bpo-30619: Clarify typing.Union documentation (GH-2326)
khyox
2017-06-22
1
-1/+1
*
bpo-29974: Improve typing.TYPE_CHECKING example (GH-982)
Mathias Rav
2017-04-26
1
-2/+7
*
Improvements to typing documentation (#967)
Jelle Zijlstra
2017-04-08
1
-7/+43
*
bpo-29481: add versionadded 3.6.1 to typing.Deque docs (#107)
Mariatta
2017-02-15
1
-0/+2
*
Issue #29198: Merge from 3.5
Berker Peksag
2017-02-04
1
-2/+2
|
\
|
*
Issue #29198: Fix indentation and markup in typing.rst
Berker Peksag
2017-02-04
1
-2/+2
*
|
Issue #29198: Merge from 3.5
Berker Peksag
2017-02-04
1
-0/+33
|
\
\
|
|
/
|
*
Issue #29198: Document typing.AsyncGenerator
Berker Peksag
2017-02-04
1
-0/+33
*
|
Issue 29310: Document typing.NamedTuple default argument syntax
Raymond Hettinger
2017-01-29
1
-4/+18
*
|
Issue #29316: Restore the provisional status of typing module and add
Ned Deily
2017-01-20
1
-0/+7
*
|
merge
Raymond Hettinger
2017-01-17
1
-0/+4
|
\
\
|
|
/
|
*
Issue #29011: Fix an important omission by adding Deque to the typing module.
Raymond Hettinger
2017-01-17
1
-0/+4
*
|
Merge from 3.5
Berker Peksag
2016-11-25
1
-1/+1
|
\
\
|
|
/
|
*
Add missing square bracket in typing.get_type_hints()
Berker Peksag
2016-11-25
1
-1/+1
*
|
Issue #28773: Add typing.FrozenSet docs. (Manuel Krebber) (3.5->3.6)
Guido van Rossum
2016-11-24
1
-0/+4
|
\
\
|
|
/
|
*
Issue #28773: Add typing.FrozenSet docs. (Manuel Krebber)
Guido van Rossum
2016-11-24
1
-0/+4
*
|
Issue 28644: Document recent changes in typing.py (Ivan L) (3.5->3.6)
Guido van Rossum
2016-11-11
1
-15/+50
|
\
\
|
|
/
|
*
Issue 28644: Document recent changes in typing.py (Ivan L)
Guido van Rossum
2016-11-11
1
-15/+50
*
|
Issue #28107: Update typing module documentation for NamedTuple (Ivan)
Guido van Rossum
2016-10-25
1
-4/+13
*
|
Issue #19795: Mark up None as literal text.
Serhiy Storchaka
2016-10-19
1
-1/+1
|
\
\
|
|
/
|
*
Issue #19795: Mark up None as literal text.
Serhiy Storchaka
2016-10-19
1
-1/+1
|
*
Adjust ClassVar example to use pre-PEP-526 syntax. (Issue #28388)
Guido van Rossum
2016-10-09
1
-2/+2
*
|
Issue #28388: update typing module documentation. (merge 3.5->3.6)
Guido van Rossum
2016-10-09
1
-123/+126
|
\
\
|
|
/
|
*
Issue #28388: update typing module documentation.
Guido van Rossum
2016-10-09
1
-122/+125
|
*
Issue #26141: Update docs for typing.py. Ivan Levkivskyi. (Backport from the ...
Guido van Rossum
2016-09-11
1
-14/+113
*
|
Issue #26141: Update docs for typing.py. Ivan Levkivskyi.
Guido van Rossum
2016-09-11
1
-10/+104
*
|
Issue #28073: Improve wording around None. Michael Lee. (3.5->3.6)
Guido van Rossum
2016-09-11
1
-2/+4
|
\
\
|
|
/
|
*
Issue #28073: Improve wording around None. Michael Lee.
Guido van Rossum
2016-09-11
1
-2/+4
*
|
Issue #28049: Add documentation for typing.Awaitable and friends.
Guido van Rossum
2016-09-09
1
-1/+13
*
|
Issue #27905: Docs for typing.Type[C], by Michael Lee. (Merge 3.5->3.6)
Guido van Rossum
2016-09-07
1
-0/+39
|
\
\
|
|
/
|
*
Issue #27905: Docs for typing.Type[C], by Michael Lee.
Guido van Rossum
2016-09-07
1
-0/+39
*
|
Closes #27904: Improved logging statements to defer formatting until needed.
Vinay Sajip
2016-08-31
1
-1/+1
*
|
Add docs for typing.AnyStr and typing.Text. By Michael Lee. (Merge 3.5->3.6)
Guido van Rossum
2016-08-15
1
-0/+27
|
\
\
|
|
/
|
*
Add docs for typing.AnyStr and typing.Text. By Michael Lee.
Guido van Rossum
2016-08-15
1
-0/+27
*
|
Merge from 3.5
Berker Peksag
2016-08-08
1
-3/+3
|
\
\
|
|
/
[next]