only lookup __[set/get/del]slice__ for slice AST nodes
before this change C()[slice(1,2)] = "a" would call into `__setslice__` because it got handled as C()[1,2] = "a" This commits adds cpythons assign_slice/apply_slice and add rewriter support for them.
Showing
This diff is collapsed.
Please register or sign in to comment