(req, flag)
| 995 | |
| 996 | def verify_getbuf(self, orig_ex, ex, req, sliced=False): |
| 997 | def match(req, flag): |
| 998 | return ((req&flag) == flag) |
| 999 | |
| 1000 | if (# writable request to read-only exporter |
| 1001 | (ex.readonly and match(req, PyBUF_WRITABLE)) or |
no outgoing calls
no test coverage detected