Stupid typo.

This commit is contained in:
Jeremy Fincher 2003-04-09 18:18:14 +00:00
parent 595821f6fd
commit a79df8d841

View File

@ -229,7 +229,7 @@ class MaxLengthQueue(queue):
def __setstate__(self, (length, q)):
self.length = length
queue.__getstate__(self, q)
queue.__setstate__(self, q)
def enqueue(self, elt):
if len(self) > self.length: