diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2003-10-18 10:20:42 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2003-10-18 10:20:42 (GMT) |
commit | 9e62ff287bf9e4c39fb9654b0bb0f3c9b523d459 (patch) | |
tree | a6b3bdba31c47e2fc03406a9672b1bbc61e990d8 /Lib/StringIO.py | |
parent | 6828e18a6a0d63f2203f5043bda0018925244188 (diff) | |
download | cpython-9e62ff287bf9e4c39fb9654b0bb0f3c9b523d459.zip cpython-9e62ff287bf9e4c39fb9654b0bb0f3c9b523d459.tar.gz cpython-9e62ff287bf9e4c39fb9654b0bb0f3c9b523d459.tar.bz2 |
Patch #822994: Consolidate tests for self.closed.
Diffstat (limited to 'Lib/StringIO.py')
-rw-r--r-- | Lib/StringIO.py | 32 |
1 files changed, 14 insertions, 18 deletions
diff --git a/Lib/StringIO.py b/Lib/StringIO.py index 89dda5e..870e97e 100644 --- a/Lib/StringIO.py +++ b/Lib/StringIO.py @@ -35,6 +35,10 @@ except ImportError: __all__ = ["StringIO"] +def _complain_ifclosed(closed): + if closed: + raise ValueError, "I/O operation on closed file" + class StringIO: """class StringIO([buffer]) @@ -55,7 +59,7 @@ class StringIO: self.len = len(buf) self.buflist = [] self.pos = 0 - self.closed = 0 + self.closed = False self.softspace = 0 def __iter__(self): @@ -73,17 +77,15 @@ class StringIO: """Free the memory buffer. """ if not self.closed: - self.closed = 1 + self.closed = True del self.buf, self.pos def isatty(self): - if self.closed: - raise ValueError, "I/O operation on closed file" + _complain_ifclosed(self.closed) return False def seek(self, pos, mode = 0): - if self.closed: - raise ValueError, "I/O operation on closed file" + _complain_ifclosed(self.closed) if self.buflist: self.buf += ''.join(self.buflist) self.buflist = [] @@ -94,13 +96,11 @@ class StringIO: self.pos = max(0, pos) def tell(self): - if self.closed: - raise ValueError, "I/O operation on closed file" + _complain_ifclosed(self.closed) return self.pos def read(self, n = -1): - if self.closed: - raise ValueError, "I/O operation on closed file" + _complain_ifclosed(self.closed) if self.buflist: self.buf += ''.join(self.buflist) self.buflist = [] @@ -113,8 +113,7 @@ class StringIO: return r def readline(self, length=None): - if self.closed: - raise ValueError, "I/O operation on closed file" + _complain_ifclosed(self.closed) if self.buflist: self.buf += ''.join(self.buflist) self.buflist = [] @@ -143,8 +142,7 @@ class StringIO: return lines def truncate(self, size=None): - if self.closed: - raise ValueError, "I/O operation on closed file" + _complain_ifclosed(self.closed) if size is None: size = self.pos elif size < 0: @@ -154,8 +152,7 @@ class StringIO: self.buf = self.getvalue()[:size] def write(self, s): - if self.closed: - raise ValueError, "I/O operation on closed file" + _complain_ifclosed(self.closed) if not s: return # Force s to be a string or unicode if not isinstance(s, basestring): @@ -185,8 +182,7 @@ class StringIO: self.write(''.join(list)) def flush(self): - if self.closed: - raise ValueError, "I/O operation on closed file" + _complain_ifclosed(self.closed) def getvalue(self): """ |