Re: read from standard input

2009-12-05 Thread Siva B
gt;> > >> On Fri, Dec 4, 2009 at 9:37 PM, Siva B wrote: > >> > Hi all, > >> > > >> > I wrote a program to read some data through standard input and write > in > >> > a > >> > file. > >> > the following code work

Re: editor with autocompletion

2009-12-04 Thread Siva B
open source.) I have seen Komodo edit but it looks too big any help plz. Regards, Siva On Fri, Dec 4, 2009 at 8:04 PM, Gerhard Häring wrote: > Siva B wrote: > > Hi friends, > > > > I am writing a new language. > > So I want an editor with auto complete. > >

Re: read from standard input

2009-12-04 Thread Siva B
t 11:54 AM, Chris Rebert wrote: > On Fri, Dec 4, 2009 at 9:37 PM, Siva B wrote: > > Hi all, > > > > I wrote a program to read some data through standard input and write in a > > file. > > the following code works fine in linux. > > but its giving ArgumentErro

read from standard input

2009-12-04 Thread Siva B
Hi all, I wrote a program to read some data through standard input and write in a file. the following code works fine in linux. but its giving ArgumentError in windows. Code: import sys orig_source = sys.stdin.read() file=open('data.txt','w') file.write(orig_source) file.close() please post s

editor with autocompletion

2009-12-03 Thread Siva B
Hi friends, I am writing a new language. So I want an editor with auto complete. I there any such tool in Python ?(not only in python any other) I want it for my new lang help me Thanks siva -- http://mail.python.org/mailman/listinfo/python-list