Re: Help with Iteration

2008-10-19 Thread Asun Friere
On Oct 20, 6:10 am, Aaron Brady <[EMAIL PROTECTED]> wrote: [snip] > If customers are stupid, should you sell stupid software? That's a hypothetical question with which we need never concern ourselves. After all, by definition customers are not stupid, but "always right." -- http://mail.python.

a question about Chinese characters in a Python Program

2008-10-19 Thread Liang Chen
Hope you all had a nice weekend. I have a question that I hope someone can help me out. I want to run a Python program that uses Tkinter for the user interface (GUI). The program allows me to type Chinese characters, but neverthelss is unable to show them up on screen. The follow is some of th

Re: ANN: pyparsing 1.5.1 released

2008-10-19 Thread Benjamin
On Oct 17, 11:14 pm, Paul McGuire <[EMAIL PROTECTED]> wrote: > > (Python 3.0 uses syntax for catching exceptions that is incompatible > with Python versions pre 2.6, so there is no way for me to support > both existing Python releases and Python 3.0 with a common source code > base.  For those who

Re: Help with Iteration

2008-10-19 Thread Aaron Brady
On Oct 19, 12:27 pm, "Eric Wertman" <[EMAIL PROTECTED]> wrote: > >> Aaron Brady wrote: > > >>> while 1: > >>>    calculate_stuff( ) > >>>    if stuff < 0.5: > >>>        break > > >> The thought police will come and get you. > > Based on Aaron's previous posting history,  I suspect this was a

Re: Help with Iteration

2008-10-19 Thread Aaron Brady
On Oct 19, 8:47 pm, Asun Friere <[EMAIL PROTECTED]> wrote: > On Oct 20, 6:10 am, Aaron Brady <[EMAIL PROTECTED]> wrote: > > [snip] > > > If customers are stupid, should you sell stupid software? > > That's a hypothetical question with which we need never concern > ourselves.  After all, by definiti

Re: a question about Chinese characters in a Python Program

2008-10-19 Thread est
On Oct 20, 10:48 am, Liang Chen <[EMAIL PROTECTED]> wrote: > Hope you all had a nice weekend. > > I have a question that I hope someone can help me out. I want to run a Python > program that uses Tkinter for the user interface (GUI). The program allows me > to type Chinese characters, but neverth

search for a python compiler program whose name is jingle

2008-10-19 Thread oyster
I don't remember its name very clear, it may be 'jingle' or not this program runs on windows and can compile a python program into exe file without gcc it has no webspace but is announced on the author's blog when I find it some times ago. I can't find the link now. I there anybody else know it and

Re: ANN: pyparsing 1.5.1 released

2008-10-19 Thread oyster
but the pyparsing.py in pyparsing-1.5.1.tar.gz is marked as 2008-10-02 I think it is good too touch all the files' time up-to-date. -- http://mail.python.org/mailman/listinfo/python-list

Re: a question about Chinese characters in a Python Program

2008-10-19 Thread oyster
I believe that is the problem with encode/code. you can find more @ http://groups.google.com/group/python-cn -- http://mail.python.org/mailman/listinfo/python-list

Re: ANN: pyparsing 1.5.1 released

2008-10-19 Thread Terry Reedy
Rob Williscroft wrote: AIUI the idea is that you write your 2.x python code (and tests) so that when they are processed by 2to3.py you get valid python 3.x code that will pass all its tests. You then maintain your 2.x code base adding another test where the code (and tests) is run through 2

<    1   2