Serhiy Storchaka added the comment:

> $ ./python.exe -m timeit  -n 100 -s "s= set(range(2000)); l = 
> set(range(20000000))"   "s-=l"

s is empty set after first loop. Try this:

$ ./python.exe -m timeit  -n 100 -s "s= set(range(2000)); l = 
set(range(2000,2000+20000000))"   "s-=l"

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue8425>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to