diff options
author | Jack Wilsdon <jack.wilsdon@gmail.com> | 2019-02-15 19:20:28 (GMT) |
---|---|---|
committer | Mariatta <Mariatta@users.noreply.github.com> | 2019-02-15 19:20:28 (GMT) |
commit | 903567e4f54494c2f4148eec0504ad761ac942c2 (patch) | |
tree | 2b89ee7ed25cc0c34653a26677d23a2022de8824 /Doc | |
parent | 522630a7462f606300f1e6e6818de191d9dc3fdf (diff) | |
download | cpython-903567e4f54494c2f4148eec0504ad761ac942c2.zip cpython-903567e4f54494c2f4148eec0504ad761ac942c2.tar.gz cpython-903567e4f54494c2f4148eec0504ad761ac942c2.tar.bz2 |
Fix the versionadded info for typing.NoReturn (GH-11880)
The earliest version that `typing.NoReturn` appears in is [3.5.4rc1](https://docs.python.org/3/whatsnew/changelog.html#python-3-5-4-release-candidate-1)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/typing.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 4a03fe7..6ed09f1 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -958,7 +958,7 @@ The module defines the following classes, functions and decorators: def stop() -> NoReturn: raise RuntimeError('no way') - .. versionadded:: 3.6.5 + .. versionadded:: 3.5.4 .. data:: Union |