(ready, flag)
| 14 | |
| 15 | |
| 16 | def find_ready_matching(ready, flag): |
| 17 | match = [] |
| 18 | for fd, mode in ready: |
| 19 | if mode & flag: |
| 20 | match.append(fd) |
| 21 | return match |
| 22 | |
| 23 | class DevPollTests(unittest.TestCase): |
| 24 |
no test coverage detected
searching dependent graphs…