[issue25011] Smarter rl complete: hide private and special names

2015-09-27 Thread Berker Peksag
Changes by Berker Peksag : -- stage: patch review -> resolved ___ Python tracker ___

[issue25011] Smarter rl complete: hide private and special names

2015-09-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4dbb315fe667 by Serhiy Storchaka in branch 'default': Issue #25011: rlcomplete now omits private and special attribute names unless https://hg.python.org/cpython/rev/4dbb315fe667 -- nosy: +python-dev ___

[issue25011] Smarter rl complete: hide private and special names

2015-09-27 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue25011] Smarter rl complete: hide private and special names

2015-09-19 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: If no one has objections, I'll commit the patch. -- assignee: -> serhiy.storchaka ___ Python tracker ___

[issue25011] Smarter rl complete: hide private and special names

2015-09-07 Thread R. David Murray
R. David Murray added the comment: Sounds good to me, especially the __ part. I don't actually use completions, though :) -- ___ Python tracker ___

[issue25011] Smarter rl complete: hide private and special names

2015-09-06 Thread Antoine Pitrou
Antoine Pitrou added the comment: I like the idea, though some people may object to breaking their worflow (tm). Nosy'ing David just in case ;-) -- nosy: +r.david.murray ___ Python tracker

[issue25011] Smarter rl complete: hide private and special names

2015-09-05 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: When press tabulation just after the dot, the output is too long. It contains all attributes, most of them are dunder names. >>> int. int.__abs__(int.__doc__ int.__int__( int.__pos__(int.__round__(