Re: \r functionality

2005-05-17 Thread Fredrik Lundh
"Jake" <[EMAIL PROTECTED]> wrote: > in c and c++ there is a useful way to refresh an output line in printf > and cout using \r meta command. that's a control character that's printed to the terminal by printf/cout, not a "C or C++ meta command" to print the same character in Python, use the same

Re: \r functionality

2005-05-17 Thread Duncan Booth
Jake wrote: > in c and c++ there is a useful way to refresh an output line in printf > and cout using \r meta command. So for example in the wget application > the progress of the download is updated on the same output line of the > screen. From an intital investigation python seems to lack this.

Re: \r functionality

2005-05-17 Thread Daniel Schüle
Jake wrote: > in c and c++ there is a useful way to refresh an output line in printf > and cout using \r meta command. So for example in the wget application > the progress of the download is updated on the same output line of the > screen. From an intital investigation python seems to lack this. I

Re: \r functionality

2005-05-17 Thread Markus Weihs
Hi! > in c and c++ there is a useful way to refresh an output line in printf > and cout using \r meta command. So for example in the wget application > the progress of the download is updated on the same output line of the > screen. From an intital investigation python seems to lack this. Is > thi

\r functionality

2005-05-17 Thread Jake
in c and c++ there is a useful way to refresh an output line in printf and cout using \r meta command. So for example in the wget application the progress of the download is updated on the same output line of the screen. From an intital investigation python seems to lack this. Is this correct? --