-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Closed
Description
I was using Astropy 0.3 with python 2.7 and doing something similar to the following:
for file in files:
t = Table.read(file)
This seems to have a memory leak as the memory used keeps increasing as each table is read in. The same code using atpy.Table instead of Table.read works fine with no continually increase of memory.