[issue3952] _lsprof: clear() should call flush_unmatched()

2008-12-11 Thread STINNER Victor
STINNER Victor added the comment: I'm unable to reproduce my issue with Python trunk, so close it. -- status: open -> closed ___ Python tracker ___ __

[issue3952] _lsprof: clear() should call flush_unmatched()

2008-09-23 Thread STINNER Victor
New submission from STINNER Victor <[EMAIL PROTECTED]>: Example to reproduce the bug (using Python trunk): --- from gc import collect import _lsprof def callMethod(obj): obj.clear() collect() obj = _lsprof.Profiler() obj.enable() callMethod(obj) obj.enable() del obj collect() --- The