Re: cmd.Cmd bug or at least docu-bug

2008-05-29 Thread Michele Simionato
On May 29, 11:26 am, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > Hi, > > I'm fiddling around with module cmd. I tried to pass my own streams as > replacements for stdin and stdout. However, stdin wasn't working. After a > look into the sourcecode I discovered that there is an class-variable > c

cmd.Cmd bug or at least docu-bug

2008-05-29 Thread Diez B. Roggisch
Hi, I'm fiddling around with module cmd. I tried to pass my own streams as replacements for stdin and stdout. However, stdin wasn't working. After a look into the sourcecode I discovered that there is an class-variable called use_rawinput that prevents using the passed stdin. I then read the do