Re: putchar(8)

2009-10-17 Thread Dave Angel
Dave Angel wrote: Jason Tackaberry wrote: On Fri, 2009-10-16 at 12:01 -0700, gervaz wrote: Hi all, is there in python the equivalent of the C function int putchar (int c)? I need to print putchar(8). print '\x08' or: print chr(8) If I recall

Re: putchar(8)

2009-10-17 Thread mattia
Il Sat, 17 Oct 2009 06:48:10 -0400, Dave Angel ha scritto: Dave Angel wrote: Jason Tackaberry wrote: On Fri, 2009-10-16 at 12:01 -0700, gervaz wrote: Hi all, is there in python the equivalent of the C function int putchar (int c)? I need to print putchar(8). print '\x08

putchar(8)

2009-10-16 Thread gervaz
Hi all, is there a pythonic way to have the -- http://mail.python.org/mailman/listinfo/python-list

putchar(8)

2009-10-16 Thread gervaz
Hi all, is there in python the equivalent of the C function int putchar (int c)? I need to print putchar(8). Thanks, Mattia -- http://mail.python.org/mailman/listinfo/python-list

Re: putchar(8)

2009-10-16 Thread Jason Tackaberry
On Fri, 2009-10-16 at 12:01 -0700, gervaz wrote: Hi all, is there in python the equivalent of the C function int putchar (int c)? I need to print putchar(8). print '\x08' or: print chr(8) -- http://mail.python.org/mailman/listinfo/python-list

Re: putchar(8)

2009-10-16 Thread Dave Angel
Jason Tackaberry wrote: On Fri, 2009-10-16 at 12:01 -0700, gervaz wrote: Hi all, is there in python the equivalent of the C function int putchar (int c)? I need to print putchar(8). print '\x08' or: print chr(8) If I recall correctly, putchar