Help for this page

Select Code to Download


  1. or download this
    The output record separator for print() and cmd() is set to "\n" by de
    +fault, so that you don't have to append all your commands with a newl
    +ine. To avoid printing a trailing "\n" use put() or set the output_re
    +cord_separator to "".
    
  2. or download this
    In the input stream, each sequence of carriage return and line feed (i
    +.e. "\015\012" or CR LF) is converted to "\n". In the output stream, 
    +each occurrence of "\n" is converted to a sequence of CR LF. See binm
    +ode() to change the behavior. TCP protocols typically use the ASCII s
    +equence, carriage return and line feed to designate a newline.