-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Description
Currently one has to write:
>>> arr['key1', 'key2']
even though key1 and key2 can be "string keys". So I don't see any reason to disallow going one step further.
See also #151
For example:
>>> arr = ndtest((3, 4))
>>> arr['a2;b1..b3']
b b1 b2 b3
9 10 11
>>> arr['b1;a2']
9