[Tutor] method conflict?

Mark Lawrence breamoreboy at yahoo.co.uk
Fri Jul 3 06:35:30 CEST 2015


On 03/07/2015 01:39, Jim Mooney Py3.4.3winXP wrote:
> Okay, it appears the method in a class has its own ID, but all
> instantiations of that method have identical IDs. But what happens if we
> have a huge number of instantiations trying to access the identical method
> at the same time?

I understand that Python "just works".  What do you think happens?

>
> class MyClass:
>      def setdata(self, data):
>          self.data = data
>      def getdata(self):
>          print(self.data)
>

I'd say the only conflict here is writing unneeded boilerplate code in 
Python :)

-- 
My fellow Pythonistas, ask not what our language can do for you, ask
what you can do for our language.

Mark Lawrence



More information about the Tutor mailing list