| 1254 | def asend(self, value): return value |
| 1255 | |
| 1256 | class NonAGen3: |
| 1257 | def aclose(self): pass |
| 1258 | def asend(self, value): return value |
| 1259 | def athrow(self, typ, val=None, tb=None): pass |
| 1260 | |
| 1261 | non_samples = [ |
| 1262 | None, 42, 3.14, 1j, b"", "", (), [], {}, set(), |
no outgoing calls
searching dependent graphs…