| 853 | |
| 854 | # A pure container is _not_ OK for array input. |
| 855 | class SomeContainer: |
| 856 | def __contains__(self, item): |
| 857 | return False |
| 858 | |
| 859 | with self.assertRaisesRegex(asyncpg.DataError, |
| 860 | 'sized iterable container expected'): |
no outgoing calls
searching dependent graphs…