@@ -670,8 +670,8 @@ struct error
670
670
* This is basically used to determine the length of the actual
671
671
* data stored inside the dynamically resized vector.
672
672
*
673
- * This is what is returned as the output to communicate and check_output
674
- * functions , so, users must know about this class.
673
+ * This is what is returned as the output to the communicate
674
+ * function , so, users must know about this class.
675
675
*
676
676
* OutBuffer and ErrBuffer are just different typedefs to this class.
677
677
*/
@@ -704,8 +704,7 @@ class Popen;
704
704
namespace detail {
705
705
/* !
706
706
* A helper class to Popen class for setting
707
- * options as provided in the Popen constructor
708
- * or in check_output arguments.
707
+ * options as provided in the Popen constructor.
709
708
* This design allows us to _not_ have any fixed position
710
709
* to any arguments and specify them in a way similar to what
711
710
* can be done in python.
@@ -897,23 +896,23 @@ class Streams
897
896
* interface to the client.
898
897
*
899
898
* API's provided by the class:
900
- * 1. Popen({"cmd"}, output{..}, error{..}, ....)
899
+ * Popen({"cmd"}, output{..}, error{..}, ....)
901
900
* Command provided as a sequence.
902
- * 2. Popen("cmd arg1"m output{..}, error{..}, ....)
901
+ * Popen("cmd arg1", output{..}, error{..}, ....)
903
902
* Command provided in a single string.
904
- * 3. wait() - Wait for the child to exit.
905
- * 4. retcode() - The return code of the exited child.
906
- * 5. pid() - PID of the spawned child.
907
- * 6. poll() - Check the status of the running child.
908
- * 8. send(...) - Send input to the input channel of the child.
909
- * 9. communicate(...) - Get the output/error from the child and close the channels
910
- * from the parent side.
911
- *10. input() - Get the input channel/File pointer. Can be used for
912
- * customizing the way of sending input to child.
913
- *11. output() - Get the output channel/File pointer. Usually used
914
- in case of redirection. See piping examples.
915
- *12. error() - Get the error channel/File pointer. Usually used
916
- in case of redirection.
903
+ * wait() - Wait for the child to exit.
904
+ * retcode() - The return code of the exited child.
905
+ * pid() - PID of the spawned child.
906
+ * poll() - Check the status of the running child.
907
+ * send(...) - Send input to the input channel of the child.
908
+ * communicate(...) - Get the output/error from the child and close the channels
909
+ * from the parent side.
910
+ * input() - Get the input channel/File pointer. Can be used for
911
+ * customizing the way of sending input to child.
912
+ * output() - Get the output channel/File pointer. Usually used
913
+ in case of redirection. See piping examples.
914
+ * error() - Get the error channel/File pointer. Usually used
915
+ in case of redirection.
917
916
*/
918
917
class Popen
919
918
{
0 commit comments