File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments