This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author zanella
Recipients zanella
Date 2008-02-20.21:20:39
SpamBayes Score 0.03303177
Marked as misclassified No
Message-id <1203542440.82.0.407837052155.issue2149@psf.upfronthosting.co.za>
In-reply-to
Content
Queue.Queue(), accepts any value as the maxsize, example:

foo = Queue.Queue('j');
l = []; foo = Queue.Queue(l);
...

Shouldn't the value passed be checked on init :
isinstance(maxsize, int) ?
History
Date User Action Args
2008-02-20 21:20:40zanellasetspambayes_score: 0.0330318 -> 0.03303177
recipients: + zanella
2008-02-20 21:20:40zanellasetspambayes_score: 0.0330318 -> 0.0330318
messageid: <1203542440.82.0.407837052155.issue2149@psf.upfronthosting.co.za>
2008-02-20 21:20:40zanellalinkissue2149 messages
2008-02-20 21:20:39zanellacreate