Queues vs List

2009-12-25 Thread Rodrick Brown
Was reading the official python document and I noticed they mentioned queues being more efficient for adding/removing elements vs list so I wrote a quick test the validate this claim and I wasn't very impressed by the results it seems queues are just slightly faster so my question to the list, is

Re: Queues vs List

2009-12-25 Thread Cameron Simpson
On 25Dec2009 17:21, Rodrick Brown rodrick.br...@gmail.com wrote: | Was reading the official python document and I noticed they mentioned queues | being more efficient for adding/removing elements vs list so I wrote a quick | test the validate this claim and I wasn't very impressed by the results

Re: Queues vs List

2009-12-25 Thread MRAB
Rodrick Brown wrote: Was reading the official python document and I noticed they mentioned queues being more efficient for adding/removing elements vs list so I wrote a quick test the validate this claim and I wasn't very impressed by the results it seems queues are just slightly faster so my