How can I called f.readline() where the line delimeter is \r\n ?  
This CSV file is very large so I can't do f.read().split('\r\n').  
Instead I'm hoping for f.readline('\r\n').
Here is a typical line:
1, "ABC", "the quick \n brown fox \n jumps over the \n lazy dogs", 5 \r\n
 
     
     
    