[GRASS-SVN] r45232 - grass/branches/releasebranch_6_4/lib/python
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Jan 28 08:04:24 EST 2011
Author: martinl
Date: 2011-01-28 05:04:24 -0800 (Fri, 28 Jan 2011)
New Revision: 45232
Modified:
grass/branches/releasebranch_6_4/lib/python/core.py
Log:
pythonlib: cosmetics in dox strings
(merge r45229 from trunk)
Modified: grass/branches/releasebranch_6_4/lib/python/core.py
===================================================================
--- grass/branches/releasebranch_6_4/lib/python/core.py 2011-01-28 12:57:14 UTC (rev 45231)
+++ grass/branches/releasebranch_6_4/lib/python/core.py 2011-01-28 13:04:24 UTC (rev 45232)
@@ -163,7 +163,7 @@
return Popen(args, **popts)
def run_command(*args, **kwargs):
- """!Passes all arguments to start_command, then waits for the process to
+ """!Passes all arguments to start_command(), then waits for the process to
complete, returning its exit code. Similar to subprocess.call(), but
with the make_command() interface.
@@ -176,7 +176,7 @@
return ps.wait()
def pipe_command(*args, **kwargs):
- """!Passes all arguments to start_command, but also adds
+ """!Passes all arguments to start_command(), but also adds
"stdout = PIPE". Returns the Popen object.
\code
@@ -201,7 +201,7 @@
return start_command(*args, **kwargs)
def feed_command(*args, **kwargs):
- """!Passes all arguments to start_command, but also adds
+ """!Passes all arguments to start_command(), but also adds
"stdin = PIPE". Returns the Popen object.
@param args list of unnamed arguments (see start_command() for details)
More information about the grass-commit
mailing list