summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authortwisteroid ambassador <twisteroidambassador@users.noreply.github.com>2018-05-28 15:16:45 (GMT)
committerYury Selivanov <yury@magic.io>2018-05-28 15:16:45 (GMT)
commit23f587e395e41bd5e116312b036183f42bc4159b (patch)
tree2a6453563194a9a1cba255b08a2c9a2d27810da0 /Misc
parent35230d08e09de4e2e52658d5cb09e5b0ca965418 (diff)
downloadcpython-23f587e395e41bd5e116312b036183f42bc4159b.zip
cpython-23f587e395e41bd5e116312b036183f42bc4159b.tar.gz
cpython-23f587e395e41bd5e116312b036183f42bc4159b.tar.bz2
bpo-31647: Fix write_eof() after close() for SelectorSocketTransport (GH-7149)
Fixed bug where calling write_eof() on a _SelectorSocketTransport after it's already closed raises AttributeError.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-05-28-18-40-26.bpo-31467.s4Fad3.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-05-28-18-40-26.bpo-31467.s4Fad3.rst b/Misc/NEWS.d/next/Library/2018-05-28-18-40-26.bpo-31467.s4Fad3.rst
new file mode 100644
index 0000000..61cc8ba
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-05-28-18-40-26.bpo-31467.s4Fad3.rst
@@ -0,0 +1,2 @@
+Fixed bug where calling write_eof() on a _SelectorSocketTransport after it's
+already closed raises AttributeError.