[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 ___

[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

[issue10351] Add autocompletion for keys in dictionaries

2015-02-11 Thread Martin Panter
Changes by Martin Panter vadmium...@gmail.com: -- nosy: +vadmium ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10351 ___ ___ Python-bugs-list

[issue10351] Add autocompletion for keys in dictionaries

2015-02-11 Thread Raymond Hettinger
Changes by Raymond Hettinger raymond.hettin...@gmail.com: -- versions: +Python 3.5 -Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10351 ___

[issue10351] Add autocompletion for keys in dictionaries

2010-11-22 Thread Éric Araujo
Éric Araujo mer...@netwok.org 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

[issue10351] Add autocompletion for keys in dictionaries

2010-11-21 Thread Rodrigo Bernardo Pimentel
Changes by Rodrigo Bernardo Pimentel r...@isnomore.net: -- nosy: +rbp ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10351 ___ ___ Python-bugs-list

[issue10351] Add autocompletion for keys in dictionaries

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: I will review your patch later today. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10351 ___

[issue10351] Add autocompletion for keys in dictionaries

2010-11-18 Thread Valery Khamenya
Valery Khamenya khame...@gmail.com 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-18 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +facundobatista, georg.brandl ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10351 ___ ___

[issue10351] Add autocompletion for keys in dictionaries

2010-11-12 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10351 ___ ___

[issue10351] Add autocompletion for keys in dictionaries

2010-11-09 Thread Valery Khamenya
Valery Khamenya khame...@gmail.com 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

[issue10351] Add autocompletion for keys in dictionaries

2010-11-09 Thread Andreas Stührk
Changes by Andreas Stührk andy-pyt...@hammerhartes.de: -- nosy: +Trundle ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10351 ___ ___

[issue10351] Add autocompletion for keys in dictionaries

2010-11-08 Thread Éric Araujo
Éric Araujo mer...@netwok.org 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