How to write GUI and event separately in wxPython??

Marc 'BlackJack' Rintsch bj_666 at gmx.net
Mon Jul 30 07:02:03 EDT 2007


On Mon, 30 Jul 2007 06:32:55 -0400, Steve Holden wrote:

>  >>> [x for x in xrange(0, 101)] == [y for y in xrange(101)]
> True

First I thought: Why the unnecessary list comprehension but to my surprise:

In [33]: xrange(42) == xrange(42)
Out[33]: False

That's strange.

Ciao,
	Marc 'BlackJack' Rintsch



More information about the Python-list mailing list