(ready, flag)
| 45 | |
| 46 | |
| 47 | def find_ready_matching(ready, flag): |
| 48 | match = [] |
| 49 | for key, events in ready: |
| 50 | if events & flag: |
| 51 | match.append(key.fileobj) |
| 52 | return match |
| 53 | |
| 54 | |
| 55 | class BaseSelectorTestCase: |
no test coverage detected
searching dependent graphs…