Skip to content

Commit fddbf07

Browse files
Masorubka1youknowone
authored andcommitted
add annotation to skiped test
1 parent be54e89 commit fddbf07

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Lib/test/test_poll.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def test_poll_c_limits(self):
183183
self.assertRaises(OverflowError, pollster.poll, INT_MAX + 1)
184184
self.assertRaises(OverflowError, pollster.poll, UINT_MAX + 1)
185185

186-
@unittest.skip("TODO: RUSTPYTHON")
186+
@unittest.skip("TODO: RUSTPYTHON fd reallocation")
187187
@threading_helper.reap_threads
188188
def test_threaded_poll(self):
189189
r, w = os.pipe()
@@ -197,7 +197,6 @@ def test_threaded_poll(self):
197197
pollster = select.poll()
198198
for fd in rfds:
199199
pollster.register(fd, select.POLLIN)
200-
201200
t = threading.Thread(target=pollster.poll)
202201
t.start()
203202
try:
@@ -212,7 +211,7 @@ def test_threaded_poll(self):
212211
os.write(w, b'spam')
213212
t.join()
214213

215-
# TODO: RUSTPYTHON
214+
# TODO: RUSTPYTHON add support for negative timeout
216215
@unittest.expectedFailure
217216
@unittest.skipUnless(threading, 'Threading required for this test.')
218217
@threading_helper.reap_threads

0 commit comments

Comments
 (0)