On Apr 25, 4:38 pm, Gabriel Rossetti
<[EMAIL PROTECTED]> wrote:
> Hello,
>
> I'm having some trouble with the Queue class, for some reason, if I do
> this (ch ==  ) :
>
> q = Queue.Queue(0)
> repr(ch)
> q.put(ch, True)
> len(q.queue)

>>> from Queue import Queue
>>> q = Queue(0)
>>> s = '\x02'
>>> q.put(s,True)
>>> len(q.queue)
1



--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to