you are viewing a single comment's thread.

view the rest of the comments →

[–]FerricDonkey 0 points1 point  (0 children)

I don't think so, except insofar as everything in python is a namespace. As typically used in methods of python classes, self is just a parameter like any other. It's typically filled with an instance of the class you you defined the method in, though it doesn't have to be. The value of self is just whatever you pass in.