Is it possible to display a list of all user functions in the IDLE session?
I can see them popping up in the autocomplete, so maybe there is other way to just display on
This should work:
print([f for f in dir() if f[0] is not '_'])
Tested on version 3.5.2.
3.5.2
dir() will essentially give you a list of callable objects within the current scope.
dir()