-
Notifications
You must be signed in to change notification settings - Fork 3
/
import_graph.ps
4041 lines (4019 loc) · 83.8 KB
/
import_graph.ps
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
%!PS-Adobe-3.0
%%Creator: graphviz version 2.26.3 (20100126.1600)
%%Title: dependencies
%%Pages: (atend)
%%BoundingBox: (atend)
%%EndComments
save
%%BeginProlog
/DotDict 200 dict def
DotDict begin
/setupLatin1 {
mark
/EncodingVector 256 array def
EncodingVector 0
ISOLatin1Encoding 0 255 getinterval putinterval
EncodingVector 45 /hyphen put
% Set up ISO Latin 1 character encoding
/starnetISO {
dup dup findfont dup length dict begin
{ 1 index /FID ne { def }{ pop pop } ifelse
} forall
/Encoding EncodingVector def
currentdict end definefont
} def
/Times-Roman starnetISO def
/Times-Italic starnetISO def
/Times-Bold starnetISO def
/Times-BoldItalic starnetISO def
/Helvetica starnetISO def
/Helvetica-Oblique starnetISO def
/Helvetica-Bold starnetISO def
/Helvetica-BoldOblique starnetISO def
/Courier starnetISO def
/Courier-Oblique starnetISO def
/Courier-Bold starnetISO def
/Courier-BoldOblique starnetISO def
cleartomark
} bind def
%%BeginResource: procset graphviz 0 0
/coord-font-family /Times-Roman def
/default-font-family /Times-Roman def
/coordfont coord-font-family findfont 8 scalefont def
/InvScaleFactor 1.0 def
/set_scale {
dup 1 exch div /InvScaleFactor exch def
scale
} bind def
% styles
/solid { [] 0 setdash } bind def
/dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def
/dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def
/invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def
/bold { 2 setlinewidth } bind def
/filled { } bind def
/unfilled { } bind def
/rounded { } bind def
/diagonals { } bind def
% hooks for setting color
/nodecolor { sethsbcolor } bind def
/edgecolor { sethsbcolor } bind def
/graphcolor { sethsbcolor } bind def
/nopcolor {pop pop pop} bind def
/beginpage { % i j npages
/npages exch def
/j exch def
/i exch def
/str 10 string def
npages 1 gt {
gsave
coordfont setfont
0 0 moveto
(\() show i str cvs show (,) show j str cvs show (\)) show
grestore
} if
} bind def
/set_font {
findfont exch
scalefont setfont
} def
% draw text fitted to its expected width
/alignedtext { % width text
/text exch def
/width exch def
gsave
width 0 gt {
[] 0 setdash
text stringwidth pop width exch sub text length div 0 text ashow
} if
grestore
} def
/boxprim { % xcorner ycorner xsize ysize
4 2 roll
moveto
2 copy
exch 0 rlineto
0 exch rlineto
pop neg 0 rlineto
closepath
} bind def
/ellipse_path {
/ry exch def
/rx exch def
/y exch def
/x exch def
matrix currentmatrix
newpath
x y translate
rx ry scale
0 0 1 0 360 arc
setmatrix
} bind def
/endpage { showpage } bind def
/showpage { } def
/layercolorseq
[ % layer color sequence - darkest to lightest
[0 0 0]
[.2 .8 .8]
[.4 .8 .8]
[.6 .8 .8]
[.8 .8 .8]
]
def
/layerlen layercolorseq length def
/setlayer {/maxlayer exch def /curlayer exch def
layercolorseq curlayer 1 sub layerlen mod get
aload pop sethsbcolor
/nodecolor {nopcolor} def
/edgecolor {nopcolor} def
/graphcolor {nopcolor} def
} bind def
/onlayer { curlayer ne {invis} if } def
/onlayers {
/myupper exch def
/mylower exch def
curlayer mylower lt
curlayer myupper gt
or
{invis} if
} def
/curlayer 0 def
%%EndResource
%%EndProlog
%%BeginSetup
14 default-font-family set_font
1 setmiterlimit
% /arrowlength 10 def
% /arrowwidth 5 def
% make sure pdfmark is harmless for PS-interpreters other than Distiller
/pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse
% make '<<' and '>>' safe on PS Level 1 devices
/languagelevel where {pop languagelevel}{1} ifelse
2 lt {
userdict (<<) cvn ([) cvn load put
userdict (>>) cvn ([) cvn load put
} if
%%EndSetup
setupLatin1
%%Page: 1 1
%%PageBoundingBox: 36 36 591 756
%%PageOrientation: Portrait
0 0 1 beginpage
gsave
36 36 555 720 boxprim clip newpath
0.281767 0.281767 set_scale 0 rotate 131.765 132.765 translate
% advanced_background
gsave
0.33333 1 0.66667 nodecolor
newpath 756.4 2129.5 moveto
468.4 2129.5 lineto
468.4 2092.5 lineto
756.4 2092.5 lineto
closepath fill
1 setlinewidth
filled
0.33333 1 0.66667 nodecolor
newpath 756.4 2129.5 moveto
468.4 2129.5 lineto
468.4 2092.5 lineto
756.4 2092.5 lineto
closepath stroke
0 0 0 nodecolor
24 /Times-Roman set_font
476.4 2103.9 moveto 272 (advanced_background) alignedtext
grestore
% background_dialog
gsave
0.33333 1 0.66667 nodecolor
newpath 1080.4 2129.5 moveto
836.4 2129.5 lineto
836.4 2092.5 lineto
1080.4 2092.5 lineto
closepath fill
1 setlinewidth
filled
0.33333 1 0.66667 nodecolor
newpath 1080.4 2129.5 moveto
836.4 2129.5 lineto
836.4 2092.5 lineto
1080.4 2092.5 lineto
closepath stroke
0 0 0 nodecolor
24 /Times-Roman set_font
844.4 2103.9 moveto 228 (background_dialog) alignedtext
grestore
% advanced_background->background_dialog
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 756.63 2111 moveto
779.73 2111 803.53 2111 826.33 2111 curveto
stroke
0 0 0 edgecolor
newpath 826.37 2114.5 moveto
836.37 2111 lineto
826.37 2107.5 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 826.37 2114.5 moveto
836.37 2111 lineto
826.37 2107.5 lineto
closepath stroke
grestore
% PyQt4
gsave
0 1 0.66667 nodecolor
1842.4 1953 87.89 36.06 ellipse_path fill
1 setlinewidth
filled
0 1 0.66667 nodecolor
1842.4 1953 87.89 36.06 ellipse_path stroke
0 0 0 nodecolor
36 /Times-Roman set_font
1787.9 1942.1 moveto 109 (PyQt4) alignedtext
grestore
% advanced_background->PyQt4
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 659.64 2129.05 moveto
814.83 2185.23 1318.9 2342.48 1665.4 2159 curveto
1735.03 2122.13 1789.17 2045.62 1818.38 1996.93 curveto
stroke
0 0 0 edgecolor
newpath 1821.48 1998.57 moveto
1823.54 1988.18 lineto
1815.45 1995.02 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1821.48 1998.57 moveto
1823.54 1988.18 lineto
1815.45 1995.02 lineto
closepath stroke
grestore
% numpy
gsave
0.66667 1 0.66667 nodecolor
1537.4 1240 90.01 33.23 ellipse_path fill
1 setlinewidth
filled
0.66667 1 0.66667 nodecolor
1537.4 1240 90.01 33.23 ellipse_path stroke
0 0 1 nodecolor
32 /Times-Roman set_font
1481.4 1230.7 moveto 112 (numpy) alignedtext
grestore
% advanced_background->numpy
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 632.52 2092.87 moveto
664.45 2062.83 726.21 1999.33 756.4 1932 curveto
840.28 1744.92 691.8 1626.22 832.4 1477 curveto
837.35 1471.74 1332.71 1363.72 1339.4 1361 curveto
1393.69 1338.89 1450.22 1302.83 1488.92 1275.82 curveto
stroke
0 0 0 edgecolor
newpath 1491.22 1278.47 moveto
1497.38 1269.85 lineto
1487.19 1272.75 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1491.22 1278.47 moveto
1497.38 1269.85 lineto
1487.19 1272.75 lineto
closepath stroke
grestore
% matplotlib
gsave
0.83333 1 0.66667 nodecolor
1537.4 2014 126.78 33.23 ellipse_path fill
1 setlinewidth
filled
0.83333 1 0.66667 nodecolor
1537.4 2014 126.78 33.23 ellipse_path stroke
0 0 0 nodecolor
32 /Times-Roman set_font
1455.4 2004.7 moveto 164 (matplotlib) alignedtext
grestore
% advanced_background->matplotlib
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 737.23 2129 moveto
768.25 2132.74 801.48 2136.11 832.4 2138 curveto
944.19 2144.83 973.4 2152.92 1084.4 2138 curveto
1216.17 2120.29 1363.86 2074.83 1453.73 2044.16 curveto
stroke
0 0 0 edgecolor
newpath 1455 2047.43 moveto
1463.32 2040.87 lineto
1452.73 2040.81 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1455 2047.43 moveto
1463.32 2040.87 lineto
1452.73 2040.81 lineto
closepath stroke
grestore
% background_dialog->PyQt4
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 1080.52 2126.28 moveto
1224.64 2139.68 1469.47 2147.79 1665.4 2080 curveto
1717.35 2062.03 1767.37 2023.52 1800.9 1993.6 curveto
stroke
0 0 0 edgecolor
newpath 1803.58 1995.89 moveto
1808.64 1986.58 lineto
1798.88 1990.7 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1803.58 1995.89 moveto
1808.64 1986.58 lineto
1798.88 1990.7 lineto
closepath stroke
grestore
% mplwidget
gsave
0.33333 1 0.66667 nodecolor
newpath 1317.4 1956.5 moveto
1175.4 1956.5 lineto
1175.4 1919.5 lineto
1317.4 1919.5 lineto
closepath fill
1 setlinewidth
filled
0.33333 1 0.66667 nodecolor
newpath 1317.4 1956.5 moveto
1175.4 1956.5 lineto
1175.4 1919.5 lineto
1317.4 1919.5 lineto
closepath stroke
0 0 0 nodecolor
24 /Times-Roman set_font
1182.9 1930.9 moveto 127 (mplwidget) alignedtext
grestore
% background_dialog->mplwidget
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 1050.78 2092.91 moveto
1062.41 2089.09 1073.9 2084.5 1084.4 2079 curveto
1114.23 2063.37 1182.63 1999.59 1220.31 1963.39 curveto
stroke
0 0 0 edgecolor
newpath 1223.09 1965.58 moveto
1227.86 1956.12 lineto
1218.23 1960.54 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1223.09 1965.58 moveto
1227.86 1956.12 lineto
1218.23 1960.54 lineto
closepath stroke
grestore
% scipy
gsave
0.66667 0.33333 1 nodecolor
1537.4 1119 65.97 31.82 ellipse_path fill
1 setlinewidth
filled
0.66667 0.33333 1 nodecolor
1537.4 1119 65.97 31.82 ellipse_path stroke
0 0 0 nodecolor
30 /Times-Roman set_font
1498.4 1110.5 moveto 78 (scipy) alignedtext
grestore
% IPython
gsave
0.16667 1 0.66667 nodecolor
612.4 117 75.16 26.16 ellipse_path fill
1 setlinewidth
filled
0.16667 1 0.66667 nodecolor
612.4 117 75.16 26.16 ellipse_path stroke
0 0 0 nodecolor
24 /Times-Roman set_font
566.9 109.9 moveto 91 (IPython) alignedtext
grestore
% h5py
gsave
0.33333 0.33333 1 nodecolor
1537.4 970 67.88 33.23 ellipse_path fill
1 setlinewidth
filled
0.33333 0.33333 1 nodecolor
1537.4 970 67.88 33.23 ellipse_path stroke
0 0 0 nodecolor
32 /Times-Roman set_font
1497.4 960.7 moveto 80 (h5py) alignedtext
grestore
% glob
gsave
1 setlinewidth
0 0 0 nodecolor
newpath 1581.49 753 moveto
1559.45 777.49 lineto
1515.35 777.49 lineto
1493.31 753 lineto
1515.35 728.51 lineto
1559.45 728.51 lineto
closepath stroke
0 0 0 nodecolor
18 /Times-Roman set_font
1518.4 747.8 moveto 38 (glob) alignedtext
grestore
% subprocess
gsave
1 setlinewidth
0 0 0 nodecolor
newpath 1052.3 635 moveto
1005.35 659.49 lineto
911.45 659.49 lineto
864.5 635 lineto
911.45 610.51 lineto
1005.35 610.51 lineto
closepath stroke
0 0 0 nodecolor
18 /Times-Roman set_font
908.9 629.8 moveto 99 (subprocess) alignedtext
grestore
% multiprocessing
gsave
1 setlinewidth
0 0 0 nodecolor
newpath 1665.59 819 moveto
1601.49 843.49 lineto
1473.31 843.49 lineto
1409.21 819 lineto
1473.31 794.51 lineto
1601.49 794.51 lineto
closepath stroke
0 0 0 nodecolor
18 /Times-Roman set_font
1466.9 813.8 moveto 141 (multiprocessing) alignedtext
grestore
% traceback
gsave
1 setlinewidth
0 0 0 nodecolor
newpath 1622.32 273 moveto
1579.86 297.49 lineto
1494.94 297.49 lineto
1452.48 273 lineto
1494.94 248.51 lineto
1579.86 248.51 lineto
closepath stroke
0 0 0 nodecolor
18 /Times-Roman set_font
1493.4 267.8 moveto 88 (traceback) alignedtext
grestore
% zipfile
gsave
1 setlinewidth
0 0 0 nodecolor
newpath 1015.55 945 moveto
986.98 969.49 lineto
929.82 969.49 lineto
901.25 945 lineto
929.82 920.51 lineto
986.98 920.51 lineto
closepath stroke
0 0 0 nodecolor
18 /Times-Roman set_font
931.4 939.8 moveto 54 (zipfile) alignedtext
grestore
% StringIO
gsave
1 setlinewidth
0 0 0 nodecolor
newpath 1914.57 533 moveto
1878.48 557.49 lineto
1806.32 557.49 lineto
1770.23 533 lineto
1806.32 508.51 lineto
1878.48 508.51 lineto
closepath stroke
0 0 0 nodecolor
18 /Times-Roman set_font
1805.9 527.8 moveto 73 (StringIO) alignedtext
grestore
% cPickle
gsave
1 setlinewidth
0 0 0 nodecolor
newpath 1021.27 379 moveto
989.84 403.49 lineto
926.96 403.49 lineto
895.53 379 lineto
926.96 354.51 lineto
989.84 354.51 lineto
closepath stroke
0 0 0 nodecolor
18 /Times-Roman set_font
927.9 373.8 moveto 61 (cPickle) alignedtext
grestore
% atexit
gsave
1 setlinewidth
0 0 0 nodecolor
newpath 1896.6 24 moveto
1869.5 48.49 lineto
1815.3 48.49 lineto
1788.2 24 lineto
1815.3 -.49 lineto
1869.5 -.49 lineto
closepath stroke
0 0 0 nodecolor
18 /Times-Roman set_font
1816.9 18.8 moveto 51 (atexit) alignedtext
grestore
% tempfile
gsave
1 setlinewidth
0 0 0 nodecolor
newpath 1610.38 1901 moveto
1573.89 1925.49 lineto
1500.91 1925.49 lineto
1464.42 1901 lineto
1500.91 1876.51 lineto
1573.89 1876.51 lineto
closepath stroke
0 0 0 nodecolor
18 /Times-Roman set_font
1500.4 1895.8 moveto 74 (tempfile) alignedtext
grestore
% getpass
gsave
1 setlinewidth
0 0 0 nodecolor
newpath 1911.3 156 moveto
1876.85 180.49 lineto
1807.95 180.49 lineto
1773.5 156 lineto
1807.95 131.51 lineto
1876.85 131.51 lineto
closepath stroke
0 0 0 nodecolor
18 /Times-Roman set_font
1807.9 150.8 moveto 69 (getpass) alignedtext
grestore
% time
gsave
1 setlinewidth
0 0 0 nodecolor
newpath 1888.44 786 moveto
1865.42 810.49 lineto
1819.38 810.49 lineto
1796.36 786 lineto
1819.38 761.51 lineto
1865.42 761.51 lineto
closepath stroke
0 0 0 nodecolor
18 /Times-Roman set_font
1821.9 780.8 moveto 41 (time) alignedtext
grestore
% copy
gsave
1 setlinewidth
0 0 0 nodecolor
newpath 1585.57 1045 moveto
1561.49 1069.49 lineto
1513.31 1069.49 lineto
1489.23 1045 lineto
1513.31 1020.51 lineto
1561.49 1020.51 lineto
closepath stroke
0 0 0 nodecolor
18 /Times-Roman set_font
1515.9 1039.8 moveto 43 (copy) alignedtext
grestore
% inspect
gsave
1 setlinewidth
0 0 0 nodecolor
newpath 1907.22 396 moveto
1874.81 420.49 lineto
1809.99 420.49 lineto
1777.58 396 lineto
1809.99 371.51 lineto
1874.81 371.51 lineto
closepath stroke
0 0 0 nodecolor
18 /Times-Roman set_font
1810.4 390.8 moveto 64 (inspect) alignedtext
grestore
% email
gsave
1 setlinewidth
0 0 0 nodecolor
newpath 1590.47 481 moveto
1563.94 505.49 lineto
1510.86 505.49 lineto
1484.33 481 lineto
1510.86 456.51 lineto
1563.94 456.51 lineto
closepath stroke
0 0 0 nodecolor
18 /Times-Roman set_font
1512.9 475.8 moveto 49 (email) alignedtext
grestore
% smtplib
gsave
1 setlinewidth
0 0 0 nodecolor
newpath 1605.17 415 moveto
1571.28 439.49 lineto
1503.52 439.49 lineto
1469.63 415 lineto
1503.52 390.51 lineto
1571.28 390.51 lineto
closepath stroke
0 0 0 nodecolor
18 /Times-Roman set_font
1503.9 409.8 moveto 67 (smtplib) alignedtext
grestore
% ConfigParser
gsave
1 setlinewidth
0 0 0 nodecolor
newpath 1947.23 90 moveto
1894.81 114.49 lineto
1789.99 114.49 lineto
1737.57 90 lineto
1789.99 65.51 lineto
1894.81 65.51 lineto
closepath stroke
0 0 0 nodecolor
18 /Times-Roman set_font
1785.9 84.8 moveto 113 (ConfigParser) alignedtext
grestore
% errno
gsave
1 setlinewidth
0 0 0 nodecolor
newpath 1588.34 207 moveto
1562.87 231.49 lineto
1511.93 231.49 lineto
1486.46 207 lineto
1511.93 182.51 lineto
1562.87 182.51 lineto
closepath stroke
0 0 0 nodecolor
18 /Times-Roman set_font
1513.9 201.8 moveto 47 (errno) alignedtext
grestore
% mplwidget->PyQt4
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 1318 1939.8 moveto
1424.16 1942.47 1623.67 1947.49 1743.65 1950.51 curveto
stroke
0 0 0 edgecolor
newpath 1743.85 1954.02 moveto
1753.93 1950.77 lineto
1744.02 1947.02 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1743.85 1954.02 moveto
1753.93 1950.77 lineto
1744.02 1947.02 lineto
closepath stroke
grestore
% mplwidget->matplotlib
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 1315.36 1956.01 moveto
1351.85 1965.54 1397.32 1977.41 1437.59 1987.93 curveto
stroke
0 0 0 edgecolor
newpath 1436.87 1991.36 moveto
1447.43 1990.5 lineto
1438.64 1984.59 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1436.87 1991.36 moveto
1447.43 1990.5 lineto
1438.64 1984.59 lineto
closepath stroke
grestore
% mplwidget->tempfile
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 1317.96 1928.9 moveto
1362.86 1923.19 1420.56 1915.86 1465.52 1910.14 curveto
stroke
0 0 0 edgecolor
newpath 1466.02 1913.6 moveto
1475.49 1908.87 lineto
1465.13 1906.66 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1466.02 1913.6 moveto
1475.49 1908.87 lineto
1465.13 1906.66 lineto
closepath stroke
grestore
% icons_rc
gsave
0.33333 1 0.66667 nodecolor
newpath 1594.4 1730.5 moveto
1480.4 1730.5 lineto
1480.4 1693.5 lineto
1594.4 1693.5 lineto
closepath fill
1 setlinewidth
filled
0.33333 1 0.66667 nodecolor
newpath 1594.4 1730.5 moveto
1480.4 1730.5 lineto
1480.4 1693.5 lineto
1594.4 1693.5 lineto
closepath stroke
0 0 0 nodecolor
24 /Times-Roman set_font
1488.4 1704.9 moveto 98 (icons_rc) alignedtext
grestore
% mplwidget->icons_rc
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 1269.72 1919.89 moveto
1321.66 1879.55 1446.88 1782.3 1505.77 1736.56 curveto
stroke
0 0 0 edgecolor
newpath 1508.22 1739.1 moveto
1513.97 1730.2 lineto
1503.92 1733.57 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1508.22 1739.1 moveto
1513.97 1730.2 lineto
1503.92 1733.57 lineto
closepath stroke
grestore
% compare_plots
gsave
0.33333 1 0.66667 nodecolor
newpath 709.4 2335.5 moveto
515.4 2335.5 lineto
515.4 2298.5 lineto
709.4 2298.5 lineto
closepath fill
1 setlinewidth
filled
0.33333 1 0.66667 nodecolor
newpath 709.4 2335.5 moveto
515.4 2335.5 lineto
515.4 2298.5 lineto
709.4 2298.5 lineto
closepath stroke
0 0 0 nodecolor
24 /Times-Roman set_font
523.4 2309.9 moveto 178 (compare_plots) alignedtext
grestore
% compare_plots->PyQt4
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 709.64 2331.53 moveto
747.81 2336.55 792.07 2341.53 832.4 2344 curveto
1017.57 2355.32 1512.39 2393.9 1665.4 2289 curveto
1766.55 2219.65 1814.15 2073.7 1832.62 1999.07 curveto
stroke
0 0 0 edgecolor
newpath 1836.1 1999.57 moveto
1835.04 1989.03 lineto
1829.3 1997.93 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1836.1 1999.57 moveto
1835.04 1989.03 lineto
1829.3 1997.93 lineto
closepath stroke
grestore
% compare_plots->numpy
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 633.13 2298.78 moveto
665.64 2268.85 727.82 2205.81 756.4 2138 curveto
811.01 2008.47 736.42 1612.71 832.4 1510 curveto
910.24 1426.69 973.2 1487.17 1084.4 1462 curveto
1198.69 1436.13 1234.43 1447.08 1339.4 1395 curveto
1400.55 1364.66 1460.88 1313.55 1498.57 1278.37 curveto
stroke
0 0 0 edgecolor
newpath 1501.38 1280.52 moveto
1506.26 1271.11 lineto
1496.58 1275.43 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1501.38 1280.52 moveto
1506.26 1271.11 lineto
1496.58 1275.43 lineto
closepath stroke
grestore
% compare_widget
gsave
0.33333 1 0.66667 nodecolor
newpath 1065.4 2335.5 moveto
851.4 2335.5 lineto
851.4 2298.5 lineto
1065.4 2298.5 lineto
closepath fill
1 setlinewidth
filled
0.33333 1 0.66667 nodecolor
newpath 1065.4 2335.5 moveto
851.4 2335.5 lineto
851.4 2298.5 lineto
1065.4 2298.5 lineto
closepath stroke
0 0 0 nodecolor
24 /Times-Roman set_font
858.9 2309.9 moveto 199 (compare_widget) alignedtext
grestore
% compare_plots->compare_widget
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 709.7 2317 moveto
750.32 2317 797.87 2317 840.45 2317 curveto
stroke
0 0 0 edgecolor
newpath 840.59 2320.5 moveto
850.59 2317 lineto
840.59 2313.5 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 840.59 2320.5 moveto
850.59 2317 lineto
840.59 2313.5 lineto
closepath stroke
grestore
% compare_widget->PyQt4
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 1065.98 2317.91 moveto
1238.71 2317.49 1568.38 2308.34 1665.4 2247 curveto
1756.65 2189.31 1807.4 2066 1829.27 1998.86 curveto
stroke
0 0 0 edgecolor
newpath 1832.71 1999.57 moveto
1832.41 1988.98 lineto
1826.04 1997.45 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1832.71 1999.57 moveto
1832.41 1988.98 lineto
1826.04 1997.45 lineto
closepath stroke
grestore
% compare_widget->mplwidget
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 972.1 2298.98 moveto
1018.72 2237.62 1171.38 2036.72 1226.41 1964.31 curveto
stroke
0 0 0 edgecolor
newpath 1229.36 1966.22 moveto
1232.62 1956.14 lineto
1223.78 1961.98 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1229.36 1966.22 moveto
1232.62 1956.14 lineto
1223.78 1961.98 lineto
closepath stroke
grestore
% config
gsave
0.33333 1 0.66667 nodecolor
newpath 1582.4 89.5 moveto
1492.4 89.5 lineto
1492.4 52.5 lineto
1582.4 52.5 lineto
closepath fill
1 setlinewidth
filled
0.33333 1 0.66667 nodecolor
newpath 1582.4 89.5 moveto
1492.4 89.5 lineto
1492.4 52.5 lineto
1582.4 52.5 lineto
closepath stroke
0 0 0 nodecolor
24 /Times-Roman set_font
1500.4 63.9 moveto 74 (config) alignedtext
grestore
% config->atexit
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 1582.4 64.06 moveto
1636.33 55.75 1726.76 41.82 1785.49 32.77 curveto
stroke
0 0 0 edgecolor
newpath 1786.36 36.18 moveto
1795.71 31.2 lineto
1785.29 29.26 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1786.36 36.18 moveto
1795.71 31.2 lineto
1785.29 29.26 lineto
closepath stroke
grestore
% config->getpass
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 1582.4 83.54 moveto
1635.58 98.36 1724.25 123.07 1783.02 139.45 curveto
stroke
0 0 0 edgecolor
newpath 1782.33 142.89 moveto
1792.91 142.21 lineto
1784.21 136.15 lineto
closepath fill