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

getting list of all available modules

2005-06-20 Thread Benjamin Rutt
I note that the help() function of interactive python can determine all available modules: [EMAIL PROTECTED] ~]$ python Python 2.4 (#1, Mar 31 2005, 15:26:02) [GCC 3.2.3 (Debian)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> help()