summaryrefslogtreecommitdiff
path: root/Lib/socket.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-09-14 17:30:31 +0200
committerAntoine Pitrou <solipsis@pitrou.net>2012-09-14 17:30:31 +0200
commit9b1c84b5861bf259e709b56b7a11824b114801c9 (patch)
tree43c814ceb026d8aff9246d158f9e238956497b6d /Lib/socket.py
parent8429b6784bd7447055c7880e1b84954cd27bd0a3 (diff)
parent1e7ee9dfa0cc5007da1cbc3331b799584af8b680 (diff)
downloadcpython-git-9b1c84b5861bf259e709b56b7a11824b114801c9.tar.gz
Issue #15842: the SocketIO.{readable,writable,seekable} methods now raise ValueError when the file-like object is closed.
Patch by Alessandro Moura.
Diffstat (limited to 'Lib/socket.py')
-rw-r--r--Lib/socket.py15
1 files changed, 13 insertions, 2 deletions
diff --git a/Lib/socket.py b/Lib/socket.py
index 1378b0f4bc..d4f1b65e46 100644
--- a/Lib/socket.py
+++ b/Lib/socket.py
@@ -324,12 +324,23 @@ class SocketIO(io.RawIOBase):
def readable(self):
"""True if the SocketIO is open for reading.
"""
- return self._reading and not self.closed
+ if self.closed:
+ raise ValueError("I/O operation on closed socket.")
+ return self._reading
def writable(self):
"""True if the SocketIO is open for writing.
"""
- return self._writing and not self.closed
+ if self.closed:
+ raise ValueError("I/O operation on closed socket.")
+ return self._writing
+
+ def seekable(self):
+ """True if the SocketIO is open for seeking.
+ """
+ if self.closed:
+ raise ValueError("I/O operation on closed socket.")
+ return super().seekable()
def fileno(self):
"""Return the file descriptor of the underlying socket.