Re: getting list of all available modules

2005-06-21 Thread Peter Otten
Benjamin Rutt wrote: > I want to do the same (get all such modules in a python list); how can > I do > so?  Or where is the code for the REPL for help() itself so I can > find out myself? Get hold of the Python source code and grep for some (hopefully) selective piece of text. In the case of hel

Re: getting list of all available modules

2005-06-21 Thread TZOTZIOY
On Tue, 21 Jun 2005 01:33:06 GMT, rumours say that Benjamin Rutt <[EMAIL PROTECTED]> might have written: >I note that the help() function of interactive python can determine >all available modules: >I want to do the same (get all such modules in a python list); how can >I do so? Or where is th