We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcd4b2b commit 7dc25c9Copy full SHA for 7dc25c9
1 file changed
cothread/cothread.py
@@ -833,8 +833,8 @@ class EventQueue(EventBase):
833
'__max_length', # Maximum length of queue
834
]
835
836
- def __init__(self):
837
- EventBase.__init__(self, max_length = None)
+ def __init__(self, max_length = None):
+ EventBase.__init__(self)
838
self.__queue = []
839
self.__closed = False
840
self.__max_length = max_length
0 commit comments