How does derived class arguments work in Python?

我的梦境 提交于 2020-04-17 19:03:15

问题


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.


回答1:


You're passing self explicitly as the first argument of get_session. That means it goes into the request parameter.

self.get_session(self,request,*args,*kwargs)
  ^               ^        ^^^^^^^^^^
(self)        (request)    (the rest)

I think you mean:

self.get_session(request, *args, **kwargs)


来源:https://stackoverflow.com/questions/60929560/how-does-derived-class-arguments-work-in-python

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!