Revision: 139ebfd12df0
Branch:   default
Author:   Robot Framework Developers (robotframew...@gmail.com)
Date:     Thu Sep 19 14:01:59 2013 UTC
Log:      Process: added missing spaces to doc
http://code.google.com/p/robotframework/source/detail?r=139ebfd12df0

Modified:
 /src/robot/libraries/Process.py

=======================================
--- /src/robot/libraries/Process.py     Thu Jun 13 22:32:53 2013 UTC
+++ /src/robot/libraries/Process.py     Thu Sep 19 14:01:59 2013 UTC
@@ -318,7 +318,7 @@
     def is_process_running(self, handle=None):
         """Checks is the process running or not.

-        If `handle`is not given, uses the current `active process`.
+        If `handle` is not given, uses the current `active process`.

Returns `True` if the process is still running and `False` otherwise.
         """
@@ -328,7 +328,7 @@
                                   error_message='Process is not running.'):
         """Verifies that the process is running.

-        If `handle`is not given, uses the current `active process`.
+        If `handle` is not given, uses the current `active process`.

         Fails if the process has stopped.
         """
@@ -339,7 +339,7 @@
                                   error_message='Process is running.'):
         """Verifies that the process is not running.

-        If `handle`is not given, uses the current `active process`.
+        If `handle` is not given, uses the current `active process`.

         Fails if the process is still running.
         """
@@ -349,7 +349,7 @@
     def wait_for_process(self, handle=None):
         """Waits for the process to complete.

-        If `handle`is not given, uses the current `active process`.
+        If `handle` is not given, uses the current `active process`.

Returns a `result object` containing information about the execution.
         """
@@ -363,7 +363,7 @@
     def terminate_process(self, handle=None, kill=False):
         """Terminates the process.

-        If `handle`is not given, uses the current `active process`.
+        If `handle` is not given, uses the current `active process`.

         See `Stopping process` for more details.
         """
@@ -394,7 +394,7 @@
     def get_process_id(self, handle=None):
         """Returns the process ID (pid) of the process.

-        If `handle`is not given, uses the current `active process`.
+        If `handle` is not given, uses the current `active process`.

         Returns the pid assigned by the operating system as an integer.
         Note that with Jython, at least with the 2.5 version, the returned
@@ -408,7 +408,7 @@
     def get_process_object(self, handle=None):
         """Return the underlying `subprocess.Popen`  object.

-        If `handle`is not given, uses the current `active process`.
+        If `handle` is not given, uses the current `active process`.
         """
         return self._processes[handle]

--

--- You received this message because you are subscribed to the Google Groups "robotframework-commit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to robotframework-commit+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to