diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-13 10:08:55 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-13 10:08:55 (GMT) |
commit | cb1c4c8c22e27f0f7a01e1bb5ad78a804cf17c07 (patch) | |
tree | 75b313001ed27f8d378b84175f5f2dd6617965a2 /Lib/test/test_poll.py | |
parent | 2748bc735ea7c8b2f72670d0f35715108fac0fe6 (diff) | |
parent | 3ad2d70947a1b6c4b76c2029213e654c1b6ebc4e (diff) | |
download | cpython-cb1c4c8c22e27f0f7a01e1bb5ad78a804cf17c07.zip cpython-cb1c4c8c22e27f0f7a01e1bb5ad78a804cf17c07.tar.gz cpython-cb1c4c8c22e27f0f7a01e1bb5ad78a804cf17c07.tar.bz2 |
Issue #17919: select.poll.poll() again works with poll.POLLNVAL on AIX.
Diffstat (limited to 'Lib/test/test_poll.py')
-rw-r--r-- | Lib/test/test_poll.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/test/test_poll.py b/Lib/test/test_poll.py index a1e5c3d..8138294 100644 --- a/Lib/test/test_poll.py +++ b/Lib/test/test_poll.py @@ -163,10 +163,6 @@ class PollTests(unittest.TestCase): pollster = select.poll() # Issue 15989 - self.assertRaises(OverflowError, pollster.register, 0, - _testcapi.SHRT_MAX + 1) - self.assertRaises(OverflowError, pollster.register, 0, - _testcapi.USHRT_MAX + 1) self.assertRaises(OverflowError, pollster.poll, _testcapi.INT_MAX + 1) self.assertRaises(OverflowError, pollster.poll, _testcapi.UINT_MAX + 1) |