On 04/07/13 08:11, Andre' Walker-Loud wrote:

Yes, I was being sloppy.  My later post clarified what I meant.
The loops are really lists, and I was really using enumerate()
to get both the iter and the element.

loop_2 = [1,2,4,8,16,32,64,128,256,512,1024]
for i,n in enumerate(loop_2):
    ...


Please be careful about portraying yourself as less experienced/more naive than 
you really are. Otherwise we end up wasting both our time and yours telling you 
to do things that you're already doing.

Have you googled for "Python memory leak os-x"? When I do, I find a link to 
this numpy bug:

https://github.com/numpy/numpy/issues/2969


--
Steven
_______________________________________________
Tutor maillist  -  [email protected]
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to