[issue10351] Add autocompletion for keys in dictionaries

2015-12-07 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +serhiy.storchaka versions: +Python 3.6 -Python 3.5 ___ Python tracker ___ ___ Python-bugs-list

[issue10351] Add autocompletion for keys in dictionaries

2015-12-06 Thread Martin Panter
Martin Panter added the comment: Some thoughts and observations from trying this patch out: * It supports single and double quotes, but triple-quoted strings get trashed * It supports Python 2’s u". . ." syntax, but not r". . .", b". . .", etc * It supports integer keys, but not indexes of lists

[issue10351] Add autocompletion for keys in dictionaries

2015-02-11 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- versions: +Python 3.5 -Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue10351] Add autocompletion for keys in dictionaries

2015-02-11 Thread Martin Panter
Changes by Martin Panter : -- nosy: +vadmium ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue10351] Add autocompletion for keys in dictionaries

2010-11-22 Thread Éric Araujo
Éric Araujo added the comment: Review time! +elif "[" in text: +self.matches = self.dict_key_matches(text) Does this complete only dicts? What about other mappings? What about other sequences implementing __getitem__? One of the function name and the function do

[issue10351] Add autocompletion for keys in dictionaries

2010-11-21 Thread Rodrigo Bernardo Pimentel
Changes by Rodrigo Bernardo Pimentel : -- nosy: +rbp ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue10351] Add autocompletion for keys in dictionaries

2010-11-20 Thread Éric Araujo
Éric Araujo added the comment: I will review your patch later today. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue10351] Add autocompletion for keys in dictionaries

2010-11-18 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +facundobatista, georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue10351] Add autocompletion for keys in dictionaries

2010-11-18 Thread Valery Khamenya
Valery Khamenya added the comment: Guys, do you expect anythig else from me in respect to this issue? Let me know it before my non-stopable garbage collector wipes all the details from my brain away :) -- ___ Python tracker

[issue10351] Add autocompletion for keys in dictionaries

2010-11-12 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue10351] Add autocompletion for keys in dictionaries

2010-11-09 Thread Andreas Stührk
Changes by Andreas Stührk : -- nosy: +Trundle ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue10351] Add autocompletion for keys in dictionaries

2010-11-09 Thread Valery Khamenya
Valery Khamenya added the comment: Hi Éric, thanks for guiding. So, attached is the concatenation of two forward unified diffs for rlcompleter.py and test_rlcompleter.py -- both as of py3k trunk. Tested against Python 3.1.2 though. P.S. hm, py3k code appeared to be surprisingly nicer -- no

[issue10351] Add autocompletion for keys in dictionaries

2010-11-08 Thread Éric Araujo
Éric Araujo added the comment: Thank you for the report and patch. This is a new feature, thus targetting the py3k branch (future 3.2). If your patch is not against this branch, can you refresh it? Also, please attach it as text file(s), and generally follow guidelines outlined at http://w