pydoc documentation

2005-02-22 Thread Liat Koski
Hellow all, I need to use pydoc mosule in order to get documentation to programs i made I can't find a good source explaning how to use this module I work on linux OS but this documentation can be made also on my windows OS If anyone knows how to use it, and maybe has some source code he wrote

pydoc documentation

2005-02-22 Thread Liat Koski
Hellow all, I need to use pydoc mosule in order to get documentation to programs i made I can't find a good source explaning how to use this module I work on linux OS but this documentation can be made also on my windows OS If anyone knows how to use it, and maybe has some source code

Re: pydoc documentation

2005-02-22 Thread Michele Simionato
$ pydoc -g M.S. -- http://mail.python.org/mailman/listinfo/python-list

RE: pydoc documentation- referred to Michele answer

2005-02-22 Thread Liat Koski
: Michele Simionato [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 22, 2005 12:16 PM To: python-list@python.org Subject: Re: pydoc documentation $ pydoc -g M.S. -- http://mail.python.org/mailman/listinfo/python-list

Re: pydoc documentation- referred to Michele answer

2005-02-22 Thread Michele Simionato
It works for any module in your path, including your current directory. Supposer you have /home/myname/mymodule.py do the following: $ cd /home/myname $ pydoc -g open the browser and you will see the documentation for mymodule.py just below the documentation for the builtin modules.

Re: pydoc documentation- referred to Michele answer

2005-02-22 Thread Scott David Daniels
Liat Koski wrote: Hellow Michele, This systax is working only with bulid in modules, like 'sys' for example But not for personal programs. Am i wrong?? Can you please send me some syntax example you have? cause i'm getting syntax error that i don't know how to solve Thanks Liat Consider this: