How hard would be adding such autocomplete for dict keys? ``` #!python >>> dic = {'key1': 1, 'key2': 2, 3: 333, an_object: 4} >>> dic[ ┌─────────────────────────────────── │ 'key1' 'key2' 3 an_object └─────────────────────────────────── ``` --- - Bitbucket: https://bitbucket.org/bobf/bpython/issue/226 - Originally Reported By: [Andrei Fokau](http://bitbucket.org/andreif) - Originally Created At: 2012-08-23T08:33:58.429
How hard would be adding such autocomplete for dict keys?