Re: Printing with colors in a portable way

2009-08-05 Thread Aahz
In article <19e16923-b200-498b-9ab2-f7d316b56...@d32g2000yqh.googlegroups.com>, r wrote: >On Aug 2, 9:52=A0pm, a...@pythoncraft.com (Aahz) wrote: > >> Much as I hate to say, use a cross-platform GUI -- Tkinter comes with >> Python, > >Why is Tkinter such a whipping boy of the Python community?

Re: Printing with colors in a portable way

2009-08-03 Thread Jean-Michel Pichavant
Nobody wrote: On Thu, 30 Jul 2009 15:40:37 -0700, Robert Dailey wrote: Anyone know of a way to print text in Python 3.1 with colors in a portable way? In other words, I should be able to do something like this: print_color( "This is my text", COLOR_BLUE ) And this should be portable (i.e.

Re: Printing with colors in a portable way

2009-08-03 Thread r
On Aug 2, 9:52 pm, a...@pythoncraft.com (Aahz) wrote: [snip] > Much as I hate to say, use a cross-platform GUI -- Tkinter comes with > Python, [snip] Why is Tkinter such a whipping boy of the Python community? I know it's very simple and does not have all the bells and whistles of wx, but i think

Re: Printing with colors in a portable way

2009-08-03 Thread Aahz
In article <33e19169-19b4-497a-b262-2bcf7b563...@r38g2000yqn.googlegroups.com>, Robert Dailey wrote: > >Anyone know of a way to print text in Python 3.1 with colors in a >portable way? In other words, I should be able to do something like >this: > >print_color( "This is my text", COLOR_BLUE ) > >

Re: Printing with colors in a portable way

2009-07-31 Thread Nobody
On Thu, 30 Jul 2009 15:40:37 -0700, Robert Dailey wrote: > Anyone know of a way to print text in Python 3.1 with colors in a > portable way? In other words, I should be able to do something like > this: > > print_color( "This is my text", COLOR_BLUE ) > > And this should be portable (i.e. it sho

Re: Printing with colors in a portable way

2009-07-30 Thread Grant Edwards
On 2009-07-30, Robert Dailey wrote: > Anyone know of a way to print text in Python 3.1 with colors in a > portable way? In other words, I should be able to do something like > this: > > print_color( "This is my text", COLOR_BLUE ) > > And this should be portable (i.e. it should work on Linux, Mac,

Re: Printing with colors in a portable way

2009-07-30 Thread Jan Kaliszewski
31-07-2009 o 01:29:50 Rhodri James wrote: On Thu, 30 Jul 2009 23:40:37 +0100, Robert Dailey wrote: Anyone know of a way to print text in Python 3.1 with colors in a portable way? In other words, I should be able to do something like this: print_color( "This is my text", COLOR_BLUE ) And

Re: Printing with colors in a portable way

2009-07-30 Thread Rhodri James
On Thu, 30 Jul 2009 23:40:37 +0100, Robert Dailey wrote: Anyone know of a way to print text in Python 3.1 with colors in a portable way? In other words, I should be able to do something like this: print_color( "This is my text", COLOR_BLUE ) And this should be portable (i.e. it should work

Printing with colors in a portable way

2009-07-30 Thread Robert Dailey
Anyone know of a way to print text in Python 3.1 with colors in a portable way? In other words, I should be able to do something like this: print_color( "This is my text", COLOR_BLUE ) And this should be portable (i.e. it should work on Linux, Mac, Windows). -- http://mail.python.org/mailman/lis