diff options
author | Vladimir Matveev <vladima@fb.com> | 2020-10-10 00:15:15 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-10 00:15:15 (GMT) |
commit | 037245c5ac46c3436f617a1f5d965929754be239 (patch) | |
tree | ce2a797b165e846d59e53ba5d530413cb573a8aa /Misc/NEWS.d | |
parent | 9975cc5008c795e069ce11e2dbed2110cc12e74e (diff) | |
download | cpython-037245c5ac46c3436f617a1f5d965929754be239.zip cpython-037245c5ac46c3436f617a1f5d965929754be239.tar.gz cpython-037245c5ac46c3436f617a1f5d965929754be239.tar.bz2 |
bpo-41756: Add PyIter_Send function (#22443)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/C API/2020-09-28-14-31-07.bpo-41756.ZZ5wJG.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2020-09-28-14-31-07.bpo-41756.ZZ5wJG.rst b/Misc/NEWS.d/next/C API/2020-09-28-14-31-07.bpo-41756.ZZ5wJG.rst new file mode 100644 index 0000000..f7e27b4 --- /dev/null +++ b/Misc/NEWS.d/next/C API/2020-09-28-14-31-07.bpo-41756.ZZ5wJG.rst @@ -0,0 +1,3 @@ +Add `PyIter_Send` function to allow sending value into +generator/coroutine/iterator without raising StopIteration exception to +signal return. |