For a standard Python Console window, you can remove the last line with for example sys.stdout.write('\r'+' '*len(line))
as I explained here.
But for editors like SciTe, Idle or Eclipse (with PyDev), the stdout is a file-type object, probably flushing its content to the console window leaving its buffer empty and thus not allowing modify the content once it has appeared on in the window. What trick can be applied to, for example, erase the last line of such console? Is there a one-size-fits-all way to do it, generating the same result if the script is run outside of the editor writing to a standard Python Console Window?
edit: Checking type(os.sys.stdout) shows:
- SciTe:
<type 'file'>
- Idle:
<class 'idlelib.rpc.RPCProxy'>
- Eclipse:
<type 'file'>
- Python Console Window:
<type 'file'>
In the standard python console stdout, the result stdout.write('\r')
of is different from the consoles of SciTe and Eclipse, thus the type
of the stdout does not define its implementation.
edit: just saw java folks having similar problem and reported is as a bug...