diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-12-24 15:10:27 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-12-24 15:10:27 (GMT) |
commit | 54686e3c2981a18521db088ffc16d5f4e5983e75 (patch) | |
tree | 86afa9a9a67921ac67eecdeba04681deca334843 /Lib/test/test_io.py | |
parent | e098c4abe5d17fdd469d84ae740eb8bbd8ba9667 (diff) | |
download | cpython-54686e3c2981a18521db088ffc16d5f4e5983e75.zip cpython-54686e3c2981a18521db088ffc16d5f4e5983e75.tar.gz cpython-54686e3c2981a18521db088ffc16d5f4e5983e75.tar.bz2 |
#4736 BufferRWPair.closed shouldn't try to call another property as a function
Diffstat (limited to 'Lib/test/test_io.py')
-rw-r--r-- | Lib/test/test_io.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_io.py b/Lib/test/test_io.py index 8a7da60..967018e 100644 --- a/Lib/test/test_io.py +++ b/Lib/test/test_io.py @@ -554,8 +554,9 @@ class BufferedRWPairTest(unittest.TestCase): r = MockRawIO(()) w = MockRawIO() pair = io.BufferedRWPair(r, w) + self.assertFalse(pair.closed) - # XXX need implementation + # XXX More Tests class BufferedRandomTest(unittest.TestCase): |