summaryrefslogtreecommitdiffstats
path: root/Doc/howto
diff options
context:
space:
mode:
authorDave Goncalves <davegoncalves@gmail.com>2022-03-31 13:56:48 (GMT)
committerGitHub <noreply@github.com>2022-03-31 13:56:48 (GMT)
commit8be7c2bc5ad5e295f0f855bb31db412eef2c7c92 (patch)
tree959b21391f252bd6a4ac2935b4035007ed52bdb4 /Doc/howto
parenta00518d9ad9a8f408a9699191019d75dd8406c32 (diff)
downloadcpython-8be7c2bc5ad5e295f0f855bb31db412eef2c7c92.zip
cpython-8be7c2bc5ad5e295f0f855bb31db412eef2c7c92.tar.gz
cpython-8be7c2bc5ad5e295f0f855bb31db412eef2c7c92.tar.bz2
bpo-14911: Corrected generator.throw() documentation (GH-32207)
Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
Diffstat (limited to 'Doc/howto')
-rw-r--r--Doc/howto/functional.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/functional.rst b/Doc/howto/functional.rst
index c7f8bc8..695b9b3 100644
--- a/Doc/howto/functional.rst
+++ b/Doc/howto/functional.rst
@@ -589,7 +589,7 @@ generator function.
In addition to :meth:`~generator.send`, there are two other methods on
generators:
-* :meth:`throw(type, value=None, traceback=None) <generator.throw>` is used to
+* :meth:`throw(value) <generator.throw>` is used to
raise an exception inside the generator; the exception is raised by the
``yield`` expression where the generator's execution is paused.