diff options
| author | Guido van Rossum <guido@python.org> | 2002-04-07 06:36:23 +0000 | 
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 2002-04-07 06:36:23 +0000 | 
| commit | 8ca162f417c6a72faf02831457b4054a73087b78 (patch) | |
| tree | 2d882f9a1fe596830f47f1132a5294633ba05f33 /Lib/StringIO.py | |
| parent | b8bff3f4a9e3be8b43a394d3795a46af2831fe5e (diff) | |
| download | cpython-git-8ca162f417c6a72faf02831457b4054a73087b78.tar.gz | |
Partial introduction of bools where appropriate.
Diffstat (limited to 'Lib/StringIO.py')
| -rw-r--r-- | Lib/StringIO.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/StringIO.py b/Lib/StringIO.py index 087092e5c5..cc88e9de4d 100644 --- a/Lib/StringIO.py +++ b/Lib/StringIO.py @@ -59,7 +59,7 @@ class StringIO:      def isatty(self):          if self.closed:              raise ValueError, "I/O operation on closed file" -        return 0 +        return False      def seek(self, pos, mode = 0):          if self.closed:  | 
