summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sys.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-02-05 17:05:54 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-02-05 17:05:54 (GMT)
commitbb445a1f22835b97673f96da8f9edc75b69f5f2c (patch)
treef3d399d134896edc68edb46d5c761c385bbb20fe /Lib/test/test_sys.py
parent007a618a38d0c4dac9182fed9b22f3caf55dd1ea (diff)
downloadcpython-bb445a1f22835b97673f96da8f9edc75b69f5f2c.zip
cpython-bb445a1f22835b97673f96da8f9edc75b69f5f2c.tar.gz
cpython-bb445a1f22835b97673f96da8f9edc75b69f5f2c.tar.bz2
Issue #5677: Explicitly forbid write operations on read-only file objects,
and read operations on write-only file objects. On Windows, the system C library would return a bogus result; on Solaris, it was possible to crash the interpreter. Patch by Stefan Krah.
Diffstat (limited to 'Lib/test/test_sys.py')
-rw-r--r--Lib/test/test_sys.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py
index 6b45d12..f7e828b 100644
--- a/Lib/test/test_sys.py
+++ b/Lib/test/test_sys.py
@@ -581,7 +581,7 @@ class SizeofTest(unittest.TestCase):
# enumerate
check(enumerate([]), size(h + 'l3P'))
# file
- check(self.file, size(h + '4P2i4P3i3Pi'))
+ check(self.file, size(h + '4P2i4P3i3P3i'))
# float
check(float(0), size(h + 'd'))
# sys.floatinfo