Martin--
You received this message because you are subscribed to the Google Groups "sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sage-devel+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/sage-devel/53c97d28-fc5e-43ee-9371-bf8d2b646554n%40googlegroups.com.
Extend the list by appending all the items from the iterable. Equivalent to a[len(a):] = iterable.
Extend the list by appending all the items from the iterable. Equivalent to a[len(a):] = iterable.
The question is, whether we can rely on behaviour of the reference implementation of python which contradicts its documentation:list.extend(iterable)Extend the list by appending all the items from the iterable. Equivalent to a[len(a):] = iterable.