diff options
author | Barry Warsaw <barry@python.org> | 1997-01-14 17:49:15 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1997-01-14 17:49:15 (GMT) |
commit | bd8a91198d05bb0a8f75329e7cc22c49110fbcac (patch) | |
tree | 8d529c6221ca5eeabf755a8c092a7936f05fece9 /Lib/test | |
parent | 93d29b689509ddbd54ae8ea009c6731fba82cb81 (diff) | |
download | cpython-bd8a91198d05bb0a8f75329e7cc22c49110fbcac.zip cpython-bd8a91198d05bb0a8f75329e7cc22c49110fbcac.tar.gz cpython-bd8a91198d05bb0a8f75329e7cc22c49110fbcac.tar.bz2 |
test(): close the pipe, just to shut up Purify.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_select.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_select.py b/Lib/test/test_select.py index 5834575..f7f20f3 100644 --- a/Lib/test/test_select.py +++ b/Lib/test/test_select.py @@ -49,6 +49,7 @@ def test(): break continue print 'Heh?' + p.close() test() |