Following along the whole rlcompleter/readline/editline thread, I noticed
today that when I do tab completion on a class, I get everything listed
twice.Happens in python and ipython.
Example:
>>> i = int(5)
>>> i
5
>>> i.__
Display all 121 possibilities? (y or n)
i.__abs__           i.__abs__           i.__add__           i.__add__

i.__and__           i.__and__           i.__class__         i.__class__
...etc.


I don't see duplicates if I do 'dir(i)'

Is anyone else seeing this behavior?  Any ideas why?  Something in the
rlcompleter or readline...  Seems to occur with any class.


-Michael
_______________________________________________
Pythonmac-SIG maillist  -  Pythonmac-SIG@python.org
http://mail.python.org/mailman/listinfo/pythonmac-sig

Reply via email to