Below i was expecting the test() function to be called, but it doesn't. Am i 
doing it wrong?
By the way i'm running version 2.7.10 on a mac.

$python

>>> import readline
>>> def test():
...   print("test")
...
>>> test()
test
>>> print(help(readline))

None
>>> readline.set_completer(test)
>>> raw_input()

'\t\t\t'
>>>
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to