(req, flag)
| 983 | |
| 984 | def verify_getbuf(self, orig_ex, ex, req, sliced=False): |
| 985 | def match(req, flag): |
| 986 | return ((req&flag) == flag) |
| 987 | |
| 988 | if (# writable request to read-only exporter |
| 989 | (ex.readonly and match(req, PyBUF_WRITABLE)) or |
no outgoing calls
no test coverage detected