What does it mean by the 'super object returned is unbound' in python?

前端 未结 4 1317
轻奢々
轻奢々 2021-02-05 21:34

According to http://docs.python.org/2/library/functions.html#super,

If the second argument is omitted, the super object returned is unbound.

4条回答
  •  渐次进展
    2021-02-05 21:46

    "Unbound" means it will return the class, rather than an instance of the class.

提交回复
热议问题