Python奇异类问题
我有以下一段代码,我尝试重写一个方法:
import Queue
class PriorityQueue(Queue.PriorityQueue):
def put(self, item):
super(PriorityQueue, self).put((item.priority, item))
但是,当我运行它时,我收到 TypeError
异常:
super() argument 1 must be type, not classobj
问题是什么?
I have the following piece of code where I try to override a method:
import Queue
class PriorityQueue(Queue.PriorityQueue):
def put(self, item):
super(PriorityQueue, self).put((item.priority, item))
However, when I run it I get TypeError
exception:
super() argument 1 must be type, not classobj
What is the problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Queue.PriorityQueue
不是一个新式类,并且super
仅适用于新式类。您必须使用它来代替。
Queue.PriorityQueue
is not a new-style class, andsuper
only works with new-style classes. You must useinstead.