-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathobjects.dot
More file actions
1561 lines (1561 loc) · 77.4 KB
/
Copy pathobjects.dot
File metadata and controls
1561 lines (1561 loc) · 77.4 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
digraph ObjectGraph {
node[shape=box, style=filled, fillcolor=white];
o139883106968592[fontcolor=red];
o139883106968592[label="Arguments:\n<Arguments() l.0 [__builtin__] at 0x7f39"];
o139883106968592[fillcolor="0,0,1"];
o139883183926360 -> o139883106968592 [label="args",weight=2];
o139883183926360[label="dict:\n9 items"];
o139883183926360[fillcolor="0,0,0.953333"];
o139883106968848 -> o139883183926360 [label="__dict__",weight=10];
o139883106968848[label="Function:\n<Function(__format__) l.None [__builtin_"];
o139883106968848[fillcolor="0,0,0.906667"];
o139883122989176 -> o139883106968848;
o139883183926080 -> o139883106968848 [label="parent",weight=2];
o139883107953912 -> o139883106968848;
o139883122989176[label="list:\n39 items"];
o139883122989176[fillcolor="0,0,0.86"];
o139883184048960 -> o139883122989176 [label="body",weight=2];
o139883183926080[label="dict:\n6 items"];
o139883183926080[fillcolor="0,0,0.86"];
o139883106968592 -> o139883183926080 [label="__dict__",weight=10];
o139883107953912[label="list:\n1 items"];
o139883107953912[fillcolor="0,0,0.86"];
o139883184049520 -> o139883107953912 [label="__format__",weight=2];
o139883184048960[label="dict:\n9 items"];
o139883184048960[fillcolor="0,0,0.813333"];
o139883106969040 -> o139883184048960 [label="__dict__",weight=10];
o139883184049520[label="dict:\n40 items"];
o139883184049520[fillcolor="0,0,0.813333"];
o139883184048960 -> o139883184049520 [label="locals",weight=2];
o139883106969040[label="Class:\n<Class(frozenset) l.0 [__builtin__] at 0"];
o139883106969040[fillcolor="0,0,0.766667"];
o139883122043864 -> o139883106969040;
o139883122290312 -> o139883106969040 [label="frozenset"];
o139883184049800 -> o139883106969040 [label="parent",weight=2];
o139883122989824 -> o139883106969040;
o139883184047840 -> o139883106969040 [label="parent",weight=2];
o139883184046720 -> o139883106969040 [label="parent",weight=2];
o139883184046440 -> o139883106969040 [label="parent",weight=2];
o139883183924120 -> o139883106969040 [label="parent",weight=2];
o139883183925240 -> o139883106969040 [label="parent",weight=2];
o139883183926360 -> o139883106969040 [label="parent",weight=2];
o139883106969040[color=red];
o139883122043864[label="list:\n143 items"];
o139883122043864[fillcolor="0,0,0.72"];
o139883110548656 -> o139883122043864 [label="body",weight=2];
o139883122290312[label="dict:\n28 items"];
o139883122290312[fillcolor="0,0,0.72"];
o139883189856528 -> o139883122290312 [label="_done",weight=2];
o139883184049800[label="dict:\n3 items"];
o139883184049800[fillcolor="0,0,0.72"];
o139883106968016 -> o139883184049800 [label="__dict__",weight=10];
o139883122989824[label="list:\n1 items"];
o139883122989824[fillcolor="0,0,0.72"];
o139883122329032 -> o139883122989824 [label="frozenset",weight=2];
o139883184047840[label="dict:\n9 items"];
o139883184047840[fillcolor="0,0,0.72"];
o139883106968144 -> o139883184047840 [label="__dict__",weight=10];
o139883184046720[label="dict:\n9 items"];
o139883184046720[fillcolor="0,0,0.72"];
o139883106969232 -> o139883184046720 [label="__dict__",weight=10];
o139883184046440[label="dict:\n9 items"];
o139883184046440[fillcolor="0,0,0.72"];
o139883106967824 -> o139883184046440 [label="__dict__",weight=10];
o139883183924120[label="dict:\n9 items"];
o139883183924120[fillcolor="0,0,0.72"];
o139883106969360 -> o139883183924120 [label="__dict__",weight=10];
o139883183925240[label="dict:\n9 items"];
o139883183925240[fillcolor="0,0,0.72"];
o139883106968720 -> o139883183925240 [label="__dict__",weight=10];
o139883110548656[label="dict:\n11 items"];
o139883110548656[fillcolor="0,0,0.673333"];
o139883106793168 -> o139883110548656 [label="__dict__",weight=10];
o139883189856528[label="dict:\n2 items"];
o139883189856528[fillcolor="0,0,0.673333"];
o139883189876560 -> o139883189856528 [label="__dict__",weight=10];
o139883106968016[label="Name:\n<Name(object) l.0 [__builtin__] at 0x7f3"];
o139883106968016[fillcolor="0,0,0.673333"];
o139883183822536 -> o139883106968016;
o139883122329032[label="dict:\n143 items"];
o139883122329032[fillcolor="0,0,0.673333"];
o139883110548656 -> o139883122329032 [label="globals",weight=2];
o139883106968144[label="Function:\n<Function(__and__) l.None [__builtin__] "];
o139883106968144[fillcolor="0,0,0.673333"];
o139883122989176 -> o139883106968144;
o139883184048680 -> o139883106968144 [label="parent",weight=2];
o139883122988096 -> o139883106968144;
o139883106969232[label="Function:\n<Function(__cmp__) l.None [__builtin__] "];
o139883106969232[fillcolor="0,0,0.673333"];
o139883122989176 -> o139883106969232;
o139883184047560 -> o139883106969232 [label="parent",weight=2];
o139883122990544 -> o139883106969232;
o139883106967824[label="Function:\n<Function(__contains__) l.None [__builti"];
o139883106967824[fillcolor="0,0,0.673333"];
o139883122989176 -> o139883106967824;
o139883183923280 -> o139883106967824 [label="parent",weight=2];
o139883107951248 -> o139883106967824;
o139883106969360[label="Function:\n<Function(__delattr__) l.None [__builtin"];
o139883106969360[fillcolor="0,0,0.673333"];
o139883122989176 -> o139883106969360;
o139883183924680 -> o139883106969360 [label="parent",weight=2];
o139883107952328 -> o139883106969360;
o139883106968720[label="Function:\n<Function(__eq__) l.None [__builtin__] a"];
o139883106968720[fillcolor="0,0,0.673333"];
o139883122989176 -> o139883106968720;
o139883183925800 -> o139883106968720 [label="parent",weight=2];
o139883107953192 -> o139883106968720;
o139883106793168[label="Module:\n<Module(__builtin__) l.0 [__builtin__] a"];
o139883106793168[fillcolor="0,0,0.626667"];
o139883189790712 -> o139883106793168 [label="__builtin__",weight=2];
o139883122290312 -> o139883106793168 [label="__builtin__"];
o139883183829912 -> o139883106793168 [label="parent",weight=2];
o139883122657272 -> o139883106793168 [label="parent",weight=2];
o139883086981952 -> o139883106793168 [label="parent",weight=2];
o139883122611376 -> o139883106793168 [label="parent",weight=2];
o139883122016336 -> o139883106793168 [label="parent",weight=2];
o139883121781568 -> o139883106793168 [label="parent",weight=2];
o139883121970824 -> o139883106793168 [label="parent",weight=2];
o139883185088504 -> o139883106793168 [label="parent",weight=2];
o139883106793168[color=red];
o139883189876560[label="InspectBuilder:\n<astroid.raw_building.InspectBuilder obj"];
o139883189876560[fillcolor="0,0,0.626667"];
o139883189854568 -> o139883189876560 [label="Astroid_BUILDER",weight=2];
o139883183822536[label="list:\n1 items"];
o139883183822536[fillcolor="0,0,0.626667"];
o139883184048960 -> o139883183822536 [label="bases",weight=2];
o139883184048680[label="dict:\n6 items"];
o139883184048680[fillcolor="0,0,0.626667"];
o139883106967632 -> o139883184048680 [label="__dict__",weight=10];
o139883122988096[label="list:\n1 items"];
o139883122988096[fillcolor="0,0,0.626667"];
o139883184049520 -> o139883122988096 [label="__and__",weight=2];
o139883184047560[label="dict:\n6 items"];
o139883184047560[fillcolor="0,0,0.626667"];
o139883106968336 -> o139883184047560 [label="__dict__",weight=10];
o139883122990544[label="list:\n1 items"];
o139883122990544[fillcolor="0,0,0.626667"];
o139883184049520 -> o139883122990544 [label="__cmp__",weight=2];
o139883183923280[label="dict:\n6 items"];
o139883183923280[fillcolor="0,0,0.626667"];
o139883106968464 -> o139883183923280 [label="__dict__",weight=10];
o139883107951248[label="list:\n1 items"];
o139883107951248[fillcolor="0,0,0.626667"];
o139883184049520 -> o139883107951248 [label="__contains__",weight=2];
o139883183924680[label="dict:\n6 items"];
o139883183924680[fillcolor="0,0,0.626667"];
o139883106969168 -> o139883183924680 [label="__dict__",weight=10];
o139883107952328[label="list:\n1 items"];
o139883107952328[fillcolor="0,0,0.626667"];
o139883184049520 -> o139883107952328 [label="__delattr__",weight=2];
o139883183925800[label="dict:\n6 items"];
o139883183925800[fillcolor="0,0,0.626667"];
o139883106968784 -> o139883183925800 [label="__dict__",weight=10];
o139883107953192[label="list:\n1 items"];
o139883107953192[fillcolor="0,0,0.626667"];
o139883184049520 -> o139883107953192 [label="__eq__",weight=2];
o139883189790712[label="dict:\n1 items"];
o139883189790712[fillcolor="0,0,0.58"];
o139883189789872 -> o139883189790712 [label="astroid_cache",weight=2];
o139883183829912[label="dict:\n6 items"];
o139883183829912[fillcolor="0,0,0.58"];
o139883106795344 -> o139883183829912 [label="__dict__",weight=10];
o139883122657272[label="dict:\n6 items"];
o139883122657272[fillcolor="0,0,0.58"];
o139883106792208 -> o139883122657272 [label="__dict__",weight=10];
o139883086981952[label="dict:\n6 items"];
o139883086981952[fillcolor="0,0,0.58"];
o139883106794768 -> o139883086981952 [label="__dict__",weight=10];
o139883122611376[label="dict:\n6 items"];
o139883122611376[fillcolor="0,0,0.58"];
o139883106795280 -> o139883122611376 [label="__dict__",weight=10];
o139883122016336[label="dict:\n6 items"];
o139883122016336[fillcolor="0,0,0.58"];
o139883106792912 -> o139883122016336 [label="__dict__",weight=10];
o139883121781568[label="dict:\n6 items"];
o139883121781568[fillcolor="0,0,0.58"];
o139883106795408 -> o139883121781568 [label="__dict__",weight=10];
o139883121970824[label="dict:\n6 items"];
o139883121970824[fillcolor="0,0,0.58"];
o139883106792272 -> o139883121970824 [label="__dict__",weight=10];
o139883185088504[label="dict:\n6 items"];
o139883185088504[fillcolor="0,0,0.58"];
o139883106794960 -> o139883185088504 [label="__dict__",weight=10];
o139883189854568[label="dict:\n62 items"];
o139883189854568[fillcolor="0,0,0.58"];
o139883187200080 -> o139883189854568 [label="__dict__",weight=10];
o139883189868376 -> o139883189854568;
o139883189868496 -> o139883189854568;
o139883189868616 -> o139883189854568;
o139883189868736 -> o139883189854568;
o139883189868856 -> o139883189854568;
o139883189868976 -> o139883189854568;
o139883189869096 -> o139883189854568;
o139883189869216 -> o139883189854568;
o139883189869336 -> o139883189854568;
o139883189854568[color=red];
o139883106967632[label="Arguments:\n<Arguments() l.0 [__builtin__] at 0x7f39"];
o139883106967632[fillcolor="0,0,0.58"];
o139883184047840 -> o139883106967632 [label="args",weight=2];
o139883106968336[label="Arguments:\n<Arguments() l.0 [__builtin__] at 0x7f39"];
o139883106968336[fillcolor="0,0,0.58"];
o139883184046720 -> o139883106968336 [label="args",weight=2];
o139883106968464[label="Arguments:\n<Arguments() l.0 [__builtin__] at 0x7f39"];
o139883106968464[fillcolor="0,0,0.58"];
o139883184046440 -> o139883106968464 [label="args",weight=2];
o139883106969168[label="Arguments:\n<Arguments() l.0 [__builtin__] at 0x7f39"];
o139883106969168[fillcolor="0,0,0.58"];
o139883183924120 -> o139883106969168 [label="args",weight=2];
o139883106968784[label="Arguments:\n<Arguments() l.0 [__builtin__] at 0x7f39"];
o139883106968784[fillcolor="0,0,0.58"];
o139883183925240 -> o139883106968784 [label="args",weight=2];
o139883189789872[label="dict:\n8 items"];
o139883189789872[fillcolor="0,0,0.533333"];
o139883189790152 -> o139883189789872 [label="brain",weight=2];
o139883189781904 -> o139883189789872 [label="__dict__",weight=10];
o139883189844880 -> o139883189789872 [label="__dict__",weight=10];
o139883189876112 -> o139883189789872 [label="__dict__",weight=10];
o139883185385744 -> o139883189789872 [label="__dict__",weight=10];
o139883185509776 -> o139883189789872 [label="__dict__",weight=10];
o139883106795344[label="From:\n<From(ArithmeticError) l.0 [__builtin__]"];
o139883106795344[fillcolor="0,0,0.533333"];
o139883122043864 -> o139883106795344;
o139883106803936 -> o139883106795344;
o139883106792208[label="From:\n<From(AssertionError) l.0 [__builtin__] "];
o139883106792208[fillcolor="0,0,0.533333"];
o139883122043864 -> o139883106792208;
o139883086863536 -> o139883106792208;
o139883106794768[label="From:\n<From(AttributeError) l.0 [__builtin__] "];
o139883106794768[fillcolor="0,0,0.533333"];
o139883122043864 -> o139883106794768;
o139883107972808 -> o139883106794768;
o139883106795280[label="From:\n<From(BaseException) l.0 [__builtin__] a"];
o139883106795280[fillcolor="0,0,0.533333"];
o139883122043864 -> o139883106795280;
o139883106806744 -> o139883106795280;
o139883106792912[label="From:\n<From(BufferError) l.0 [__builtin__] at "];
o139883106792912[fillcolor="0,0,0.533333"];
o139883122043864 -> o139883106792912;
o139883183200880 -> o139883106792912;
o139883106795408[label="From:\n<From(BytesWarning) l.0 [__builtin__] at"];
o139883106795408[fillcolor="0,0,0.533333"];
o139883122043864 -> o139883106795408;
o139883120169400 -> o139883106795408;
o139883106792272[label="From:\n<From(DeprecationWarning) l.0 [__builtin"];
o139883106792272[fillcolor="0,0,0.533333"];
o139883122043864 -> o139883106792272;
o139883122682768 -> o139883106792272;
o139883106794960[label="From:\n<From(EOFError) l.0 [__builtin__] at 0x7"];
o139883106794960[fillcolor="0,0,0.533333"];
o139883122043864 -> o139883106794960;
o139883122232712 -> o139883106794960;
o139883187200080[label="module:\nastroid.raw_building"];
o139883187200080[fillcolor="0.3,1,0.533333"];
o139883189868376[label="function:\n<function _io_discrepancy at 0x7f3917d79"];
o139883189868376[fillcolor="0,0,0.533333"];
o139883189854568 -> o139883189868376 [label="_io_discrepancy",weight=2];
o139883189868496[label="function:\n<function _attach_local_node at 0x7f3917"];
o139883189868496[fillcolor="0,0,0.533333"];
o139883189854568 -> o139883189868496 [label="_attach_local_node",weight=2];
o139883189868616[label="function:\n<function attach_dummy_node at 0x7f3917d"];
o139883189868616[fillcolor="0,0,0.533333"];
o139883189854568 -> o139883189868616 [label="attach_dummy_node",weight=2];
o139883189868736[label="function:\n<function _has_underlying_object at 0x7f"];
o139883189868736[fillcolor="0,0,0.533333"];
o139883189950736 -> o139883189868736 [label="has_underlying_object",weight=2];
o139883189854568 -> o139883189868736 [label="_has_underlying_object",weight=2];
o139883189868856[label="function:\n<function attach_const_node at 0x7f3917d"];
o139883189868856[fillcolor="0,0,0.533333"];
o139883189854568 -> o139883189868856 [label="attach_const_node",weight=2];
o139883189868976[label="function:\n<function attach_import_node at 0x7f3917"];
o139883189868976[fillcolor="0,0,0.533333"];
o139883189854568 -> o139883189868976 [label="attach_import_node",weight=2];
o139883189869096[label="function:\n<function build_module at 0x7f3917d79a28"];
o139883189869096[fillcolor="0,0,0.533333"];
o139883189854568 -> o139883189869096 [label="build_module",weight=2];
o139883189869216[label="function:\n<function build_class at 0x7f3917d79aa0>"];
o139883189869216[fillcolor="0,0,0.533333"];
o139883189854568 -> o139883189869216 [label="build_class",weight=2];
o139883189869336[label="function:\n<function build_function at 0x7f3917d79b"];
o139883189869336[fillcolor="0,0,0.533333"];
o139883189854568 -> o139883189869336 [label="build_function",weight=2];
o139883189790152[label="dict:\n22 items"];
o139883189790152[fillcolor="0,0,0.486667"];
o139883189790152[fontcolor=white];
o34076720 -> o139883189790152;
o139883189781904[label="AstroidManager:\n<astroid.manager.AstroidManager object a"];
o139883189781904[fillcolor="0,0,0.486667"];
o139883189781904[fontcolor=white];
o139883189989000 -> o139883189781904 [label="MANAGER",weight=2];
o139883189844880[label="AstroidManager:\n<astroid.manager.AstroidManager object a"];
o139883189844880[fillcolor="0,0,0.486667"];
o139883189844880[fontcolor=white];
o139883189791272 -> o139883189844880 [label="MANAGER",weight=2];
o139883189876112[label="AstroidManager:\n<astroid.manager.AstroidManager object a"];
o139883189876112[fillcolor="0,0,0.486667"];
o139883189876112[fontcolor=white];
o139883189854568 -> o139883189876112 [label="MANAGER",weight=2];
o139883185385744[label="AstroidManager:\n<astroid.manager.AstroidManager object a"];
o139883185385744[fillcolor="0,0,0.486667"];
o139883185385744[fontcolor=white];
o139883193805912 -> o139883185385744 [label="MANAGER",weight=2];
o139883185417584 -> o139883185385744 [label="MANAGER",weight=2];
o139883185533288 -> o139883185385744 [label="MANAGER",weight=2];
o139883185446536 -> o139883185385744 [label="MANAGER",weight=2];
o139883185102928 -> o139883185385744 [label="MANAGER",weight=2];
o139883185104048 -> o139883185385744 [label="MANAGER",weight=2];
o139883185105168 -> o139883185385744 [label="MANAGER",weight=2];
o139883185103208 -> o139883185385744 [label="MANAGER",weight=2];
o139883185105728 -> o139883185385744 [label="_manager",weight=2];
o139883185535248 -> o139883185385744 [label="MANAGER",weight=2];
o139883185385744[color=red];
o139883185509776[label="AstroidManager:\n<astroid.manager.AstroidManager object a"];
o139883185509776[fillcolor="0,0,0.486667"];
o139883185509776[fontcolor=white];
o139883185442896 -> o139883185509776 [label="MANAGER",weight=2];
o139883733481184 -> o139883185509776 [label="_manager",weight=2];
o139883106803936[label="list:\n1 items"];
o139883106803936[fillcolor="0,0,0.486667"];
o139883106803936[fontcolor=white];
o139883122329032 -> o139883106803936 [label="ArithmeticError",weight=2];
o139883086863536[label="list:\n1 items"];
o139883086863536[fillcolor="0,0,0.486667"];
o139883086863536[fontcolor=white];
o139883122329032 -> o139883086863536 [label="AssertionError",weight=2];
o139883107972808[label="list:\n1 items"];
o139883107972808[fillcolor="0,0,0.486667"];
o139883107972808[fontcolor=white];
o139883122329032 -> o139883107972808 [label="AttributeError",weight=2];
o139883106806744[label="list:\n1 items"];
o139883106806744[fillcolor="0,0,0.486667"];
o139883106806744[fontcolor=white];
o139883122329032 -> o139883106806744 [label="BaseException",weight=2];
o139883183200880[label="list:\n1 items"];
o139883183200880[fillcolor="0,0,0.486667"];
o139883183200880[fontcolor=white];
o139883122329032 -> o139883183200880 [label="BufferError",weight=2];
o139883120169400[label="list:\n1 items"];
o139883120169400[fillcolor="0,0,0.486667"];
o139883120169400[fontcolor=white];
o139883122329032 -> o139883120169400 [label="BytesWarning",weight=2];
o139883122682768[label="list:\n1 items"];
o139883122682768[fillcolor="0,0,0.486667"];
o139883122682768[fontcolor=white];
o139883122329032 -> o139883122682768 [label="DeprecationWarning",weight=2];
o139883122232712[label="list:\n1 items"];
o139883122232712[fillcolor="0,0,0.486667"];
o139883122232712[fontcolor=white];
o139883122329032 -> o139883122232712 [label="EOFError",weight=2];
o139883189950736[label="dict:\n4 items"];
o139883189950736[fillcolor="0,0,0.486667"];
o139883189950736[fontcolor=white];
o34017328 -> o139883189950736;
o34076720[label="type:\nAstroidManager"];
o34076720[fillcolor="0,0,0.44"];
o34076720[fontcolor=white];
o139883189989000 -> o34076720 [label="AstroidManager",weight=2];
o139883190063184 -> o34076720 [label="AstroidManager",weight=2];
o139883190301952 -> o34076720;
o139883189781904 -> o34076720;
o139883189791272 -> o34076720 [label="AstroidManager",weight=2];
o139883189844880 -> o34076720;
o139883189854568 -> o34076720 [label="AstroidManager",weight=2];
o139883189876112 -> o34076720;
o139883185385744 -> o34076720;
o139883185442896 -> o34076720 [label="AstroidManager",weight=2];
o34076720[color=red];
o139883189989000[label="dict:\n76 items"];
o139883189989000[fillcolor="0,0,0.44"];
o139883189989000[fontcolor=white];
o139883190018744 -> o139883189989000 [label="__dict__",weight=10];
o139883190052696 -> o139883189989000;
o139883190051856 -> o139883189989000;
o139883190052576 -> o139883189989000;
o139883189793808 -> o139883189989000;
o139883189796568 -> o139883189989000;
o139883189796688 -> o139883189989000;
o139883189801040 -> o139883189989000;
o139883189805856 -> o139883189989000;
o139883189805976 -> o139883189989000;
o139883189989000[color=red];
o139883189791272[label="dict:\n44 items"];
o139883189791272[fillcolor="0,0,0.44"];
o139883189791272[fontcolor=white];
o139883189830664 -> o139883189791272 [label="__dict__",weight=10];
o139883189850312 -> o139883189791272;
o139883189864040 -> o139883189791272;
o139883189864160 -> o139883189791272;
o139883189864400 -> o139883189791272;
o139883189864760 -> o139883189791272;
o139883189865000 -> o139883189791272;
o139883189865120 -> o139883189791272;
o139883189865360 -> o139883189791272;
o139883189865840 -> o139883189791272;
o139883189791272[color=red];
o139883193805912[label="dict:\n121 items"];
o139883193805912[fillcolor="0,0,0.44"];
o139883193805912[fontcolor=white];
o139883193637416 -> o139883193805912 [label="__dict__",weight=10];
o139883187205616 -> o139883193805912;
o139883187205976 -> o139883193805912;
o139883187205856 -> o139883193805912;
o139883187205736 -> o139883193805912;
o139883185520960 -> o139883193805912;
o139883185438920 -> o139883193805912;
o139883185531312 -> o139883193805912;
o139883185531192 -> o139883193805912;
o139883185561424 -> o139883193805912;
o139883193805912[color=red];
o139883185417584[label="dict:\n13 items"];
o139883185417584[fillcolor="0,0,0.44"];
o139883185417584[fontcolor=white];
o139883186030584 -> o139883185417584 [label="__dict__",weight=10];
o139883187206336 -> o139883185417584;
o139883185439040 -> o139883185417584;
o139883185533288[label="dict:\n32 items"];
o139883185533288[fillcolor="0,0,0.44"];
o139883185533288[fontcolor=white];
o139883185517856 -> o139883185533288 [label="__dict__",weight=10];
o139883185532512 -> o139883185533288;
o139883185558664 -> o139883185533288;
o139883185558544 -> o139883185533288;
o139883185558904 -> o139883185533288;
o139883185560704 -> o139883185533288;
o139883185560824 -> o139883185533288;
o139883185560944 -> o139883185533288;
o139883185561064 -> o139883185533288;
o139883185561184 -> o139883185533288;
o139883185533288[color=red];
o139883185446536[label="dict:\n23 items"];
o139883185446536[fillcolor="0,0,0.44"];
o139883185446536[fontcolor=white];
o139883185518192 -> o139883185446536 [label="__dict__",weight=10];
o139883185559264 -> o139883185446536;
o139883185559024 -> o139883185446536;
o139883185559144 -> o139883185446536;
o139883185559384 -> o139883185446536;
o139883185559864 -> o139883185446536;
o139883185560104 -> o139883185446536;
o139883185559744 -> o139883185446536;
o139883185560584 -> o139883185446536;
o139883185560224 -> o139883185446536;
o139883185446536[color=red];
o139883185102928[label="dict:\n32 items"];
o139883185102928[fillcolor="0,0,0.44"];
o139883185102928[fontcolor=white];
o139883185519872 -> o139883185102928 [label="__dict__",weight=10];
o139883185604800 -> o139883185102928;
o139883185604920 -> o139883185102928;
o139883185605040 -> o139883185102928;
o139883185605160 -> o139883185102928;
o139883185605280 -> o139883185102928;
o139883185605400 -> o139883185102928;
o139883185605520 -> o139883185102928;
o139883185605640 -> o139883185102928;
o139883185605760 -> o139883185102928;
o139883185102928[color=red];
o139883185104048[label="dict:\n9 items"];
o139883185104048[fillcolor="0,0,0.44"];
o139883185104048[fontcolor=white];
o139883185262784 -> o139883185104048 [label="__dict__",weight=10];
o139883185612032 -> o139883185104048;
o139883185105168[label="dict:\n9 items"];
o139883185105168[fillcolor="0,0,0.44"];
o139883185105168[fontcolor=white];
o139883185263120 -> o139883185105168 [label="__dict__",weight=10];
o139883185612392 -> o139883185105168;
o139883185103208[label="dict:\n10 items"];
o139883185103208[fillcolor="0,0,0.44"];
o139883185103208[fontcolor=white];
o139883185263400 -> o139883185103208 [label="__dict__",weight=10];
o139883185612752 -> o139883185103208;
o139883185105728[label="dict:\n3 items"];
o139883185105728[fillcolor="0,0,0.44"];
o139883185105728[fontcolor=white];
o139883185099024 -> o139883185105728 [label="__dict__",weight=10];
o139883185535248[label="dict:\n17 items"];
o139883185535248[fillcolor="0,0,0.44"];
o139883185535248[fontcolor=white];
o139883185264688 -> o139883185535248 [label="__dict__",weight=10];
o139883185614072 -> o139883185535248;
o139883185614192 -> o139883185535248;
o139883185442896[label="dict:\n29 items"];
o139883185442896[fillcolor="0,0,0.44"];
o139883185442896[fontcolor=white];
o139883186031368 -> o139883185442896 [label="__dict__",weight=10];
o139883185503720 -> o139883185442896;
o139883185502040 -> o139883185442896;
o139883185503600 -> o139883185442896;
o139883185530472 -> o139883185442896;
o139883185531072 -> o139883185442896;
o139883185530952 -> o139883185442896;
o139883185530712 -> o139883185442896;
o139883185530352 -> o139883185442896;
o139883185530232 -> o139883185442896;
o139883185442896[color=red];
o139883733481184[label="dict:\n3 items"];
o139883733481184[fillcolor="0,0,0.44"];
o139883733481184[fontcolor=white];
o139883122458192 -> o139883733481184 [label="__dict__",weight=10];
o34017328[label="type:\nEmptyNode"];
o34017328[fillcolor="0,0,0.44"];
o34017328[fontcolor=white];
o139883193805912 -> o34017328 [label="EmptyNode",weight=2];
o139883193806192 -> o34017328 [label="EmptyNode",weight=2];
o139883193795760 -> o34017328 [label="EmptyNode",weight=2];
o139883190310144 -> o34017328;
o31402752 -> o34017328;
o139883189854568 -> o34017328 [label="EmptyNode",weight=2];
o139883187287312 -> o34017328;
o139883187235664 -> o34017328;
o139883185966160 -> o34017328;
o139883186214352 -> o34017328;
o34017328[color=red];
o139883190063184[label="dict:\n24 items"];
o139883190063184[fillcolor="0,0,0.393333"];
o139883190063184[fontcolor=white];
o139883190021096 -> o139883190063184 [label="__dict__",weight=10];
o139883189778504 -> o139883190063184;
o139883190053536 -> o139883190063184;
o139883189793688 -> o139883190063184;
o139883189794768 -> o139883190063184;
o139883189794888 -> o139883190063184;
o139883189794048 -> o139883190063184;
o139883189795368 -> o139883190063184;
o139883189794528 -> o139883190063184;
o139883189793928 -> o139883190063184;
o139883190063184[color=red];
o139883190301952[label="tuple:\n3 items"];
o139883190301952[fillcolor="0,0,0.393333"];
o139883190301952[fontcolor=white];
o34076720 -> o139883190301952;
o139883190018744[label="module:\nastroid.scoped_nodes"];
o139883190018744[fillcolor="0.3,1,0.393333"];
o139883190018744[fontcolor=white];
o139883190052696[label="function:\n<function _c3_merge at 0x7f3917da6758>"];
o139883190052696[fillcolor="0,0,0.393333"];
o139883190052696[fontcolor=white];
o139883189989000 -> o139883190052696 [label="_c3_merge",weight=2];
o139883190051856[label="function:\n<function _verify_duplicates_mro at 0x7f"];
o139883190051856[fillcolor="0,0,0.393333"];
o139883190051856[fontcolor=white];
o139883189989000 -> o139883190051856 [label="_verify_duplicates_mro",weight=2];
o139883190052576[label="function:\n<function remove_nodes at 0x7f3917da66e0"];
o139883190052576[fillcolor="0,0,0.393333"];
o139883190052576[fontcolor=white];
o139883189989000 -> o139883190052576 [label="remove_nodes",weight=2];
o139883189793808[label="function:\n<function function_to_method at 0x7f3917"];
o139883189793808[fillcolor="0,0,0.393333"];
o139883189793808[fontcolor=white];
o139883189989000 -> o139883189793808 [label="function_to_method",weight=2];
o139883189796568[label="function:\n<function std_special_attributes at 0x7f"];
o139883189796568[fillcolor="0,0,0.393333"];
o139883189796568[fontcolor=white];
o139883189989000 -> o139883189796568 [label="std_special_attributes",weight=2];
o139883189796688[label="function:\n<function builtin_lookup at 0x7f3917d67f"];
o139883189796688[fillcolor="0,0,0.393333"];
o139883189796688[fontcolor=white];
o139883193805912 -> o139883189796688 [label="builtin_lookup",weight=2];
o139883189989000 -> o139883189796688 [label="builtin_lookup",weight=2];
o139883189801040[label="function:\n<function _infer_decorator_callchain at "];
o139883189801040[fillcolor="0,0,0.393333"];
o139883189801040[fontcolor=white];
o139883189989000 -> o139883189801040 [label="_infer_decorator_callchain",weight=2];
o139883189805856[label="function:\n<function _function_type at 0x7f3917d6a3"];
o139883189805856[fillcolor="0,0,0.393333"];
o139883189805856[fontcolor=white];
o139883189989000 -> o139883189805856 [label="_function_type",weight=2];
o139883189763048 -> o139883189805856;
o139883189805976[label="function:\n<function _rec_get_names at 0x7f3917d6a3"];
o139883189805976[fillcolor="0,0,0.393333"];
o139883189805976[fontcolor=white];
o139883189989000 -> o139883189805976 [label="_rec_get_names",weight=2];
o139883189830664[label="module:\nastroid.inference"];
o139883189830664[fillcolor="0.3,1,0.393333"];
o139883189830664[fontcolor=white];
o139883189850312[label="function:\n<function infer_end at 0x7f3917d750c8>"];
o139883189850312[fillcolor="0,0,0.393333"];
o139883189850312[fontcolor=white];
o139883189948496 -> o139883189850312 [label="_infer",weight=2];
o139883189949896 -> o139883189850312 [label="_infer",weight=2];
o139883189970936 -> o139883189850312 [label="_infer",weight=2];
o139883189972616 -> o139883189850312 [label="_infer",weight=2];
o139883189986760 -> o139883189850312 [label="_infer",weight=2];
o139883189791832 -> o139883189850312 [label="_infer",weight=2];
o139883189810352 -> o139883189850312 [label="_infer",weight=2];
o139883189810912 -> o139883189850312 [label="_infer",weight=2];
o139883189811752 -> o139883189850312 [label="_infer",weight=2];
o139883189791272 -> o139883189850312 [label="infer_end",weight=2];
o139883189850312[color=red];
o139883189864040[label="function:\n<function _higher_function_scope at 0x7f"];
o139883189864040[fillcolor="0,0,0.393333"];
o139883189864040[fontcolor=white];
o139883189791272 -> o139883189864040 [label="_higher_function_scope",weight=2];
o139883189864160[label="function:\n<function infer_name at 0x7f3917d786e0>"];
o139883189864160[fillcolor="0,0,0.393333"];
o139883189864160[fontcolor=white];
o139883189791272 -> o139883189864160 [label="infer_name",weight=2];
o139883190227304 -> o139883189864160 [label="infer_lhs",weight=2];
o139883190466248 -> o139883189864160;
o139883189864400[label="function:\n<function infer_callfunc at 0x7f3917d787"];
o139883189864400[fillcolor="0,0,0.393333"];
o139883189864400[fontcolor=white];
o139883189791272 -> o139883189864400 [label="infer_callfunc",weight=2];
o139883189832232 -> o139883189864400;
o139883189864760[label="function:\n<function infer_import at 0x7f3917d78938"];
o139883189864760[fillcolor="0,0,0.393333"];
o139883189864760[fontcolor=white];
o139883189791272 -> o139883189864760 [label="infer_import",weight=2];
o139883193112048 -> o139883189864760;
o139883189865000[label="function:\n<function infer_name_module at 0x7f3917d"];
o139883189865000[fillcolor="0,0,0.393333"];
o139883189865000[fontcolor=white];
o139883189791272 -> o139883189865000 [label="infer_name_module",weight=2];
o139883189970096 -> o139883189865000 [label="infer_name_module",weight=2];
o139883189865120[label="function:\n<function infer_from at 0x7f3917d78aa0>"];
o139883189865120[fillcolor="0,0,0.393333"];
o139883189865120[fontcolor=white];
o139883189791272 -> o139883189865120 [label="infer_from",weight=2];
o139883190466392 -> o139883189865120;
o139883189865360[label="function:\n<function infer_getattr at 0x7f3917d78b9"];
o139883189865360[fillcolor="0,0,0.393333"];
o139883189865360[fontcolor=white];
o139883189791272 -> o139883189865360 [label="infer_getattr",weight=2];
o139883189832344 -> o139883189865360;
o139883189832288 -> o139883189865360;
o139883189865840[label="function:\n<function infer_global at 0x7f3917d78d70"];
o139883189865840[fillcolor="0,0,0.393333"];
o139883189865840[fontcolor=white];
o139883189791272 -> o139883189865840 [label="infer_global",weight=2];
o139883193112480 -> o139883189865840;
o139883193637416[label="module:\nastroid"];
o139883193637416[fillcolor="0.3,1,0.393333"];
o139883193637416[fontcolor=white];
o139883187205616[label="function:\n<function inference_tip at 0x7f3917aef5f"];
o139883187205616[fillcolor="0,0,0.393333"];
o139883187205616[fontcolor=white];
o139883193805912 -> o139883187205616 [label="inference_tip",weight=2];
o139883185533288 -> o139883187205616 [label="inference_tip",weight=2];
o139883185102928 -> o139883187205616 [label="inference_tip",weight=2];
o139883187205976[label="function:\n<function register_module_extender at 0x"];
o139883187205976[fillcolor="0,0,0.393333"];
o139883187205976[fontcolor=white];
o139883193805912 -> o139883187205976 [label="register_module_extender",weight=2];
o139883185417584 -> o139883187205976 [label="register_module_extender",weight=2];
o139883185102928 -> o139883187205976 [label="register_module_extender",weight=2];
o139883185104048 -> o139883187205976 [label="register_module_extender",weight=2];
o139883185105168 -> o139883187205976 [label="register_module_extender",weight=2];
o139883185103208 -> o139883187205976 [label="register_module_extender",weight=2];
o139883185105448 -> o139883187205976 [label="register_module_extender",weight=2];
o139883187205856[label="function:\n<function __call__ at 0x7f3917aef6e0>"];
o139883187205856[fillcolor="0,0,0.393333"];
o139883187205856[fontcolor=white];
o139883185417864 -> o139883187205856 [label="__call__",weight=2];
o139883187205736[label="function:\n<function __init__ at 0x7f3917aef668>"];
o139883187205736[fillcolor="0,0,0.393333"];
o139883187205736[fontcolor=white];
o139883185417864 -> o139883187205736 [label="__init__",weight=2];
o139883185520960[label="function:\n<function <lambda> at 0x7f3917954140>"];
o139883185520960[fillcolor="0,0,0.393333"];
o139883185520960[fontcolor=white];
o139883190416448 -> o139883185520960;
o139883185438920[label="function:\n<function transform at 0x7f39179400c8>"];
o139883185438920[fillcolor="0,0,0.393333"];
o139883185438920[fontcolor=white];
o139883190416448 -> o139883185438920;
o139883185531312[label="function:\n<function <lambda> at 0x7f39179569b0>"];
o139883185531312[fillcolor="0,0,0.393333"];
o139883185531312[fontcolor=white];
o139883190467688 -> o139883185531312;
o139883185531192[label="function:\n<function transform at 0x7f3917956938>"];
o139883185531192[fillcolor="0,0,0.393333"];
o139883185531192[fontcolor=white];
o139883190467688 -> o139883185531192;
o139883185561424[label="function:\n<function transform at 0x7f391795df50>"];
o139883185561424[fillcolor="0,0,0.393333"];
o139883185561424[fontcolor=white];
o139883190426872 -> o139883185561424;
o139883186030584[label="module:\npysix_moves"];
o139883186030584[fillcolor="0.3,1,0.393333"];
o139883186030584[fontcolor=white];
o139883187206336[label="function:\n<function six_moves_transform_py2 at 0x7"];
o139883187206336[fillcolor="0,0,0.393333"];
o139883187206336[fontcolor=white];
o139883185417584 -> o139883187206336 [label="six_moves_transform_py2",weight=2];
o139883186030864 -> o139883187206336;
o139883185516960 -> o139883187206336;
o139883185439040[label="function:\n<function six_moves_transform_py3 at 0x7"];
o139883185439040[fillcolor="0,0,0.393333"];
o139883185439040[fontcolor=white];
o139883185417584 -> o139883185439040 [label="six_moves_transform_py3",weight=2];
o139883185517856[label="module:\nbuiltin_inference"];
o139883185517856[fillcolor="0.3,1,0.393333"];
o139883185517856[fontcolor=white];
o139883185532512[label="function:\n<function _extend_str at 0x7f3917956e60>"];
o139883185532512[fillcolor="0,0,0.393333"];
o139883185532512[fontcolor=white];
o139883185533288 -> o139883185532512 [label="_extend_str",weight=2];
o139883185558664[label="function:\n<function extend_builtins at 0x7f391795d"];
o139883185558664[fillcolor="0,0,0.393333"];
o139883185558664[fontcolor=white];
o139883185533288 -> o139883185558664 [label="extend_builtins",weight=2];
o139883185558544[label="function:\n<function register_builtin_transform at "];
o139883185558544[fillcolor="0,0,0.393333"];
o139883185558544[fontcolor=white];
o139883185533288 -> o139883185558544 [label="register_builtin_transform",weight=2];
o139883185558904[label="function:\n<function _generic_inference at 0x7f3917"];
o139883185558904[fillcolor="0,0,0.393333"];
o139883185558904[fontcolor=white];
o139883185533288 -> o139883185558904 [label="_generic_inference",weight=2];
o139883185560704[label="function:\n<function _generic_transform at 0x7f3917"];
o139883185560704[fillcolor="0,0,0.393333"];
o139883185560704[fontcolor=white];
o139883185533288 -> o139883185560704 [label="_generic_transform",weight=2];
o139883185560824[label="function:\n<function _infer_builtin at 0x7f391795dc"];
o139883185560824[fillcolor="0,0,0.393333"];
o139883185560824[fontcolor=white];
o139883185533288 -> o139883185560824 [label="_infer_builtin",weight=2];
o139883185550008 -> o139883185560824;
o139883185550096 -> o139883185560824;
o139883185550184 -> o139883185560824;
o139883185550272 -> o139883185560824;
o139883185560944[label="function:\n<function _get_elts at 0x7f391795dd70>"];
o139883185560944[fillcolor="0,0,0.393333"];
o139883185560944[fontcolor=white];
o139883185533288 -> o139883185560944 [label="_get_elts",weight=2];
o139883185561064[label="function:\n<function infer_dict at 0x7f391795dde8>"];
o139883185561064[fillcolor="0,0,0.393333"];
o139883185561064[fontcolor=white];
o139883185533288 -> o139883185561064 [label="infer_dict",weight=2];
o139883185518864 -> o139883185561064;
o139883185561184[label="function:\n<function _node_class at 0x7f391795de60>"];
o139883185561184[fillcolor="0,0,0.393333"];
o139883185561184[fontcolor=white];
o139883185533288 -> o139883185561184 [label="_node_class",weight=2];
o139883185518192[label="module:\nastroid.objects"];
o139883185518192[fillcolor="0.3,1,0.393333"];
o139883185518192[fontcolor=white];
o139883185559264[label="function:\n<function itered at 0x7f391795d6e0>"];
o139883185559264[fillcolor="0,0,0.393333"];
o139883185559264[fontcolor=white];
o139883185534128 -> o139883185559264 [label="itered",weight=2];
o139883185559024[label="function:\n<function __init__ at 0x7f391795d5f0>"];
o139883185559024[fillcolor="0,0,0.393333"];
o139883185559024[fontcolor=white];
o139883185534128 -> o139883185559024 [label="__init__",weight=2];
o139883185559144[label="function:\n<function pytype at 0x7f391795d668>"];
o139883185559144[fillcolor="0,0,0.393333"];
o139883185559144[fontcolor=white];
o139883185534128 -> o139883185559144 [label="pytype",weight=2];
o139883185559384[label="function:\n<function _infer at 0x7f391795d758>"];
o139883185559384[fillcolor="0,0,0.393333"];
o139883185559384[fontcolor=white];
o139883185534128 -> o139883185559384 [label="_infer",weight=2];
o139883185559864[label="function:\n<function super_mro at 0x7f391795d938>"];
o139883185559864[fillcolor="0,0,0.393333"];
o139883185559864[fontcolor=white];
o139883185534408 -> o139883185559864 [label="super_mro",weight=2];
o139883185560104[label="function:\n<function pytype at 0x7f391795da28>"];
o139883185560104[fillcolor="0,0,0.393333"];
o139883185560104[fontcolor=white];
o139883185534408 -> o139883185560104 [label="pytype",weight=2];
o139883185559744[label="function:\n<function _infer at 0x7f391795d8c0>"];
o139883185559744[fillcolor="0,0,0.393333"];
o139883185559744[fontcolor=white];
o139883185534408 -> o139883185559744 [label="_infer",weight=2];
o139883185560584[label="function:\n<function getattr at 0x7f391795dc08>"];
o139883185560584[fillcolor="0,0,0.393333"];
o139883185560584[fontcolor=white];
o139883185534408 -> o139883185560584 [label="getattr",weight=2];
o139883185560224[label="function:\n<function display_type at 0x7f391795daa0"];
o139883185560224[fillcolor="0,0,0.393333"];
o139883185560224[fontcolor=white];
o139883185534408 -> o139883185560224 [label="display_type",weight=2];
o139883185519872[label="module:\npy2stdlib"];
o139883185519872[fillcolor="0.3,1,0.393333"];
o139883185519872[fontcolor=white];
o139883185604800[label="function:\n<function infer_func_form at 0x7f3917968"];
o139883185604800[fillcolor="0,0,0.393333"];
o139883185604800[fontcolor=white];
o139883185102928 -> o139883185604800 [label="infer_func_form",weight=2];
o139883185604920[label="function:\n<function hashlib_transform at 0x7f39179"];
o139883185604920[fillcolor="0,0,0.393333"];
o139883185604920[fontcolor=white];
o139883185102928 -> o139883185604920 [label="hashlib_transform",weight=2];
o139883185519928 -> o139883185604920;
o139883185605040[label="function:\n<function collections_transform at 0x7f3"];
o139883185605040[fillcolor="0,0,0.393333"];
o139883185605040[fontcolor=white];
o139883185102928 -> o139883185605040 [label="collections_transform",weight=2];
o139883185520040 -> o139883185605040;
o139883185605160[label="function:\n<function pkg_resources_transform at 0x7"];
o139883185605160[fillcolor="0,0,0.393333"];
o139883185605160[fontcolor=white];
o139883185102928 -> o139883185605160 [label="pkg_resources_transform",weight=2];
o139883185520152 -> o139883185605160;
o139883185605280[label="function:\n<function subprocess_transform at 0x7f39"];
o139883185605280[fillcolor="0,0,0.393333"];
o139883185605280[fontcolor=white];
o139883185102928 -> o139883185605280 [label="subprocess_transform",weight=2];
o139883185520264 -> o139883185605280;
o139883185605400[label="function:\n<function looks_like_namedtuple at 0x7f3"];
o139883185605400[fillcolor="0,0,0.393333"];
o139883185605400[fontcolor=white];
o139883185102928 -> o139883185605400 [label="looks_like_namedtuple",weight=2];
o139883190428808 -> o139883185605400;
o139883185605520[label="function:\n<function infer_named_tuple at 0x7f39179"];
o139883185605520[fillcolor="0,0,0.393333"];
o139883185605520[fontcolor=white];
o139883185102928 -> o139883185605520 [label="infer_named_tuple",weight=2];
o139883185568016 -> o139883185605520;
o139883185605640[label="function:\n<function infer_enum at 0x7f3917968c08>"];
o139883185605640[fillcolor="0,0,0.393333"];
o139883185605640[fontcolor=white];
o139883185102928 -> o139883185605640 [label="infer_enum",weight=2];
o139883185568144 -> o139883185605640;
o139883185605760[label="function:\n<function infer_enum_class at 0x7f391796"];
o139883185605760[fillcolor="0,0,0.393333"];
o139883185605760[fontcolor=white];
o139883185102928 -> o139883185605760 [label="infer_enum_class",weight=2];
o139883190469048 -> o139883185605760;
o139883185262784[label="module:\npy2mechanize"];
o139883185262784[fillcolor="0.3,1,0.393333"];
o139883185262784[fontcolor=white];
o139883185612032[label="function:\n<function mechanize_transform at 0x7f391"];
o139883185612032[fillcolor="0,0,0.393333"];
o139883185612032[fontcolor=white];
o139883185104048 -> o139883185612032 [label="mechanize_transform",weight=2];
o139883185262952 -> o139883185612032;
o139883185263120[label="module:\npy2qt4"];
o139883185263120[fillcolor="0.3,1,0.393333"];
o139883185263120[fontcolor=white];
o139883185612392[label="function:\n<function pyqt4_qtcore_transform at 0x7f"];
o139883185612392[fillcolor="0,0,0.393333"];
o139883185612392[fontcolor=white];
o139883185105168 -> o139883185612392 [label="pyqt4_qtcore_transform",weight=2];
o139883185263176 -> o139883185612392;
o139883185263400[label="module:\npydateutil"];
o139883185263400[fillcolor="0.3,1,0.393333"];
o139883185263400[fontcolor=white];
o139883185612752[label="function:\n<function dateutil_transform at 0x7f3917"];
o139883185612752[fillcolor="0,0,0.393333"];
o139883185612752[fontcolor=white];
o139883185103208 -> o139883185612752 [label="dateutil_transform",weight=2];
o139883185263456 -> o139883185612752;
o139883185099024[label="AstroidBuilder:\n<astroid.builder.AstroidBuilder object a"];
o139883185099024[fillcolor="0,0,0.393333"];
o139883185099024[fontcolor=white];
o139883185103768 -> o139883185099024 [label="_BUILDER",weight=2];
o139883185264688[label="module:\npy2gi"];
o139883185264688[fillcolor="0.3,1,0.393333"];
o139883185264688[fontcolor=white];
o139883185614072[label="function:\n<function _gi_build_stub at 0x7f391796ac"];
o139883185614072[fillcolor="0,0,0.393333"];
o139883185614072[fontcolor=white];
o139883185535248 -> o139883185614072 [label="_gi_build_stub",weight=2];
o139883185614192[label="function:\n<function _import_gi_module at 0x7f39179"];
o139883185614192[fillcolor="0,0,0.393333"];
o139883185614192[fontcolor=white];
o139883190436424 -> o139883185614192;
o139883185535248 -> o139883185614192 [label="_import_gi_module",weight=2];
o139883186031368[label="module:\nastroid.builder"];
o139883186031368[fillcolor="0.3,1,0.393333"];
o139883186031368[fontcolor=white];
o139883185503720[label="function:\n<function parse at 0x7f391794fde8>"];
o139883185503720[fillcolor="0,0,0.393333"];
o139883185503720[fontcolor=white];
o139883185442896 -> o139883185503720 [label="parse",weight=2];
o139883185574808 -> o139883185503720 [label="parse",weight=2];
o139883185502040[label="function:\n<function _guess_encoding at 0x7f391794f"];
o139883185502040[fillcolor="0,0,0.393333"];
o139883185502040[fontcolor=white];
o139883185442896 -> o139883185502040 [label="_guess_encoding",weight=2];
o139883185503600[label="function:\n<function open_source_file at 0x7f391794"];
o139883185503600[fillcolor="0,0,0.393333"];
o139883185503600[fontcolor=white];
o139883185442896 -> o139883185503600 [label="open_source_file",weight=2];
o139883185530472[label="function:\n<function file_build at 0x7f3917956668>"];
o139883185530472[fillcolor="0,0,0.393333"];
o139883185530472[fontcolor=white];
o139883185533568 -> o139883185530472 [label="file_build",weight=2];
o139883185531072[label="function:\n<function delayed_assattr at 0x7f3917956"];
o139883185531072[fillcolor="0,0,0.393333"];
o139883185531072[fontcolor=white];
o139883185533568 -> o139883185531072 [label="delayed_assattr",weight=2];
o139883185530952[label="function:\n<function add_from_names_to_locals at 0x"];
o139883185530952[fillcolor="0,0,0.393333"];
o139883185530952[fontcolor=white];
o139883185533568 -> o139883185530952 [label="add_from_names_to_locals",weight=2];
o139883185530712[label="function:\n<function _post_build at 0x7f3917956758>"];
o139883185530712[fillcolor="0,0,0.393333"];
o139883185530712[fontcolor=white];
o139883185533568 -> o139883185530712 [label="_post_build",weight=2];
o139883185530352[label="function:\n<function module_build at 0x7f39179565f0"];
o139883185530352[fillcolor="0,0,0.393333"];
o139883185530352[fontcolor=white];
o139883185533568 -> o139883185530352 [label="module_build",weight=2];
o139883185530232[label="function:\n<function __init__ at 0x7f3917956578>"];
o139883185530232[fillcolor="0,0,0.393333"];
o139883185530232[fontcolor=white];
o139883185533568 -> o139883185530232 [label="__init__",weight=2];
o139883122458192[label="AstroidBuilder:\n<astroid.builder.AstroidBuilder object a"];
o139883122458192[fillcolor="0,0,0.393333"];
o139883122458192[fontcolor=white];
o139883193803112 -> o139883122458192 [label="builder",weight=2];
o139883185590912 -> o139883122458192 [label="builder",weight=2];
o139883122918576 -> o139883122458192 [label="builder",weight=2];
o139883193806192[label="dict:\n70 items"];
o139883193806192[fillcolor="0,0,0.393333"];
o139883193806192[fontcolor=white];
o139883193868704 -> o139883193806192 [label="__dict__",weight=10];
o139883193795760[label="dict:\n83 items"];
o139883193795760[fillcolor="0,0,0.393333"];
o139883193795760[fontcolor=white];
o139883193406416 -> o139883193795760 [label="__dict__",weight=10];
o139883190397360 -> o139883193795760;
o139883189892232 -> o139883193795760;
o139883189914632 -> o139883193795760;
o139883189939928 -> o139883193795760;
o139883189940048 -> o139883193795760;
o139883189978848 -> o139883193795760;
o139883189937528 -> o139883193795760;
o139883189937408 -> o139883193795760;
o139883189914992 -> o139883193795760;
o139883193795760[color=red];
o139883190310144[label="tuple:\n3 items"];
o139883190310144[fillcolor="0,0,0.393333"];
o139883190310144[fontcolor=white];
o34017328 -> o139883190310144;
o31402752[label="tuple:\n62 items"];
o31402752[fillcolor="0,0,0.393333"];
o31402752[fontcolor=white];
o139883193805912 -> o31402752 [label="ALL_NODE_CLASSES",weight=2];
o139883193806192 -> o31402752 [label="ALL_NODE_CLASSES",weight=2];
o139883187287312[label="EmptyNode:\n<EmptyNode(__dict__) l.0 [__builtin__] a"];
o139883187287312[fillcolor="0,0,0.393333"];
o139883187287312[fontcolor=white];
o139883187251032 -> o139883187287312;
o139883187280568 -> o139883187287312;
o139883187235664[label="EmptyNode:\n<EmptyNode(__abstractmethods__) l.0 [__b"];
o139883187235664[fillcolor="0,0,0.393333"];
o139883187235664[fontcolor=white];
o139883187251032 -> o139883187235664;
o139883187251320 -> o139883187235664;
o139883185966160[label="EmptyNode:\n<EmptyNode(raw_input) l.0 [__builtin__] "];
o139883185966160[fillcolor="0,0,0.393333"];
o139883185966160[fontcolor=white];
o139883190439520 -> o139883185966160;
o139883185945920 -> o139883185966160;
o139883186214352[label="EmptyNode:\n<EmptyNode(license) l.0 [__builtin__] at"];
o139883186214352[fillcolor="0,0,0.393333"];
o139883186214352[fontcolor=white];
o139883190439520 -> o139883186214352;
o139883186636632 -> o139883186214352;
o139883190021096[label="module:\nastroid.manager"];
o139883190021096[fillcolor="0.3,1,0.346667"];
o139883190021096[fontcolor=white];
o139883189778504[label="function:\n<function astroid_wrapper at 0x7f3917d63"];
o139883189778504[fillcolor="0,0,0.346667"];
o139883189778504[fontcolor=white];
o139883190063184 -> o139883189778504 [label="astroid_wrapper",weight=2];
o139883190302112 -> o139883189778504;
o139883190053536[label="function:\n<function _silent_no_wrap at 0x7f3917da6"];
o139883190053536[fillcolor="0,0,0.346667"];
o139883190053536[fontcolor=white];
o139883190063184 -> o139883190053536 [label="_silent_no_wrap",weight=2];
o139883189793688[label="function:\n<function safe_repr at 0x7f3917d67398>"];
o139883189793688[fillcolor="0,0,0.346667"];
o139883189793688[fontcolor=white];
o139883190063184 -> o139883189793688 [label="safe_repr",weight=2];
o139883189794768[label="function:\n<function ast_from_module at 0x7f3917d67"];
o139883189794768[fillcolor="0,0,0.346667"];
o139883189794768[fontcolor=white];
o139883189790152 -> o139883189794768 [label="ast_from_module",weight=2];
o139883189794888[label="function:\n<function ast_from_class at 0x7f3917d678"];
o139883189794888[fillcolor="0,0,0.346667"];
o139883189794888[fontcolor=white];
o139883189790152 -> o139883189794888 [label="ast_from_class",weight=2];
o139883189794048[label="function:\n<function ast_from_file at 0x7f3917d6750"];
o139883189794048[fillcolor="0,0,0.346667"];
o139883189794048[fontcolor=white];
o139883189790152 -> o139883189794048 [label="ast_from_file",weight=2];
o139883189795368[label="function:\n<function unregister_transform at 0x7f39"];
o139883189795368[fillcolor="0,0,0.346667"];
o139883189795368[fontcolor=white];
o139883189790152 -> o139883189795368 [label="unregister_transform",weight=2];
o139883189794528[label="function:\n<function zip_import_data at 0x7f3917d67"];
o139883189794528[fillcolor="0,0,0.346667"];
o139883189794528[fontcolor=white];
o139883189790152 -> o139883189794528 [label="zip_import_data",weight=2];
o139883189793928[label="function:\n<function __init__ at 0x7f3917d67488>"];
o139883189793928[fillcolor="0,0,0.346667"];
o139883189793928[fontcolor=white];
o139883189790152 -> o139883189793928 [label="__init__",weight=2];
o139883189763048[label="cachedproperty:\n<logilab.common.decorators.cachedpropert"];
o139883189763048[fillcolor="0,0,0.346667"];
o139883189763048[fontcolor=white];
o139883189810912 -> o139883189763048 [label="type",weight=2];
o139883189948496[label="dict:\n11 items"];
o139883189948496[fillcolor="0,0,0.346667"];
o139883189948496[fontcolor=white];
o34008864 -> o139883189948496;