We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dll = CirculateDoubleLinkedList() 此时maxsize = None 使用append方法 和appendleft 还是可以添加
append方法里面没有抛出异常 if self.maxsize is not None and len(self) > self.maxsize: raise Exception("full")
改成下面代码就可以限制 if self.maxsize is None or len(self) >= self.maxsize: raise Exception("full")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
dll = CirculateDoubleLinkedList()
此时maxsize = None 使用append方法 和appendleft 还是可以添加
append方法里面没有抛出异常
if self.maxsize is not None and len(self) > self.maxsize:
raise Exception("full")
改成下面代码就可以限制
if self.maxsize is None or len(self) >= self.maxsize:
raise Exception("full")
The text was updated successfully, but these errors were encountered: