diff options
Diffstat (limited to 'tools/heapdot.py')
-rw-r--r-- | tools/heapdot.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/heapdot.py b/tools/heapdot.py index c580669a..f47fdae7 100644 --- a/tools/heapdot.py +++ b/tools/heapdot.py @@ -119,6 +119,10 @@ def output_dot_file(args, graph, targs, fname): elif label.startswith('WeakMap'): label = 'WeakMap' style = 'dashed' + # A Proxy + elif label.startswith('Proxy'): + shape = 'doublecircle' + color = 'goldenrod2' # Mostly uninteresting objects elif label in ['base_shape', 'object_group', 'type_object']: style = 'dotted' |