> [ord(x) for x in data] > Since I'm not python literate, I can't determine what my next > course of action is. Is this a legit bug or is this related to > the fact that I'm running an old python (version 1.5.2)?
It's related to the fact that you're running an old python. This feature (list comprehensions) was released in version 2.0 of Python, but if I were you, I would try to upgrade to at least version 2.1.3, since that was what was included in the Windows distribution in the first Google link I read. (If the actual minimum version differs from 2.1.3, hopefully one of the other people on the list will speak up.) Minimum versions of things might also be a nice bit of info to put on the Downloads page at http://www.plkr.org/index.plkr?a=dl Just a thought. (As a side note, list comprehensions are one of my favourite features of Python. You can find a full description, and some examples of them at: http://www.python.org/peps/pep-0202.html ) Later, Blake. _______________________________________________ plucker-list mailing list [EMAIL PROTECTED] http://lists.rubberchicken.org/mailman/listinfo/plucker-list

