diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-13 10:08:01 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-13 10:08:01 (GMT) |
commit | 3ad2d70947a1b6c4b76c2029213e654c1b6ebc4e (patch) | |
tree | ad7e6c6bc6a868bcbcff2eac800e3977020060e2 /Lib/test/test_poll.py | |
parent | 258e4d372f25bd0182ae20d2af899156bdc6a71d (diff) | |
download | cpython-3ad2d70947a1b6c4b76c2029213e654c1b6ebc4e.zip cpython-3ad2d70947a1b6c4b76c2029213e654c1b6ebc4e.tar.gz cpython-3ad2d70947a1b6c4b76c2029213e654c1b6ebc4e.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 f98a280..e51e6f0 100644 --- a/Lib/test/test_poll.py +++ b/Lib/test/test_poll.py @@ -161,10 +161,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) |