forked from openPSTD/openPSTD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
initialShortFileTiming.txt
2284 lines (2256 loc) · 154 KB
/
initialShortFileTiming.txt
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
--------------------
0:
Point( 0, 0)
o-------------------o
| Size ( 50, 50) |
o-------------------o
Point( 50, 50)
1:
Point( 50, 0)
o-------------------o
| Size ( 50, 50) |
o-------------------o
Point(100, 50)
2:
Point( 50, 50)
o-------------------o
| Size ( 50, 50) |
o-------------------o
Point(100, 100)
0_left:
Point(-50, 0)
o-------------------o
| Size ( 50, 50) |
o-------------------o
Point( 0, 50)
0_top:
Point( 0, 50)
o-------------------o
| Size ( 50, 50) |
o-------------------o
Point( 50, 100)
0_bottom:
Point( 0, -50)
o-------------------o
| Size ( 50, 50) |
o-------------------o
Point( 50, 0)
1_right:
Point(100, 0)
o-------------------o
| Size ( 50, 50) |
o-------------------o
Point(150, 50)
1_bottom:
Point( 50, -50)
o-------------------o
| Size ( 50, 50) |
o-------------------o
Point(100, 0)
2_left:
Point( 0, 50)
o-------------------o
| Size ( 50, 50) |
o-------------------o
Point( 50, 100)
2_right:
Point(100, 50)
o-------------------o
| Size ( 50, 50) |
o-------------------o
Point(150, 100)
2_top:
Point( 50, 100)
o-------------------o
| Size ( 50, 50) |
o-------------------o
Point(100, 150)
0_bottom_left:
Point(-50, -50)
o-------------------o
| Size ( 50, 50) |
o-------------------o
Point( 0, 0)
0_top_left:
Point(-50, 50)
o-------------------o
| Size ( 50, 50) |
o-------------------o
Point( 0, 100)
0_top_right:
Point( 50, 50)
o-------------------o
| Size ( 50, 50) |
o-------------------o
Point(100, 100)
1_bottom_right_right_bottom:
Point(100, -50)
o-------------------o
| Size ( 50, 50) |
o-------------------o
Point(150, 0)
2_right_top:
Point(100, 100)
o-------------------o
| Size ( 50, 50) |
o-------------------o
Point(150, 150)
2_top_left:
Point( 0, 100)
o-------------------o
| Size ( 50, 50) |
o-------------------o
Point( 50, 150)
2_top_right:
Point(100, 100)
o-------------------o
| Size ( 50, 50) |
o-------------------o
Point(150, 150)
Boundary at y=50
Boundary at x=100
Boundary at y=50
Boundary at x=50
Boundary at x=50
Boundary at y=50
Boundary at x=100
Boundary at y=0
Boundary at y=100
Boundary at y=100
Boundary at x=150
Boundary at x=100
Boundary at y=0
Boundary at y=100
Boundary at y=100
Boundary at x=150
Boundary at y=0
Boundary at x=150
Boundary at y=150
Boundary at y=150
Sources:
Point( 4, 4)
--------------------
234567891011121314151617181920212223242526272829303132333435Calculation took 27.92 seconds
1215783 function calls (1212982 primitive calls) in 28.848 seconds
Ordered by: internal time
ncalls tottime percall cumtime percall filename:lineno(function)
10608 9.011 0.001 22.680 0.002 functions.py:155(spatderp3)
10608 3.291 0.000 3.291 0.000 {numpy.fft.fftpack_lite.cfftf}
10608 3.254 0.000 3.254 0.000 {numpy.fft.fftpack_lite.cfftb}
10608 2.794 0.000 26.883 0.003 classes.py:276(calc)
10608 2.710 0.000 6.723 0.001 fftpack.py:177(ifft)
21216 0.795 0.000 7.926 0.000 fftpack.py:45(_raw_fft)
53041 0.724 0.000 0.724 0.000 {method 'round' of 'numpy.generic' objects}
2652 0.642 0.000 0.652 0.000 solvers.py:69(calc)
42451 0.518 0.000 0.518 0.000 {numpy.core.multiarray.copyto}
10608 0.352 0.000 0.352 0.000 functions.py:231(nearest_2power)
10610 0.312 0.000 0.312 0.000 {numpy.core.multiarray.concatenate}
10608 0.300 0.000 0.300 0.000 {method 'astype' of 'numpy.ndarray' objects}
42476 0.286 0.000 0.286 0.000 {numpy.core.multiarray.empty}
10608 0.275 0.000 0.275 0.000 kcalc.py:41(match)
22654 0.269 0.000 0.269 0.000 {numpy.core.multiarray.zeros}
1 0.199 0.199 27.916 27.916 solvers.py:45(__init__)
42451 0.190 0.000 0.994 0.000 numeric.py:136(ones)
42798 0.184 0.000 0.184 0.000 {numpy.core.multiarray.array}
96112 0.161 0.000 0.161 0.000 classes.py:55(__getitem__)
53054 0.158 0.000 0.882 0.000 fromnumeric.py:2541(around)
42432 0.126 0.000 0.126 0.000 {method 'swapaxes' of 'numpy.ndarray' objects}
10624 0.114 0.000 0.201 0.000 classes.py:243(get_range)
1 0.095 0.095 0.095 0.095 qt_compat.py:2(<module>)
42432 0.094 0.000 0.219 0.000 fromnumeric.py:444(swapaxes)
31864 0.093 0.000 0.224 0.000 numeric.py:392(asarray)
10608 0.093 0.000 26.976 0.003 solvers.py:62(calc)
42543 0.090 0.000 0.162 0.000 classes.py:75(<lambda>)
40067 0.086 0.000 0.153 0.000 classes.py:74(<lambda>)
10608 0.077 0.000 4.377 0.000 fftpack.py:91(fft)
42432 0.071 0.000 0.071 0.000 {method 'transpose' of 'numpy.ndarray' objects}
12209 0.060 0.000 0.060 0.000 {min}
10608 0.056 0.000 0.148 0.000 type_check.py:107(real)
10608 0.051 0.000 0.354 0.000 kcalc.py:44(<lambda>)
21216 0.047 0.000 0.047 0.000 fromnumeric.py:2495(size)
11115 0.046 0.000 0.046 0.000 {max}
21217 0.046 0.000 0.046 0.000 {method 'pop' of 'list' objects}
10608 0.041 0.000 0.092 0.000 numeric.py:462(asanyarray)
29543 0.041 0.000 0.041 0.000 {getattr}
18360 0.036 0.000 0.036 0.000 classes.py:162(is_rigid)
1 0.030 0.030 0.032 0.032 {cPickle.load}
10608 0.028 0.000 0.029 0.000 kcalc.py:38(get)
60753/60384 0.027 0.000 0.027 0.000 {len}
24888 0.026 0.000 0.026 0.000 classes.py:300(<genexpr>)
33070 0.026 0.000 0.026 0.000 {method 'append' of 'list' objects}
363/98 0.023 0.000 0.061 0.001 sre_parse.py:379(_parse)
10608 0.023 0.000 0.024 0.000 classes.py:208(should_update)
21371 0.021 0.000 0.021 0.000 {method 'setdefault' of 'dict' objects}
1431 0.020 0.000 0.045 0.000 classes.py:132(Z)
175 0.019 0.000 0.021 0.000 {method 'sub' of '_sre.SRE_Pattern' objects}
10608 0.018 0.000 0.018 0.000 kcalc.py:43(__getattr__)
13 0.018 0.001 0.204 0.016 __init__.py:1(<module>)
254 0.017 0.000 0.025 0.000 sre_compile.py:207(_optimize_charset)
510 0.016 0.000 0.023 0.000 classes.py:229(apply_pml)
273 0.015 0.000 0.020 0.000 function_base.py:2945(add_newdoc)
699/87 0.015 0.000 0.050 0.001 sre_compile.py:32(_compile)
11 0.015 0.001 0.018 0.002 collections.py:288(namedtuple)
6752 0.014 0.000 0.026 0.000 classes.py:69(<lambda>)
1 0.014 0.014 0.867 0.867 pstd.py:20(<module>)
1 0.014 0.014 0.137 0.137 __init__.py:101(<module>)
6750 0.014 0.000 0.025 0.000 classes.py:68(<lambda>)
4504 0.013 0.000 0.015 0.000 sre_parse.py:182(__next)
1 0.011 0.011 0.013 0.013 polynomial.py:55(<module>)
11 0.011 0.001 0.033 0.003 artist.py:957(_get_setters_and_targets)
5309 0.011 0.000 0.011 0.000 {pow}
1 0.010 0.010 0.018 0.018 rrule.py:7(<module>)
1 0.009 0.009 0.014 0.014 laguerre.py:59(<module>)
1 0.009 0.009 0.012 0.012 chebyshev.py:87(<module>)
1 0.009 0.009 0.012 0.012 legendre.py:83(<module>)
1 0.009 0.009 0.011 0.011 hermite_e.py:59(<module>)
1 0.009 0.009 0.011 0.011 hermite.py:59(<module>)
1 0.009 0.009 0.041 0.041 widgets.py:10(<module>)
1 0.008 0.008 0.009 0.009 socket.py:45(<module>)
1 0.007 0.007 0.064 0.064 _axes.py:1(<module>)
967/366 0.007 0.000 0.009 0.000 sre_parse.py:140(getwidth)
62 0.007 0.000 0.007 0.000 sre_compile.py:258(_mk_bitmap)
402 0.007 0.000 0.007 0.000 {method 'search' of '_sre.SRE_Pattern' objects}
1 0.007 0.007 0.102 0.102 formlayout.py:34(<module>)
7816 0.007 0.000 0.007 0.000 {isinstance}
2 0.006 0.003 0.010 0.005 __init__.py:3(<module>)
11 0.006 0.001 0.015 0.001 artist.py:901(get_aliases)
5623 0.006 0.000 0.006 0.000 {method 'startswith' of 'str' objects}
524 0.006 0.000 0.009 0.000 inspect.py:744(getargs)
1 0.006 0.006 0.021 0.021 ticker.py:143(<module>)
1 0.005 0.005 0.008 0.008 transforms.py:30(<module>)
2784 0.005 0.000 0.008 0.000 sre_parse.py:130(__getitem__)
3814 0.005 0.000 0.018 0.000 sre_parse.py:201(get)
25 0.005 0.000 0.005 0.000 {dir}
1 0.005 0.005 0.006 0.006 __init__.py:88(<module>)
1 0.005 0.005 0.050 0.050 textpath.py:3(<module>)
1 0.005 0.005 0.637 0.637 classes.py:20(<module>)
1 0.005 0.005 0.014 0.014 cm.py:6(<module>)
1 0.004 0.004 0.046 0.046 contour.py:4(<module>)
1 0.004 0.004 0.256 0.256 colorbar.py:20(<module>)
1 0.004 0.004 0.135 0.135 collections.py:10(<module>)
1 0.004 0.004 0.103 0.103 backend_bases.py:28(<module>)
1 0.004 0.004 0.007 0.007 case.py:1(<module>)
1 0.004 0.004 0.085 0.085 _subplots.py:1(<module>)
524 0.004 0.000 0.016 0.000 inspect.py:804(getargspec)
302/14 0.004 0.000 0.012 0.001 pyparsing.py:957(_parseNoCache)
1 0.004 0.004 28.853 28.853 main_kernel.py:20(<module>)
804 0.004 0.000 0.008 0.000 classes.py:160(num_neighbours)
18 0.004 0.000 0.010 0.001 classes.py:517(add_domain)
409 0.004 0.000 0.013 0.000 artist.py:929(get_valid_values)
1 0.004 0.004 0.189 0.189 __init__.py:106(<module>)
260/87 0.004 0.000 0.062 0.001 sre_parse.py:301(_parse_sub)
1 0.004 0.004 0.494 0.494 pyplot.py:17(<module>)
1 0.004 0.004 0.005 0.005 __init__.py:4(<module>)
1 0.004 0.004 0.012 0.012 solvers.py:20(<module>)
1 0.004 0.004 0.010 0.010 __init__.py:38(<module>)
36 0.003 0.000 0.004 0.000 functions.py:74(Rmatrices)
1 0.003 0.003 0.043 0.043 pyparsing.py:58(<module>)
1 0.003 0.003 0.004 0.004 linalg.py:10(<module>)
1 0.003 0.003 0.070 0.070 artist.py:1(<module>)
1 0.003 0.003 0.004 0.004 mathtext.py:19(<module>)
1 0.003 0.003 0.076 0.076 __init__.py:15(<module>)
1 0.003 0.003 0.026 0.026 dates.py:111(<module>)
1 0.003 0.003 0.007 0.007 Image.py:27(<module>)
1 0.003 0.003 0.021 0.021 urllib.py:23(<module>)
1 0.003 0.003 0.106 0.106 backend_qt5.py:1(<module>)
1 0.003 0.003 0.098 0.098 figure.py:12(<module>)
11 0.003 0.000 0.051 0.005 artist.py:1036(pprint_setters)
1 0.003 0.003 0.006 0.006 _base.py:1(<module>)
1 0.003 0.003 0.005 0.005 numeric.py:1(<module>)
612 0.003 0.000 0.003 0.000 classes.py:133(push_values)
1 0.003 0.003 0.005 0.005 classes.py:699(add_source)
1 0.003 0.003 0.040 0.040 font_manager.py:21(<module>)
254 0.003 0.000 0.029 0.000 sre_compile.py:178(_compile_charset)
98 0.003 0.000 0.003 0.000 docstring.py:44(__call__)
2 0.003 0.001 0.007 0.004 __init__.py:44(<module>)
1 0.003 0.003 0.003 0.003 wave.py:72(<module>)
218 0.003 0.000 0.134 0.001 re.py:226(_compile)
12 0.003 0.000 0.114 0.009 {__import__}
2113 0.003 0.000 0.003 0.000 {built-in method __new__ of type object at 0x91f8e0}
2414 0.003 0.000 0.005 0.000 sre_parse.py:195(match)
200 0.002 0.000 0.004 0.000 classes.py:48(__init__)
1 0.002 0.002 0.005 0.005 legend.py:23(<module>)
67 0.002 0.000 0.003 0.000 cm.py:34(revcmap)
174 0.002 0.000 0.004 0.000 colors.py:265(to_rgb)
6 0.002 0.000 0.010 0.002 __init__.py:988(_rc_params_in_file)
567 0.002 0.000 0.002 0.000 {method 'match' of '_sre.SRE_Pattern' objects}
1 0.002 0.002 0.004 0.004 afm.py:34(<module>)
498 0.002 0.000 0.020 0.000 __init__.py:851(__setitem__)
1 0.002 0.002 0.014 0.014 __init__.py:45(<module>)
1946 0.002 0.000 0.002 0.000 {method 'startswith' of 'unicode' objects}
16 0.002 0.000 0.003 0.000 classes.py:190(make_attenuation)
87 0.002 0.000 0.013 0.000 sre_compile.py:359(_compile_info)
874 0.002 0.000 0.002 0.000 {sum}
1459 0.002 0.000 0.004 0.000 artist.py:991(is_alias)
1 0.002 0.002 0.110 0.110 backend_qt5agg.py:3(<module>)
1 0.002 0.002 0.014 0.014 rcsetup.py:15(<module>)
1 0.002 0.002 0.017 0.017 patches.py:3(<module>)
1 0.002 0.002 0.008 0.008 pyplot.py:2095(_setup_pyplot_info_docstrings)
1 0.002 0.002 0.002 0.002 <string>:7(Laguerre)
317/143 0.002 0.000 0.008 0.000 {method 'join' of 'str' objects}
495 0.002 0.000 0.002 0.000 classes.py:64(<genexpr>)
1 0.002 0.002 0.004 0.004 cbook.py:7(<module>)
381 0.002 0.000 0.002 0.000 {method 'join' of 'unicode' objects}
1 0.002 0.002 0.007 0.007 index_tricks.py:1(<module>)
1 0.002 0.002 0.004 0.004 argparse.py:62(<module>)
666 0.002 0.000 0.002 0.000 string.py:158(convert)
184 0.002 0.000 0.014 0.000 cbook.py:1118(dedent)
1 0.002 0.002 0.005 0.005 npyio.py:1(<module>)
710 0.002 0.000 0.002 0.000 {hasattr}
90 0.002 0.000 0.002 0.000 rcsetup.py:77(validate_bool)
1 0.002 0.002 0.009 0.009 urllib2.py:76(<module>)
34 0.002 0.000 0.002 0.000 {method 'flush' of 'file' objects}
1 0.002 0.002 0.005 0.005 core.py:21(<module>)
1 0.001 0.001 0.002 0.002 collections.py:1(<module>)
409 0.001 0.000 0.001 0.000 {method 'mro' of 'type' objects}
1 0.001 0.001 0.003 0.003 mimetools.py:1(<module>)
130 0.001 0.000 0.001 0.000 pyparsing.py:807(__init__)
834 0.001 0.000 0.002 0.000 copy_reg.py:46(_reconstructor)
2 0.001 0.001 0.003 0.001 function_base.py:1(<module>)
1 0.001 0.001 0.016 0.016 decimal.py:116(<module>)
1014 0.001 0.000 0.002 0.000 sre_parse.py:138(append)
278 0.001 0.000 0.002 0.000 sre_compile.py:354(_simple)
87 0.001 0.000 0.131 0.002 sre_compile.py:493(compile)
65 0.001 0.000 0.002 0.000 {method '__reduce_ex__' of 'object' objects}
1 0.001 0.001 0.025 0.025 classes.py:579(add_pml_domains)
1355 0.001 0.000 0.002 0.000 sre_parse.py:126(__len__)
23 0.001 0.000 0.013 0.001 classes.py:84(__init__)
1 0.001 0.001 0.016 0.016 __init__.py:7(<module>)
874 0.001 0.000 0.001 0.000 classes.py:156(neighbours)
34 0.001 0.000 0.024 0.001 classes.py:695(apply_pml_matrices)
6 0.001 0.000 0.004 0.001 patches.py:1703(_pprint_styles)
1 0.001 0.001 0.003 0.003 colors.py:48(<module>)
689 0.001 0.000 0.001 0.000 {method 'split' of 'str' objects}
1 0.001 0.001 0.002 0.002 six.py:1(<module>)
87 0.001 0.000 0.065 0.001 sre_parse.py:675(parse)
1 0.001 0.001 0.002 0.002 _mathtext_data.py:3(<module>)
1 0.001 0.001 0.001 0.001 triangulation.py:1(<module>)
1 0.001 0.001 0.003 0.003 pickle.py:25(<module>)
1 0.001 0.001 0.004 0.004 httplib.py:67(<module>)
485 0.001 0.000 0.001 0.000 urlparse.py:332(<genexpr>)
485 0.001 0.000 0.001 0.000 urllib.py:1206(<genexpr>)
1 0.001 0.001 0.054 0.054 inspect.py:25(<module>)
254/252 0.001 0.000 0.001 0.000 pyparsing.py:283(__init__)
1 0.001 0.001 0.003 0.003 parser.py:16(<module>)
1163 0.001 0.000 0.001 0.000 {method 'strip' of 'unicode' objects}
1 0.001 0.001 0.001 0.001 backend_agg.py:21(<module>)
1 0.001 0.001 0.002 0.002 io.py:34(<module>)
759 0.001 0.000 0.001 0.000 {range}
699 0.001 0.000 0.001 0.000 sre_parse.py:90(__init__)
1 0.001 0.001 0.103 0.103 figureoptions.py:8(<module>)
409 0.001 0.000 0.001 0.000 artist.py:1001(aliased_name)
1 0.001 0.001 0.002 0.002 tz.py:9(<module>)
1408 0.001 0.000 0.001 0.000 {method 'group' of '_sre.SRE_Match' objects}
78/14 0.001 0.000 0.012 0.001 pyparsing.py:2358(parseImpl)
1373 0.001 0.000 0.001 0.000 {method 'get' of 'dict' objects}
8 0.001 0.000 0.015 0.002 __init__.py:840(__init__)
65 0.001 0.000 0.002 0.000 copy.py:306(_reconstruct)
1 0.001 0.001 0.003 0.003 pyplot.py:1781(get_plot_commands)
322 0.001 0.000 0.001 0.000 {method 'format' of 'str' objects}
1 0.001 0.001 0.003 0.003 axis.py:3(<module>)
1 0.001 0.001 0.001 0.001 arrayprint.py:5(<module>)
1 0.001 0.001 0.003 0.003 numerictypes.py:82(<module>)
55 0.001 0.000 0.002 0.000 classes.py:57(__add__)
1 0.001 0.001 0.010 0.010 lines.py:4(<module>)
35 0.001 0.000 0.001 0.000 {method 'reduce' of 'numpy.ufunc' objects}
1 0.001 0.001 0.006 0.006 ctypeslib.py:51(<module>)
10 0.001 0.000 0.004 0.000 colors.py:750(from_list)
1 0.001 0.001 0.001 0.001 errors.py:9(<module>)
1 0.001 0.001 0.001 0.001 scale.py:1(<module>)
1 0.001 0.001 0.001 0.001 offsetbox.py:15(<module>)
6 0.001 0.000 0.001 0.000 patches.py:1666(_pprint_table)
1 0.001 0.001 0.005 0.005 mlab.py:176(<module>)
165 0.001 0.000 0.004 0.000 classes.py:63(__repr__)
1 0.001 0.001 0.001 0.001 calendar.py:6(<module>)
1 0.001 0.001 0.001 0.001 __init__.py:10(<module>)
1 0.001 0.001 0.002 0.002 patches.py:2965(ArrowStyle)
724 0.001 0.000 0.001 0.000 inspect.py:142(isfunction)
1 0.001 0.001 0.111 0.111 backend_qt4agg.py:3(<module>)
524 0.001 0.000 0.001 0.000 inspect.py:67(ismethod)
174 0.001 0.000 0.005 0.000 colors.py:214(is_color_like)
50 0.001 0.000 0.002 0.000 colors.py:334(to_rgba)
18 0.001 0.000 0.003 0.000 cbook.py:189(deprecate)
38/31 0.001 0.000 0.002 0.000 abc.py:148(__subclasscheck__)
185 0.001 0.000 0.001 0.000 sre_parse.py:257(_escape)
54 0.001 0.000 0.004 0.000 classes.py:128(__repr__)
55 0.001 0.000 0.001 0.000 {posix.stat}
1 0.001 0.001 0.084 0.084 add_newdocs.py:10(<module>)
1 0.001 0.001 0.002 0.002 patches.py:1792(BoxStyle)
144 0.001 0.000 0.001 0.000 colors.py:502(__init__)
1 0.001 0.001 0.003 0.003 result.py:1(<module>)
524 0.001 0.000 0.001 0.000 <string>:8(__new__)
36 0.001 0.000 0.004 0.000 main_kernel.py:48(ConsoleOutput)
1 0.001 0.001 0.001 0.001 legend_handler.py:26(<module>)
1 0.001 0.001 0.001 0.001 defmatrix.py:1(<module>)
1769 0.001 0.000 0.001 0.000 {chr}
6 0.001 0.000 0.001 0.000 function_base.py:1077(angle)
1 0.001 0.001 0.039 0.039 pstd.py:65(__load_config)
12 0.001 0.000 0.001 0.000 classes.py:255(decompose)
1 0.001 0.001 0.002 0.002 threading.py:1(<module>)
11 0.001 0.000 0.002 0.000 abc.py:86(__new__)
450 0.001 0.000 0.001 0.000 {method 'replace' of 'unicode' objects}
1 0.001 0.001 0.001 0.001 csv.py:4(<module>)
87 0.001 0.000 0.064 0.001 sre_compile.py:478(_code)
18 0.001 0.000 0.005 0.000 classes.py:144(calc_rho_matrices)
158 0.001 0.000 0.001 0.000 cbook.py:681(is_string_like)
144 0.001 0.000 0.001 0.000 colors.py:676(__init__)
1 0.001 0.001 0.043 0.043 tokenize.py:23(<module>)
94 0.001 0.000 0.012 0.000 docstring.py:113(dedent_interpd)
1 0.001 0.001 0.006 0.006 ConfigParser.py:88(<module>)
1 0.001 0.001 0.007 0.007 urlparse.py:29(<module>)
524 0.001 0.000 0.001 0.000 inspect.py:209(iscode)
87 0.001 0.000 0.001 0.000 {_sre.compile}
165 0.001 0.000 0.001 0.000 {method 'update' of 'dict' objects}
1 0.001 0.001 0.008 0.008 __init__.py:99(<module>)
126 0.001 0.000 0.005 0.000 rcsetup.py:237(validate_color)
254 0.001 0.000 0.001 0.000 pyparsing.py:274(__new__)
65 0.001 0.000 0.004 0.000 copy.py:66(copy)
1341 0.001 0.000 0.001 0.000 _mathtext_data.py:1770(<genexpr>)
41 0.001 0.000 0.002 0.000 pyparsing.py:2234(__init__)
260 0.001 0.000 0.001 0.000 pyplot.py:2106(pad)
13 0.001 0.000 0.002 0.000 path.py:103(__init__)
1 0.001 0.001 0.001 0.001 tempfile.py:18(<module>)
174 0.001 0.000 0.012 0.000 docstring.py:94(dedent)
192/114 0.001 0.000 0.006 0.000 {repr}
342 0.001 0.000 0.001 0.000 {method 'strip' of 'str' objects}
144 0.001 0.000 0.005 0.000 cm.py:64(_generate_cmap)
1 0.001 0.001 0.001 0.001 shutil.py:5(<module>)
1 0.001 0.001 0.001 0.001 utils.py:4(<module>)
1 0.001 0.001 0.016 0.016 text.py:3(<module>)
42 0.001 0.000 0.001 0.000 colors.py:231(hex2color)
63 0.001 0.000 0.001 0.000 posixpath.py:68(join)
1 0.001 0.001 0.001 0.001 extras.py:10(<module>)
1 0.001 0.001 0.001 0.001 hashlib.py:55(<module>)
1 0.001 0.001 0.001 0.001 image.py:5(<module>)
3 0.001 0.000 0.001 0.000 classes.py:703(<lambda>)
1 0.000 0.000 0.001 0.001 ConfigParser.py:464(_read)
1 0.000 0.000 0.000 0.000 functions.py:20(<module>)
1 0.000 0.000 0.000 0.000 ssl.py:196(SSLSocket)
31 0.000 0.000 0.001 0.000 _inspect.py:159(formatargspec)
147 0.000 0.000 0.001 0.000 inspect.py:472(getmodule)
3 0.000 0.000 0.001 0.000 numeric.py:1682(indices)
1 0.000 0.000 0.001 0.001 dviread.py:20(<module>)
423 0.000 0.000 0.001 0.000 collections.py:329(<genexpr>)
1 0.000 0.000 0.003 0.003 encoder.py:2(<module>)
1 0.000 0.000 0.003 0.003 scanner.py:2(<module>)
1 0.000 0.000 0.001 0.001 polar.py:1(<module>)
1 0.000 0.000 0.001 0.001 quiver.py:15(<module>)
1280 0.000 0.000 0.000 0.000 {ord}
174 0.000 0.000 0.001 0.000 sre_compile.py:472(isstring)
60 0.000 0.000 0.001 0.000 classes.py:422(__repr__)
1 0.000 0.000 0.001 0.001 runner.py:1(<module>)
3 0.000 0.000 0.001 0.000 numeric.py:346(extend_all)
1 0.000 0.000 0.000 0.000 subprocess.py:387(<module>)
7 0.000 0.000 0.008 0.001 pyparsing.py:1695(__init__)
40 0.000 0.000 0.001 0.000 pyparsing.py:1846(parseImpl)
16 0.000 0.000 0.001 0.000 posixpath.py:336(normpath)
30/4 0.000 0.000 0.001 0.000 pyparsing.py:2292(streamline)
1675 0.000 0.000 0.000 0.000 {callable}
1245 0.000 0.000 0.000 0.000 sre_compile.py:24(_identityfunction)
1 0.000 0.000 0.000 0.000 heapq.py:31(<module>)
136 0.000 0.000 0.000 0.000 pyparsing.py:938(preParse)
24 0.000 0.000 0.001 0.000 pyparsing.py:1573(__init__)
1 0.000 0.000 0.001 0.001 derived_config.py:27(__init__)
7 0.000 0.000 0.000 0.000 {method 'close' of 'file' objects}
1 0.000 0.000 0.001 0.001 numerictypes.py:304(_add_aliases)
1 0.000 0.000 0.000 0.000 util.py:35(<module>)
1 0.000 0.000 0.001 0.001 geo.py:1(<module>)
35 0.000 0.000 0.001 0.000 pyparsing.py:2607(__init__)
1 0.000 0.000 0.005 0.005 decoder.py:2(<module>)
1 0.000 0.000 0.000 0.000 streamplot.py:4(<module>)
1 0.000 0.000 0.040 0.040 type_check.py:3(<module>)
1 0.000 0.000 0.000 0.000 _iotools.py:3(<module>)
1 0.000 0.000 0.001 0.001 random.py:40(<module>)
1 0.000 0.000 0.001 0.001 process.py:35(<module>)
61/58 0.000 0.000 0.001 0.000 pyparsing.py:109(_ustr)
1 0.000 0.000 0.000 0.000 fftpack.py:32(<module>)
16 0.000 0.000 0.020 0.001 pyparsing.py:1812(__init__)
22 0.000 0.000 0.001 0.000 {sorted}
1 0.000 0.000 0.001 0.001 legend.py:106(Legend)
1 0.000 0.000 0.005 0.005 sysconfig.py:10(<module>)
26 0.000 0.000 0.001 0.000 numerictypes.py:232(bitname)
4 0.000 0.000 0.000 0.000 {posix.open}
34 0.000 0.000 0.002 0.000 pyparsing.py:2351(__init__)
1 0.000 0.000 0.006 0.006 polynomial.py:4(<module>)
1 0.000 0.000 0.001 0.001 main.py:1(<module>)
1 0.000 0.000 0.001 0.001 opcode.py:5(<module>)
24/12 0.000 0.000 0.004 0.000 pyparsing.py:2478(parseImpl)
1 0.000 0.000 0.000 0.000 gridspec.py:382(SubplotSpec)
6 0.000 0.000 0.000 0.000 function_base.py:8(linspace)
116 0.000 0.000 0.000 0.000 sre_parse.py:72(opengroup)
11 0.000 0.000 0.068 0.006 artist.py:1322(kwdoc)
99 0.000 0.000 0.001 0.000 sre_parse.py:225(_class_escape)
1 0.000 0.000 0.000 0.000 text.py:149(Text)
150 0.000 0.000 0.001 0.000 {all}
1 0.000 0.000 0.006 0.006 _internal.py:6(<module>)
89 0.000 0.000 0.001 0.000 six.py:482(iteritems)
1 0.000 0.000 0.000 0.000 transforms.py:1488(TransformWrapper)
12 0.000 0.000 0.001 0.000 classes.py:249(get_detached)
96 0.000 0.000 0.132 0.001 re.py:188(compile)
270 0.000 0.000 0.000 0.000 {numpy.lib._compiled_base.add_docstring}
48 0.000 0.000 0.000 0.000 rcsetup.py:279(validate_stringlist)
22 0.000 0.000 0.002 0.000 classes.py:404(__init__)
63/6 0.000 0.000 0.000 0.000 derived_config.py:54(<lambda>)
22 0.000 0.000 0.001 0.000 classes.py:61(__lt__)
65 0.000 0.000 0.005 0.000 pyparsing.py:830(copy)
13 0.000 0.000 0.001 0.000 path.py:199(_update_values)
1 0.000 0.000 0.001 0.001 dis.py:1(<module>)
1 0.000 0.000 0.001 0.001 patches.py:2483(ConnectionStyle)
128 0.000 0.000 0.000 0.000 {method 'split' of 'unicode' objects}
88 0.000 0.000 0.001 0.000 sre_parse.py:178(__init__)
24 0.000 0.000 0.001 0.000 functools.py:17(update_wrapper)
1 0.000 0.000 0.001 0.001 triinterpolate.py:3(<module>)
31 0.000 0.000 0.000 0.000 _inspect.py:61(getargs)
1 0.000 0.000 0.001 0.001 __init__.py:265(_reset_cache)
54 0.000 0.000 0.004 0.000 pyplot.py:2409(<lambda>)
426 0.000 0.000 0.000 0.000 {method 'lower' of 'unicode' objects}
70 0.000 0.000 0.001 0.000 classes.py:158(is_neighbour_of)
1 0.000 0.000 0.000 0.000 polyutils.py:33(<module>)
1 0.000 0.000 0.000 0.000 fromnumeric.py:3(<module>)
1 0.000 0.000 0.000 0.000 blocking_input.py:23(<module>)
1 0.000 0.000 0.000 0.000 base64.py:3(<module>)
1 0.000 0.000 0.001 0.001 kcalc.py:32(calc)
1 0.000 0.000 0.000 0.000 _pylab_helpers.py:3(<module>)
15 0.000 0.000 0.003 0.000 classes.py:164(calc_pml)
1 0.000 0.000 0.000 0.000 container.py:1(<module>)
65 0.000 0.000 0.000 0.000 __init__.py:871(__getitem__)
18 0.000 0.000 0.001 0.000 classes.py:59(__sub__)
9 0.000 0.000 0.000 0.000 {open}
79 0.000 0.000 0.005 0.000 docstring.py:128(<lambda>)
1 0.000 0.000 0.000 0.000 decoder.py:372(raw_decode)
39 0.000 0.000 0.001 0.000 genericpath.py:15(exists)
200 0.000 0.000 0.000 0.000 colors.py:363(<genexpr>)
1 0.000 0.000 0.001 0.001 gridspec.py:15(<module>)
1 0.000 0.000 0.000 0.000 Image.py:447(Image)
19 0.000 0.000 0.000 0.000 rcsetup.py:42(__init__)
51 0.000 0.000 0.001 0.000 _weakrefset.py:58(__iter__)
17 0.000 0.000 0.000 0.000 {numpy.core.multiarray.arange}
17 0.000 0.000 0.000 0.000 pyparsing.py:1859(__str__)
55 0.000 0.000 0.001 0.000 abc.py:128(__instancecheck__)
51 0.000 0.000 0.000 0.000 _weakrefset.py:36(__init__)
81 0.000 0.000 0.000 0.000 cbook.py:672(iterable)
1 0.000 0.000 0.001 0.001 ssl.py:56(<module>)
1 0.000 0.000 0.000 0.000 relativedelta.py:41(relativedelta)
1 0.000 0.000 0.000 0.000 backend_qt4.py:1(<module>)
1 0.000 0.000 0.000 0.000 records.py:36(<module>)
209 0.000 0.000 0.000 0.000 {setattr}
278 0.000 0.000 0.000 0.000 sre_parse.py:134(__setitem__)
1 0.000 0.000 0.003 0.003 format.py:136(<module>)
105 0.000 0.000 0.000 0.000 _weakrefset.py:70(__contains__)
23 0.000 0.000 0.002 0.000 core.py:5997(getdoc)
1 0.000 0.000 0.000 0.000 core.py:2250(_MaskedPrintOption)
19 0.000 0.000 0.001 0.000 nosetester.py:140(__init__)
54 0.000 0.000 0.000 0.000 six.py:474(iterkeys)
27 0.000 0.000 0.000 0.000 core.py:822(__init__)
3 0.000 0.000 0.000 0.000 __init__.py:78(CFUNCTYPE)
1 0.000 0.000 0.000 0.000 mlab.py:3079(FormatFormatStr)
14 0.000 0.000 0.000 0.000 __init__.py:147(_check_size)
6 0.000 0.000 0.019 0.003 __init__.py:1055(rc_params_from_file)
1 0.000 0.000 0.006 0.006 _axes.py:51(Axes)
30 0.000 0.000 0.000 0.000 sre_parse.py:216(isname)
1 0.000 0.000 0.000 0.000 suite.py:1(<module>)
3 0.000 0.000 0.001 0.000 gettext.py:421(find)
72 0.000 0.000 0.003 0.000 cm.py:51(_reverse_cmap_spec)
23 0.000 0.000 0.004 0.000 classes.py:139(clear_matrices)
1 0.000 0.000 0.000 0.000 _cm.py:6(<module>)
116 0.000 0.000 0.000 0.000 sre_parse.py:83(closegroup)
14 0.000 0.000 0.001 0.000 _abcoll.py:526(update)
1 0.000 0.000 0.001 0.001 utils.py:1(<module>)
48 0.000 0.000 0.001 0.000 pyparsing.py:776(wrapper)
284 0.000 0.000 0.000 0.000 {iter}
118 0.000 0.000 0.002 0.000 re.py:134(match)
126 0.000 0.000 0.000 0.000 {method 'items' of 'dict' objects}
38 0.000 0.000 0.000 0.000 {method 'write' of 'file' objects}
19 0.000 0.000 0.000 0.000 {method 'sort' of 'list' objects}
54 0.000 0.000 0.000 0.000 pyplot.py:2404(_autogen_docstring)
1 0.000 0.000 0.000 0.000 _datasource.py:33(<module>)
26 0.000 0.000 0.001 0.000 classes.py:211(check)
10 0.000 0.000 0.001 0.000 collections.py:38(__init__)
1 0.000 0.000 0.004 0.004 table.py:21(<module>)
34 0.000 0.000 0.002 0.000 pyparsing.py:1226(__add__)
25 0.000 0.000 0.040 0.002 {map}
1 0.000 0.000 0.000 0.000 _endian.py:4(<module>)
1 0.000 0.000 0.000 0.000 mathtext.py:2042(Parser)
40 0.000 0.000 0.001 0.000 _inspect.py:120(getargspec)
1 0.000 0.000 0.000 0.000 defchararray.py:17(<module>)
23 0.000 0.000 0.000 0.000 posixpath.py:127(dirname)
1 0.000 0.000 0.000 0.000 hex_codec.py:8(<module>)
1 0.000 0.000 0.000 0.000 contextlib.py:1(<module>)
18 0.000 0.000 0.000 0.000 cbook.py:53(_generate_deprecation_message)
1 0.000 0.000 0.007 0.007 pyparsing.py:3442(_makeTags)
1 0.000 0.000 0.000 0.000 bezier.py:3(<module>)
40 0.000 0.000 0.002 0.000 core.py:109(get_object_signature)
1 0.000 0.000 0.000 0.000 relativedelta.py:2(<module>)
170 0.000 0.000 0.000 0.000 {method 'extend' of 'list' objects}
1 0.000 0.000 0.000 0.000 formsubplottool.py:7(<module>)
55 0.000 0.000 0.001 0.000 docstring.py:88(__call__)
87 0.000 0.000 0.000 0.000 sre_parse.py:67(__init__)
24 0.000 0.000 0.002 0.000 pyparsing.py:2729(parseImpl)
6 0.000 0.000 0.000 0.000 gettext.py:130(_expand_lang)
25 0.000 0.000 0.000 0.000 artist.py:33(allow_rasterization)
68 0.000 0.000 0.000 0.000 six.py:139(__init__)
11 0.000 0.000 0.016 0.001 artist.py:883(__init__)
12 0.000 0.000 0.000 0.000 ctypeslib.py:311(prep_simple)
13 0.000 0.000 0.000 0.000 {method 'round' of 'numpy.ndarray' objects}
26 0.000 0.000 0.004 0.000 pyparsing.py:2814(parseImpl)
1 0.000 0.000 0.000 0.000 derived_config.py:20(<module>)
1 0.000 0.000 0.000 0.000 signals.py:1(<module>)
1 0.000 0.000 0.000 0.000 core.py:2572(MaskedArray)
30 0.000 0.000 0.000 0.000 numerictypes.py:450(_add_array_type)
38 0.000 0.000 0.000 0.000 {zip}
98/72 0.000 0.000 0.001 0.000 {issubclass}
1 0.000 0.000 0.001 0.001 loader.py:1(<module>)
5 0.000 0.000 0.002 0.000 argparse.py:1252(add_argument)
52 0.000 0.000 0.000 0.000 abc.py:89(<genexpr>)
14/10 0.000 0.000 0.002 0.000 __init__.py:324(wrapper)
1 0.000 0.000 0.000 0.000 gzip.py:4(<module>)
12 0.000 0.000 0.000 0.000 __init__.py:974(_open_file_or_url)
6 0.000 0.000 0.000 0.000 version.py:268(parse)
54 0.000 0.000 0.001 0.000 pyparsing.py:1540(__init__)
1 0.000 0.000 0.000 0.000 docstring.py:1(<module>)
10 0.000 0.000 0.000 0.000 posixpath.py:258(expanduser)
14 0.000 0.000 0.013 0.001 pyparsing.py:1084(parseString)
201 0.000 0.000 0.000 0.000 __init__.py:833(<genexpr>)
1 0.000 0.000 0.003 0.003 version.py:27(<module>)
1 0.000 0.000 0.000 0.000 scimath.py:17(<module>)
20 0.000 0.000 0.000 0.000 pyparsing.py:1749(parseImpl)
1 0.000 0.000 0.006 0.006 fontconfig_pattern.py:74(__init__)
4 0.000 0.000 0.003 0.001 __init__.py:580(_get_config_or_cache_dir)
1 0.000 0.000 0.000 0.000 trirefine.py:3(<module>)
18 0.000 0.000 0.000 0.000 {method 'findall' of '_sre.SRE_Pattern' objects}
1 0.000 0.000 0.000 0.000 numerictypes.py:787(_construct_lookups)
3 0.000 0.000 0.000 0.000 __init__.py:493(PYFUNCTYPE)
293 0.000 0.000 0.000 0.000 {method 'add' of 'set' objects}
21 0.000 0.000 0.000 0.000 numerictypes.py:219(_evalname)
1 0.000 0.000 0.000 0.000 numerictypes.py:288(_add_types)
45 0.000 0.000 0.000 0.000 collections.py:54(__setitem__)
1 0.000 0.000 0.002 0.002 markers.py:97(MarkerStyle)
18 0.000 0.000 0.001 0.000 textwrap.py:374(dedent)
56 0.000 0.000 0.000 0.000 pyparsing.py:1592(parseImpl)
1 0.000 0.000 0.002 0.002 markers.py:78(<module>)
1 0.000 0.000 0.000 0.000 _import_tools.py:1(<module>)
74 0.000 0.000 0.000 0.000 _inspect.py:152(strseq)
13 0.000 0.000 0.000 0.000 fromnumeric.py:38(_wrapit)
7 0.000 0.000 0.004 0.001 rcsetup.py:270(validate_colorlist)
1 0.000 0.000 0.000 0.000 trifinder.py:1(<module>)
1 0.000 0.000 0.001 0.001 _base.py:318(_AxesBase)
1 0.000 0.000 0.001 0.001 path.py:13(<module>)
147 0.000 0.000 0.000 0.000 inspect.py:51(ismodule)
72 0.000 0.000 0.000 0.000 pyparsing.py:171(__init__)
8/4 0.000 0.000 0.002 0.001 pyparsing.py:2261(leaveWhitespace)
7 0.000 0.000 0.000 0.000 parser.py:262(_convert)
5 0.000 0.000 0.001 0.000 argparse.py:154(__init__)
121 0.000 0.000 0.000 0.000 {method 'remove' of 'list' objects}
129 0.000 0.000 0.006 0.000 classes.py:504(<genexpr>)
1 0.000 0.000 0.000 0.000 memmap.py:1(<module>)
52 0.000 0.000 0.000 0.000 pyparsing.py:318(__getitem__)
1 0.000 0.000 0.000 0.000 getlimits.py:3(<module>)
1 0.000 0.000 0.002 0.002 difflib.py:27(<module>)
15/9 0.000 0.000 0.003 0.000 pyparsing.py:2334(copy)
18 0.000 0.000 0.000 0.000 core.py:902(__init__)
1 0.000 0.000 0.000 0.000 numerictypes.py:345(_add_integer_aliases)
165 0.000 0.000 0.000 0.000 {_sre.getlower}
1 0.000 0.000 0.000 0.000 spines.py:1(<module>)
62 0.000 0.000 0.000 0.000 {any}
3 0.000 0.000 0.000 0.000 decimal.py:3782(__init__)
216 0.000 0.000 0.000 0.000 {method 'end' of '_sre.SRE_Match' objects}
47 0.000 0.000 0.000 0.000 docstring.py:48(update)
80 0.000 0.000 0.000 0.000 docstring.py:102(do_copy)
76 0.000 0.000 0.000 0.000 rcsetup.py:103(validate_float)
1 0.000 0.000 0.000 0.000 __init__.py:824(RcParams)
65 0.000 0.000 0.000 0.000 copy_reg.py:92(__newobj__)
1 0.000 0.000 0.000 0.000 six.py:539(exec_)
16 0.000 0.000 0.000 0.000 pyparsing.py:486(__iadd__)
2 0.000 0.000 0.000 0.000 {_ctypes.POINTER}
67 0.000 0.000 0.000 0.000 {method 'replace' of 'str' objects}
4 0.000 0.000 0.000 0.000 {posix.unlink}
9 0.000 0.000 0.000 0.000 pyparsing.py:1784(__str__)
1 0.000 0.000 0.000 0.000 triinterpolate.py:610(_ReducedHCT_Element)
1 0.000 0.000 0.000 0.000 functions.py:141(kcalc)
4 0.000 0.000 0.000 0.000 tempfile.py:135(next)
1 0.000 0.000 0.000 0.000 geo.py:251(AitoffAxes)
70 0.000 0.000 0.000 0.000 pyparsing.py:366(__bool__)
1 0.000 0.000 0.000 0.000 <string>:2(<module>)
1 0.000 0.000 0.000 0.000 units.py:44(<module>)
1 0.000 0.000 0.000 0.000 lines.py:188(Line2D)
24 0.000 0.000 0.000 0.000 _weakrefset.py:26(__exit__)
3 0.000 0.000 0.000 0.000 {posix.urandom}
1 0.000 0.000 0.000 0.000 kcalc.py:20(<module>)
160 0.000 0.000 0.000 0.000 sre_parse.py:210(isident)
24 0.000 0.000 0.000 0.000 functools.py:39(wraps)
14 0.000 0.000 0.001 0.000 abc.py:105(register)
38 0.000 0.000 0.000 0.000 _weakrefset.py:83(add)
82 0.000 0.000 0.000 0.000 pyparsing.py:2243(<genexpr>)
22 0.000 0.000 0.001 0.000 _methods.py:31(_any)
32 0.000 0.000 0.000 0.000 {method 'groupdict' of '_sre.SRE_Match' objects}
1 0.000 0.000 0.000 0.000 tritools.py:3(<module>)
1 0.000 0.000 0.000 0.000 socket.py:179(_socketobject)
12 0.000 0.000 0.000 0.000 pyparsing.py:3353(<lambda>)
5 0.000 0.000 0.000 0.000 argparse.py:573(_format_args)
1 0.000 0.000 0.003 0.003 texmanager.py:35(<module>)
72 0.000 0.000 0.000 0.000 pyparsing.py:1431(setWhitespaceChars)
23 0.000 0.000 0.002 0.000 core.py:5992(__init__)
3 0.000 0.000 0.001 0.000 argparse.py:1171(__init__)
4 0.000 0.000 0.003 0.001 warnings.py:45(filterwarnings)
1 0.000 0.000 0.000 0.000 geo.py:410(MollweideAxes)
1 0.000 0.000 0.002 0.002 numbers.py:6(<module>)
12 0.000 0.000 0.009 0.001 fontconfig_pattern.py:122(parse)
119 0.000 0.000 0.000 0.000 opcode.py:27(def_op)
1 0.000 0.000 0.001 0.001 path.py:990(_define_deprecated_functions)
109 0.000 0.000 0.000 0.000 six.py:82(__init__)
152 0.000 0.000 0.000 0.000 {method 'find' of 'unicode' objects}
1 0.000 0.000 0.000 0.000 token.py:1(<module>)
9 0.000 0.000 0.001 0.000 six.py:85(__get__)
1 0.000 0.000 0.000 0.000 decimal.py:506(Decimal)
6 0.000 0.000 0.000 0.000 {method 'split' of '_sre.SRE_Pattern' objects}
4 0.000 0.000 0.001 0.000 ConfigParser.py:625(items)
45 0.000 0.000 0.000 0.000 rcsetup.py:54(__call__)
21 0.000 0.000 0.000 0.000 rcsetup.py:472(__call__)
1 0.000 0.000 0.000 0.000 geo.py:330(HammerAxes)
126 0.000 0.000 0.000 0.000 {method 'ljust' of 'unicode' objects}
12 0.000 0.000 0.000 0.000 copy_reg.py:95(_slotnames)
3 0.000 0.000 0.001 0.000 numeric.py:1755(fromfunction)
9 0.000 0.000 0.001 0.000 __init__.py:504(_get_home)
19/7 0.000 0.000 0.001 0.000 pyparsing.py:2647(streamline)
72 0.000 0.000 0.000 0.000 numerictypes.py:130(english_lower)
4 0.000 0.000 0.001 0.000 tempfile.py:230(_mkstemp_inner)
1 0.000 0.000 27.931 27.931 pstd.py:117(run)
34 0.000 0.000 0.000 0.000 argparse.py:1223(register)
1 0.000 0.000 0.000 0.000 arrayterator.py:9(<module>)
54 0.000 0.000 0.000 0.000 pyparsing.py:401(haskeys)
6 0.000 0.000 0.001 0.000 core.py:113(iter_style_files)
13 0.000 0.000 0.000 0.000 pyparsing.py:885(setParseAction)
187 0.000 0.000 0.000 0.000 pyparsing.py:1698(<genexpr>)
4 0.000 0.000 0.002 0.001 __init__.py:220(_is_writable_dir)
55 0.000 0.000 0.000 0.000 collections.py:355(<genexpr>)
55 0.000 0.000 0.000 0.000 collections.py:353(<genexpr>)
87 0.000 0.000 0.000 0.000 pyparsing.py:1481(streamline)
1 0.000 0.000 0.000 0.000 scale.py:521(get_scale_docs)
1 0.000 0.000 0.000 0.000 axis.py:611(Axis)
24 0.000 0.000 0.000 0.000 random.py:271(choice)
1 0.000 0.000 0.000 0.000 geo.py:23(GeoAxes)
1 0.000 0.000 0.000 0.000 nosetester.py:6(<module>)
44 0.000 0.000 0.000 0.000 {method 'readline' of 'file' objects}
29 0.000 0.000 0.000 0.000 pyparsing.py:1475(__str__)
1 0.000 0.000 0.000 0.000 {posix.listdir}
1 0.000 0.000 0.000 0.000 image.py:35(_AxesImageBase)
67 0.000 0.000 0.000 0.000 core.py:5705(isMaskedArray)
120 0.000 0.000 0.000 0.000 rcsetup.py:47(func)
8 0.000 0.000 0.000 0.000 {fcntl.fcntl}
1 0.000 0.000 0.000 0.000 geo.py:510(LambertAxes)
4 0.000 0.000 0.000 0.000 {posix.fdopen}
34 0.000 0.000 0.000 0.000 classes.py:799(write_to_file)
1 0.000 0.000 0.000 0.000 machar.py:7(<module>)
1 0.000 0.000 0.000 0.000 __init__.py:349(__init__)
1 0.000 0.000 0.011 0.011 core.py:1(<module>)
1 0.000 0.000 0.000 0.000 os.py:35(_get_exports_list)
12 0.000 0.000 0.001 0.000 fontconfig_pattern.py:141(_family)
20/6 0.000 0.000 0.004 0.001 pyparsing.py:2622(parseImpl)
1 0.000 0.000 0.000 0.000 _subplots.py:161(subplot_class_factory)
1 0.000 0.000 0.000 0.000 parser.py:338(parser)
1 0.000 0.000 0.000 0.000 {numpy.fft.fftpack_lite.cffti}
1 0.000 0.000 0.000 0.000 path.py:31(Path)
7 0.000 0.000 0.000 0.000 pyparsing.py:2809(__init__)
41 0.000 0.000 0.000 0.000 six.py:95(__init__)
368 0.000 0.000 0.000 0.000 {method 'isalnum' of 'str' objects}
2 0.000 0.000 0.000 0.000 shape_base.py:1(<module>)
1 0.000 0.000 0.000 0.000 defchararray.py:1668(chararray)
1 0.000 0.000 0.009 0.009 fontconfig_pattern.py:7(<module>)
24 0.000 0.000 0.000 0.000 _weakrefset.py:20(__enter__)
1 0.000 0.000 0.001 0.001 figure.py:237(Figure)
22 0.000 0.000 0.001 0.000 {method 'any' of 'numpy.ndarray' objects}
7 0.000 0.000 0.001 0.000 pyparsing.py:2471(__init__)
12 0.000 0.000 0.000 0.000 classes.py:658(key_func)
1 0.000 0.000 0.000 0.000 collections.py:36(Collection)
6 0.000 0.000 0.000 0.000 contextlib.py:21(__exit__)
1 0.000 0.000 0.003 0.003 classes.py:691(calc_pml_matrices)
1 0.000 0.000 0.000 0.000 __init__.py:249(Verbose)
1 0.000 0.000 0.000 0.000 stride_tricks.py:7(<module>)
119 0.000 0.000 0.000 0.000 {method 'translate' of 'str' objects}
182 0.000 0.000 0.000 0.000 {method 'start' of '_sre.SRE_Match' objects}
12 0.000 0.000 0.000 0.000 fontconfig_pattern.py:153(_families)
51 0.000 0.000 0.000 0.000 sre_compile.py:51(fixup)
4 0.000 0.000 0.000 0.000 argparse.py:1389(_get_optional_kwargs)
97 0.000 0.000 0.000 0.000 pyparsing.py:3376(<genexpr>)
162 0.000 0.000 0.000 0.000 pyparsing.py:953(postParse)
1 0.000 0.000 0.003 0.003 texmanager.py:89(TexManager)
2 0.000 0.000 0.000 0.000 {function seed at 0x7fdee4979d70}
14 0.000 0.000 0.001 0.000 posixpath.py:365(abspath)
3 0.000 0.000 0.001 0.000 __init__.py:118(compare_versions)
1 0.000 0.000 0.000 0.000 parser.py:1013(_result)
80 0.000 0.000 0.000 0.000 docstring.py:100(copy)
13 0.000 0.000 0.000 0.000 pyparsing.py:771(_trim_arity)
1 0.000 0.000 0.006 0.006 fractions.py:4(<module>)
6 0.000 0.000 0.000 0.000 decimal.py:515(__new__)
13 0.000 0.000 0.000 0.000 _methods.py:35(_all)
6 0.000 0.000 0.000 0.000 {filter}
1 0.000 0.000 0.000 0.000 numerictypes.py:458(_set_array_types)
14 0.000 0.000 0.000 0.000 genericpath.py:38(isdir)
23 0.000 0.000 0.000 0.000 __init__.py:335(ge)
41 0.000 0.000 0.000 0.000 classes.py:53(__iter__)
6 0.000 0.000 0.000 0.000 pyparsing.py:3215(_escapeRegexRangeChars)
1 0.000 0.000 0.000 0.000 parser.py:1011(_tzparser)
1 0.000 0.000 0.002 0.002 util.py:1(<module>)
14 0.000 0.000 0.000 0.000 UserDict.py:58(get)
79 0.000 0.000 0.000 0.000 docstring.py:121(copy_dedent)
105 0.000 0.000 0.000 0.000 {unichr}
26 0.000 0.000 0.000 0.000 pyparsing.py:1058(resetCache)
23 0.000 0.000 0.000 0.000 __init__.py:303(report)
2 0.000 0.000 0.000 0.000 getlimits.py:269(max)
95 0.000 0.000 0.000 0.000 pyparsing.py:165(<genexpr>)
89 0.000 0.000 0.000 0.000 {method 'iteritems' of 'dict' objects}
93 0.000 0.000 0.000 0.000 {method 'endswith' of 'str' objects}
2 0.000 0.000 0.003 0.002 pyparsing.py:2764(parseImpl)
1 0.000 0.000 0.000 0.000 formlayout.py:70(ColorButton)
1 0.000 0.000 0.000 0.000 argparse.py:147(HelpFormatter)
5 0.000 0.000 0.000 0.000 scale.py:488(get_scale_names)
1 0.000 0.000 0.000 0.000 FixTk.py:1(<module>)
16 0.000 0.000 0.000 0.000 {method 'setter' of 'property' objects}
1 0.000 0.000 0.032 0.032 font_manager.py:955(pickle_load)
9 0.000 0.000 0.000 0.000 extras.py:245(getdoc)
4 0.000 0.000 0.000 0.000 weakref.py:47(__init__)
1 0.000 0.000 0.000 0.000 numerictypes.py:435(_construct_char_code_lookup)
16 0.000 0.000 0.000 0.000 rcsetup.py:301(validate_fontsize)
72 0.000 0.000 0.000 0.000 collections.py:73(__iter__)
1 0.000 0.000 0.000 0.000 bisect.py:1(<module>)
20 0.000 0.000 0.000 0.000 {method 'keys' of 'dict' objects}
76 0.000 0.000 0.000 0.000 classes.py:153(<genexpr>)
12 0.000 0.000 0.000 0.000 re.py:271(_subx)
40 0.000 0.000 0.000 0.000 _inspect.py:15(ismethod)
1 0.000 0.000 0.000 0.000 rfc822.py:71(<module>)
17 0.000 0.000 0.001 0.000 pyparsing.py:2982(__init__)
1 0.000 0.000 0.001 0.001 pyparsing.py:3223(oneOf)
1 0.000 0.000 0.000 0.000 transforms.py:247(BboxBase)
1 0.000 0.000 0.000 0.000 tricontour.py:1(<module>)
3 0.000 0.000 0.006 0.002 classes.py:503(__repr__)
43 0.000 0.000 0.000 0.000 _inspect.py:163(<lambda>)
43 0.000 0.000 0.000 0.000 {method 'rstrip' of 'str' objects}
55 0.000 0.000 0.000 0.000 docstring.py:84(__init__)
13 0.000 0.000 0.000 0.000 {method 'all' of 'numpy.ndarray' objects}
4 0.000 0.000 0.000 0.000 fontconfig_pattern.py:161(_property)
1 0.000 0.000 0.000 0.000 twodim_base.py:170(eye)
6 0.000 0.000 0.012 0.002 string.py:148(substitute)
6 0.000 0.000 0.000 0.000 core.py:1052(__init__)
2 0.000 0.000 0.000 0.000 random.py:100(seed)
4 0.000 0.000 0.000 0.000 {posix.access}
1 0.000 0.000 0.003 0.003 argparse.py:1545(__init__)
5 0.000 0.000 0.001 0.000 argparse.py:2315(_get_formatter)
2 0.000 0.000 0.000 0.000 getlimits.py:244(__init__)
1 0.000 0.000 0.000 0.000 __init__.py:382(__getitem__)
1 0.000 0.000 0.000 0.000 rrule.py:1071(rruleset)
8 0.000 0.000 0.000 0.000 core.py:7204(getdoc)
63 0.000 0.000 0.000 0.000 {_functools.reduce}
76 0.000 0.000 0.000 0.000 pyparsing.py:2353(<genexpr>)
17 0.000 0.000 0.000 0.000 pyparsing.py:840(setName)
1 0.000 0.000 0.000 0.000 backend_bases.py:1618(FigureCanvasBase)
8/4 0.000 0.000 0.003 0.001 pyparsing.py:2628(leaveWhitespace)
1 0.000 0.000 0.000 0.000 mathtext.py:666(BakomaFonts)
1 0.000 0.000 0.000 0.000 argparse.py:1025(_SubParsersAction)
1 0.000 0.000 0.000 0.000 text.py:1478(_AnnotationBase)
12 0.000 0.000 0.000 0.000 pyparsing.py:1543(setName)
1 0.000 0.000 0.000 0.000 pyparsing.py:2339(And)
33 0.000 0.000 0.000 0.000 {method 'endswith' of 'unicode' objects}
1 0.000 0.000 0.001 0.001 argparse.py:1731(_parse_known_args)
1 0.000 0.000 0.111 0.111 __init__.py:18(pylab_setup)
1 0.000 0.000 0.000 0.000 pickle.py:827(Unpickler)
12 0.000 0.000 0.000 0.000 re.py:251(_compile_repl)
1 0.000 0.000 0.000 0.000 numerictypes.py:386(_set_up_aliases)
4 0.000 0.000 0.000 0.000 tempfile.py:124(rng)
31 0.000 0.000 0.000 0.000 {sys._getframe}
29 0.000 0.000 0.000 0.000 rcsetup.py:121(validate_int)
2 0.000 0.000 0.000 0.000 threading.py:259(__init__)
1 0.000 0.000 0.000 0.000 tz.py:215(tzfile)
1 0.000 0.000 0.000 0.000 transforms.py:769(Bbox)
1 0.000 0.000 0.000 0.000 fractions.py:44(Fraction)
6 0.000 0.000 0.000 0.000 six.py:124(__init__)
1 0.000 0.000 0.005 0.005 classes.py:577(calc_rho_matrices)
6 0.000 0.000 0.000 0.000 pyparsing.py:3376(<lambda>)
7 0.000 0.000 0.001 0.000 pyparsing.py:1337(__or__)
12 0.000 0.000 0.009 0.001 rcsetup.py:313(validate_font_properties)
8 0.000 0.000 0.000 0.000 fontconfig_pattern.py:147(_name)
25 0.000 0.000 0.000 0.000 {method 'rfind' of 'str' objects}
1 0.000 0.000 0.000 0.000 case.py:133(TestCase)
5 0.000 0.000 0.000 0.000 classes.py:642(coord_pairs)
1 0.000 0.000 0.001 0.001 __init__.py:724(matplotlib_fname)
18 0.000 0.000 0.000 0.000 UserDict.py:18(__getitem__)
54 0.000 0.000 0.000 0.000 {method 'iterkeys' of 'dict' objects}
1 0.000 0.000 0.000 0.000 linalg.py:76(_determine_error_states)
2 0.000 0.000 0.000 0.000 utils.py:108(__call__)
94 0.000 0.000 0.000 0.000 pyparsing.py:3457(<genexpr>)
1 0.000 0.000 0.000 0.000 defmatrix.py:206(matrix)
47 0.000 0.000 0.000 0.000 {math.sqrt}
4 0.000 0.000 0.002 0.000 tempfile.py:472(TemporaryFile)
1 0.000 0.000 0.000 0.000 pyparsing.py:789(ParserElement)
1 0.000 0.000 0.000 0.000 _methods.py:5(<module>)
41 0.000 0.000 0.000 0.000 classes.py:51(__len__)
4 0.000 0.000 0.004 0.001 pyparsing.py:3002(__init__)
4 0.000 0.000 0.000 0.000 pyparsing.py:327(__setitem__)
27 0.000 0.000 0.000 0.000 UserDict.py:70(__contains__)
13 0.000 0.000 0.000 0.000 {method 'reshape' of 'numpy.ndarray' objects}
1 0.000 0.000 0.000 0.000 _util.py:1(<module>)
1 0.000 0.000 0.000 0.000 <string>:7(Polynomial)
1 0.000 0.000 0.000 0.000 calendar.py:47(_localized_month)
5 0.000 0.000 0.000 0.000 argparse.py:1309(_add_action)
2 0.000 0.000 0.005 0.002 pyparsing.py:3359(srange)
6 0.000 0.000 0.000 0.000 locale.py:363(normalize)
54 0.000 0.000 0.000 0.000 {method 'ljust' of 'str' objects}
58 0.000 0.000 0.000 0.000 version.py:273(<lambda>)
8 0.000 0.000 0.000 0.000 core.py:7199(__init__)
1 0.000 0.000 0.001 0.001 argparse.py:1696(parse_known_args)
1 0.000 0.000 0.000 0.000 {method 'copy' of 'dict' objects}
9 0.000 0.000 0.000 0.000 six.py:74(_import_module)
7 0.000 0.000 0.001 0.000 pyparsing.py:848(setResultsName)
1 0.000 0.000 0.000 0.000 _iotools.py:466(StringConverter)
18 0.000 0.000 0.000 0.000 cbook.py:140(deprecated)
40 0.000 0.000 0.000 0.000 numerictypes.py:157(english_upper)
1 0.000 0.000 0.000 0.000 helper.py:4(<module>)
5 0.000 0.000 0.000 0.000 cbook.py:1284(__init__)
3 0.000 0.000 0.000 0.000 function_base.py:1519(__init__)
24 0.000 0.000 0.000 0.000 _weakrefset.py:52(_commit_removals)
1 0.000 0.000 0.001 0.001 __init__.py:71(search_function)
2 0.000 0.000 0.000 0.000 utils.py:152(deprecate)
40 0.000 0.000 0.000 0.000 _inspect.py:26(isfunction)
1 0.000 0.000 0.000 0.000 arraypad.py:5(<module>)
24 0.000 0.000 0.000 0.000 _weakrefset.py:16(__init__)
1 0.000 0.000 0.000 0.000 pprint.py:35(<module>)
1 0.000 0.000 0.000 0.000 decimal.py:3763(Context)
1 0.000 0.000 0.000 0.000 tripcolor.py:1(<module>)
1 0.000 0.000 0.000 0.000 <string>:7(Chebyshev)
6 0.000 0.000 0.000 0.000 hashlib.py:94(__get_openssl_constructor)
27 0.000 0.000 0.000 0.000 decimal.py:3809(<genexpr>)
1 0.000 0.000 0.000 0.000 patches.py:53(Patch)
1 0.000 0.000 0.000 0.000 artist.py:70(Artist)
12 0.000 0.000 0.000 0.000 {method 'get' of 'dictproxy' objects}
1 0.000 0.000 0.000 0.000 <string>:7(HermiteE)
31 0.000 0.000 0.000 0.000 _inspect.py:39(iscode)
1 0.000 0.000 0.000 0.000 parser.py:247(__init__)
1 0.000 0.000 0.000 0.000 twodim_base.py:3(<module>)
6 0.000 0.000 0.000 0.000 contextlib.py:82(helper)
1 0.000 0.000 0.000 0.000 backend_agg.py:65(RendererAgg)
1 0.000 0.000 0.000 0.000 {method 'read' of 'file' objects}
5 0.000 0.000 0.000 0.000 re.py:204(escape)
1 0.000 0.000 0.000 0.000 <string>:7(Legendre)
1 0.000 0.000 0.000 0.000 financial.py:10(<module>)
1 0.000 0.000 0.000 0.000 classes.py:79(Domain)
1 0.000 0.000 0.009 0.009 core.py:123(read_style_directory)
14 0.000 0.000 0.000 0.000 numerictypes.py:184(english_capitalize)
1 0.000 0.000 0.000 0.000 pickle.py:171(Pickler)
1 0.000 0.000 0.000 0.000 <string>:7(Hermite)
20 0.000 0.000 0.000 0.000 classes.py:389(from_domain_adjacency)
5 0.000 0.000 0.000 0.000 collections.py:100(keys)
1 0.000 0.000 0.000 0.000 threading.py:640(Thread)
17 0.000 0.000 0.000 0.000 {method 'lstrip' of 'str' objects}
1 0.000 0.000 0.000 0.000 __future__.py:48(<module>)
205 0.000 0.000 0.000 0.000 {globals}
18 0.000 0.000 0.000 0.000 {_struct.calcsize}
1 0.000 0.000 0.004 0.004 ConfigParser.py:231(RawConfigParser)
11 0.000 0.000 0.000 0.000 functions.py:240(safe_float)
1 0.000 0.000 0.000 0.000 sre_parse.py:703(parse_template)
12 0.000 0.000 0.000 0.000 pyparsing.py:2181(parseImpl)
55 0.000 0.000 0.000 0.000 {method '__contains__' of 'frozenset' objects}
4 0.000 0.000 0.000 0.000 tempfile.py:48(_set_cloexec)
14 0.000 0.000 0.000 0.000 posixpath.py:59(isabs)
1 0.000 0.000 0.000 0.000 numbers.py:34(Complex)
1 0.000 0.000 0.000 0.000 polar.py:217(PolarAxes)
2 0.000 0.000 0.000 0.000 argparse.py:1475(__init__)
5 0.000 0.000 0.000 0.000 argparse.py:765(__init__)
37 0.000 0.000 0.000 0.000 abc.py:15(abstractmethod)
7 0.000 0.000 0.000 0.000 posixpath.py:119(basename)
33 0.000 0.000 0.000 0.000 cm.py:28(_reverser)
1 0.000 0.000 0.000 0.000 backend_qt5.py:219(FigureCanvasQT)
4 0.000 0.000 0.000 0.000 rcsetup.py:129(validate_fonttype)
1 0.000 0.000 0.000 0.000 py3k.py:4(<module>)
1 0.000 0.000 0.000 0.000 _inspect.py:7(<module>)
1 0.000 0.000 0.000 0.000 stackplot.py:8(<module>)
50 0.000 0.000 0.000 0.000 {_ctypes.sizeof}
2 0.000 0.000 0.000 0.000 font_manager.py:983(make_rcparams_key)
5 0.000 0.000 0.000 0.000 argparse.py:1497(_add_action)
1 0.000 0.000 0.000 0.000 tzwin.py:2(<module>)
1 0.000 0.000 0.000 0.000 spines.py:21(Spine)
1 0.000 0.000 0.000 0.000 colorbar.py:218(ColorbarBase)
1 0.000 0.000 0.000 0.000 <string>:1(ParseResult)
1 0.000 0.000 0.000 0.000 subprocess.py:14(<module>)
1 0.000 0.000 0.000 0.000 nanfunctions.py:16(<module>)
1 0.000 0.000 0.000 0.000 collections.py:26(OrderedDict)
1 0.000 0.000 0.000 0.000 argparse.py:1778(take_action)