Construct a List from a Python sequence.
(self, input_list: Iterable[T] = ())
| 281 | return _ffi_api.DeepCopy(self) |
| 282 | |
| 283 | def __init__(self, input_list: Iterable[T] = ()) -> None: |
| 284 | """Construct a List from a Python sequence.""" |
| 285 | self.__init_handle_by_constructor__(_ffi_api.List, *input_list) |
| 286 | |
| 287 | @overload |
| 288 | def __getitem__(self, idx: SupportsIndex, /) -> T: ... |
nothing calls this directly
no outgoing calls
no test coverage detected