diff options
author | Naris R <nariscatboy@gmail.com> | 2018-08-30 16:56:14 (GMT) |
---|---|---|
committer | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2018-08-30 16:56:14 (GMT) |
commit | 1b5f9c9653f348b0aa8b7ca39f8a9361150f7dfc (patch) | |
tree | dca9f2435a0fdd8a30e1d3ecc1a3d2e3499379da /Misc | |
parent | e6dac0077996b1e1f886f036d6f2606237fa4c85 (diff) | |
download | cpython-1b5f9c9653f348b0aa8b7ca39f8a9361150f7dfc.zip cpython-1b5f9c9653f348b0aa8b7ca39f8a9361150f7dfc.tar.gz cpython-1b5f9c9653f348b0aa8b7ca39f8a9361150f7dfc.tar.bz2 |
bpo-34427: Fix infinite loop when calling MutableSequence.extend() on self (GH-8813)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-08-20-13-53-10.bpo-34427.tMRQjl.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-08-20-13-53-10.bpo-34427.tMRQjl.rst b/Misc/NEWS.d/next/Library/2018-08-20-13-53-10.bpo-34427.tMRQjl.rst new file mode 100644 index 0000000..f6e0e03 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-08-20-13-53-10.bpo-34427.tMRQjl.rst @@ -0,0 +1 @@ +Fix infinite loop in ``a.extend(a)`` for ``MutableSequence`` subclasses. |