File tree 1 file changed +2
-3
lines changed 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):
183
183
self .assertRaises (OverflowError , pollster .poll , INT_MAX + 1 )
184
184
self .assertRaises (OverflowError , pollster .poll , UINT_MAX + 1 )
185
185
186
- @unittest .skip ("TODO: RUSTPYTHON" )
186
+ @unittest .skip ("TODO: RUSTPYTHON fd reallocation " )
187
187
@threading_helper .reap_threads
188
188
def test_threaded_poll (self ):
189
189
r , w = os .pipe ()
@@ -197,7 +197,6 @@ def test_threaded_poll(self):
197
197
pollster = select .poll ()
198
198
for fd in rfds :
199
199
pollster .register (fd , select .POLLIN )
200
-
201
200
t = threading .Thread (target = pollster .poll )
202
201
t .start ()
203
202
try :
@@ -212,7 +211,7 @@ def test_threaded_poll(self):
212
211
os .write (w , b'spam' )
213
212
t .join ()
214
213
215
- # TODO: RUSTPYTHON
214
+ # TODO: RUSTPYTHON add support for negative timeout
216
215
@unittest .expectedFailure
217
216
@unittest .skipUnless (threading , 'Threading required for this test.' )
218
217
@threading_helper .reap_threads
You can’t perform that action at this time.
0 commit comments