Re: compare items in list to x

2008-11-02 Thread Pete Kirkham
2 is not equal to '2' -- http://mail.python.org/mailman/listinfo/python-list

Re: Multiline text in XML file

2008-08-03 Thread Pete Kirkham
http://www.w3.org/TR/REC-xml/#sec-white-space is relevant, as is the following section on handling carriage returns. Don't mix C escapes "\n" and XML markup - there really is is no point, and it reduces the portability of the XML. XML lets you put carriage returns in without excapes into text, and

Re: C++ or Python

2008-07-02 Thread Pete Kirkham
2008/6/29 Dan Stromberg <[EMAIL PROTECTED]>: > > On Sun, 29 Jun 2008 11:20:45 +0200, Sebastian \"lunar\" Wiesner wrote: > > > Dan Stromberg <[EMAIL PROTECTED]>: > > > >> things like passing a method as a function parameter is a no-brainer > >> (requires extra syntax in java because of the cautious

Re: Fast and easy GUI prototyping with Python

2008-06-22 Thread Pete Kirkham
2008/6/21 Val-Amart <[EMAIL PROTECTED]>: > Use PyQt. You will gain great portability +all the functionality built > in qt. > You can try PyGTK also, though i wont recommend it. > Why would you not recommend it? I've been using it for a mall project, and would like to know if there's some pit waiti