You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
>>>arr=ndtest(3)
>>>arraa0a1a2012>>># this should NOT succeed
... arr[X.b['a1']]
1>>># neither should this
... arr['b[a1]']
1>>>arr=ndtest((2, 3))
>>># this fails as it should>>>arr[X.b['a1']]
ValueError: X.b['a1'] isnotavalidlabelforanyaxis
The above issue should not be too hard to fix because I don't see a use case we would break by restricting that.