close Warning: Can't synchronize with repository "(default)" (/var/svn/tolp does not appear to be a Subversion repository.). Look in the Trac log for more information.

Changes between Initial Version and Version 1 of Ticket #1138


Ignore:
Timestamp:
Mar 24, 2011, 12:21:19 PM (14 years ago)
Author:
Víctor de Buen Remiro
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1138 – Description

    initial v1  
    1111});
    1212}}}
     13'''ouput:'''
     14{{{
     15lost objects = 12 in 4 iterations
     16lost objects by iteration= 3
     17}}}
    1318
     19However {{{Excel.ReadText}}} doesn't lost any object
     20{{{
     21#!cpp
     22Real CheckMemoryLeakInCycle (4, Real(Real void)
     23{
     24  Real xls = Excel.Open("../test_0001/data.xls");
     25  Real Excel.ActivateWS(xls,1);
     26  Text cell = Excel.ReadText(xls,[[1, 1]]);
     27  Real Excel.Close(xls);
     28  True
     29});
     30}}}
     31
     32'''ouput:'''
     33{{{
     34lost objects = 0 in 4 iterations
     35lost objects by iteration= 0
     36}}}