#4639: [with patch, needs review] bad memory leak with exponentiation
------------------------------+---------------------------------------------
Reporter: bober | Owner: somebody
Type: defect | Status: new
Priority: blocker | Milestone: sage-3.2.2
Component: basic arithmetic | Resolution:
Keywords: |
------------------------------+---------------------------------------------
Comment (by mabshoff):
This does indeed fix the issue for me:
{{{
----------------------------------------------------------------------
| Sage Version 3.2.2.rc0, Release Date: 2008-12-15 |
| Type notebook() for the GUI, and license() for information. |
----------------------------------------------------------------------
sage: get_memory_usage()
416.21484375
sage: for z in xrange(10000):
....: a = 3.0^CC.0
....:
sage: get_memory_usage()
416.21484375
sage: for z in xrange(10000):
a = 3.0^CC.0
....:
sage: get_memory_usage()
416.21484375
}}}
Doctesting now ...
Cheers,
Michael
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/4639#comment:30>
Sage <http://sagemath.org/>
Sage - Open Source Mathematical Software: Building the Car Instead of
Reinventing the Wheel
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"sage-trac" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/sage-trac?hl=en
-~----------~----~----~----~------~----~------~--~---