Commit 65699402 authored by Stefan Behnel's avatar Stefan Behnel

clarify comment in example

parent 2dd66db8
...@@ -44,7 +44,7 @@ cdef class Queue: ...@@ -44,7 +44,7 @@ cdef class Queue:
raise IndexError("Queue is empty") raise IndexError("Queue is empty")
return value return value
def __bool__(self): # or __nonzero__ for Python 2.x def __bool__(self): # same as __nonzero__ in Python 2.x
return not cqueue.queue_is_empty(self._c_queue) return not cqueue.queue_is_empty(self._c_queue)
DEF repeat_count=10000 DEF repeat_count=10000
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment