Re: [Tutor] cpython

2011-05-14 Thread Steven D'Aprano
On Thu, 12 May 2011 11:18:40 pm Izz ad-Din Ruhulessin wrote: > Hi, > > CPython is the C implementation of Python. You can read the tutorial > in the Python docs. > > It is a rather advanced topic, however. If you nevertheless want to > delve into it, it might be a good idea to check out www.cython.

Re: [Tutor] python file upload

2011-05-14 Thread Brett Ritter
On Friday, May 13, 2011, Rayon wrote: > Hi all, I need a python script to upload a xml file to a web page using > python. I have tried using pycurl but I am still getting Fyi, the XML spec allows for no characters or whitespace before the XML declaration, that could be your error, -- Brett Rit

[Tutor] Hungry Snake now on Softpedia

2011-05-14 Thread ANKUR AGGARWAL
Hey I got a mail form softpedia today that they have added my game "Hungry Snake" to their site too under 100% free certificate. I am really happy :):) I can feel the power of open source :):) Want to share this with you people because I learned a lot from the python community . Game Links - http

Re: [Tutor] Help with exceptions please

2011-05-14 Thread Timo
On 14-05-11 05:05, Wayne Werner wrote: On Fri, May 13, 2011 at 7:48 PM, Lea Parker > wrote: Hello I have another assignment I am trying to fine tune. The idea is to make sure exceptions work. I have come up with a problem when testing my code. When

Re: [Tutor] Overriding a method in a class

2011-05-14 Thread Alan Gauld
"Terry Carroll" wrote in message I have a pretty basic point of confusion that I'm hoping I can have explained to me. I have a class in which I want to override a method, and have my method defined externally to the class definition invoked instead. Is there any reason you can'tt override