shairubin / fun_with_ast

let's have fun manipulating ASTs in Python
Apache License 2.0
0 stars 1 forks source link

subscript with : fails to match #195

Closed shairubin closed 5 months ago

shairubin commented 5 months ago

See this specific test: def testSubscriptModule7Partial4(self): string = """k[1:] """ node = GetNodeFromInput(string) source = GetSource(node.value) assert source == string

this is not a cenario that we cover in testing and it hide bugs need to fix the bug and add this scenario for our testing.