View Single Post
Old Mar 22nd, 2007, 3:11 AM   #14
kurt
Programmer
 
Join Date: Oct 2005
Posts: 68
Rep Power: 3 kurt is on a distinguished road
Quote:
Originally Posted by Sane View Post
I keep "Python Command Line" open on the side.

>>> import os
>>> dir(os) 
[a list of all the methods of os here]
>>> help(os.system)
[description of function, list of parameters, and any additional notes that were left]
It may not be as fast, but it's perhaps even more useful.
Hm...this is useful for Python's own set of commands, but not for the project i'm working on, which around 10-20 people are working on it. Not to mention no documentation for it, but that's a different issue.
kurt is offline   Reply With Quote