summaryrefslogtreecommitdiffstats
path: root/venv/lib/python3.9/site-packages/pympler/templates/garbage.tpl
blob: 2aabca6cf359a37b4b56bc18e9d4de69ba9b6237 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
%include('header', category='Garbage', title='Garbage')

<h1>Garbage - Cycle {{index}}</h1>
<table class="tdata" width="100%">
    <thead>
        <tr>
            <th>id</th>
            <th class="num">size</th>
            <th>type</th>
            <th>representation</th>
        </tr>
    </thead>
    <tbody>
    %for o in objects:
        <tr>
            <td>{{'0x%08x' % o.id}}</td>
            <td class="num">{{o.size}}</td>
            <td>{{o.type}}</td>
            <td>{{o.str}}</td>
        </tr>
    %end
    </tbody>
</table>

<h2>Reference graph</h2>

<img src="/garbage/graph/{{index}}"/>

<h2>Reduced reference graph (cycles only)</h2>

<img src="/garbage/graph/{{index}}?reduce=1"/>

%include('footer')