(self)
| 2121 | ([], [[[111, 112], [121, 122]], [[211, 212], [221, 222]]])) |
| 2122 | |
| 2123 | def test_copy(self): |
| 2124 | async def func(): pass |
| 2125 | coro = func() |
| 2126 | with self.assertRaises(TypeError): |
| 2127 | copy.copy(coro) |
| 2128 | |
| 2129 | aw = coro.__await__() |
| 2130 | try: |
| 2131 | with self.assertRaises(TypeError): |
| 2132 | copy.copy(aw) |
| 2133 | finally: |
| 2134 | aw.close() |
| 2135 | |
| 2136 | def test_pickle(self): |
| 2137 | async def func(): pass |
nothing calls this directly
no test coverage detected