Re: Tab completion in Python3.4

2013-09-30 Thread Steven D'Aprano
On Mon, 30 Sep 2013 08:50:01 +, Antoine Pitrou wrote: > Steven D'Aprano pearwood.info> writes: >> >> I don't consider either of these solutions to be satisfactory. If you >> agree, I urge you to try it out for yourself, and then leave a comment >> on the bug tracker asking for tab completion

Re: Tab completion in Python3.4

2013-09-30 Thread Antoine Pitrou
Steven D'Aprano pearwood.info> writes: > > I don't consider either of these solutions to be satisfactory. If you > agree, I urge you to try it out for yourself, and then leave a comment on > the bug tracker asking for tab completion to still insert tabs at the > beginning of the line: Such a

Tab completion in Python3.4

2013-09-29 Thread Steven D'Aprano
By default, Python 3.4 will ship with tab completion turned on. When you hit the tab key, Python will try to complete the current function, method, variable or other name, if necessary displaying the alternatives is there are more than one: py> d = {} py> d.pop d.pop( d.popitem( This