I am having difficulty understanding one thing in Python.I have been coding in Python from a very long time but there's is something that just struck me today which i struggle to understand
So the situation goes like this
I have a mixin and a view
class Mixin:
def get_session(self,request,*args,**kwargs):
print(self) #should be the instance passed
print(request) #should be the request object passed but it's also an instance
class View:
def get(self,request,*args,**kwargs):
self.get_session(self,request,*args,*kwargs)
pass
Why is the request argument the instance of the Class View, It should be request.Please help me clarify these concepts.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…