forked from visualbuffer/copilot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
temp_file
2725 lines (2721 loc) · 202 KB
/
temp_file
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
313798 function calls (308216 primitive calls) in 222.408 seconds
Ordered by: standard name
ncalls tottime percall cumtime percall filename:lineno(function)
570 0.002 0.000 0.002 0.000 <frozen importlib._bootstrap>:103(release)
359 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:143(__init__)
359 0.001 0.000 0.008 0.000 <frozen importlib._bootstrap>:147(__enter__)
359 0.000 0.000 0.002 0.000 <frozen importlib._bootstrap>:151(__exit__)
570 0.003 0.000 0.006 0.000 <frozen importlib._bootstrap>:157(_get_module_lock)
356 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap>:176(cb)
211 0.001 0.000 0.002 0.000 <frozen importlib._bootstrap>:194(_lock_unlock_module)
473/1 0.001 0.000 221.148 221.148 <frozen importlib._bootstrap>:211(_call_with_frames_removed)
3573 0.002 0.000 0.002 0.000 <frozen importlib._bootstrap>:222(_verbose_message)
18 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:232(_requires_builtin_wrapper)
341 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:307(__init__)
341 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:311(__enter__)
341 0.002 0.000 0.003 0.000 <frozen importlib._bootstrap>:318(__exit__)
1364 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:321(<genexpr>)
290 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap>:35(_new_module)
357 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap>:369(__init__)
613 0.001 0.000 0.016 0.000 <frozen importlib._bootstrap>:403(cached)
631 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap>:416(parent)
341 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:424(has_location)
22 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:433(spec_from_loader)
341 0.002 0.000 0.021 0.000 <frozen importlib._bootstrap>:504(_init_module_attrs)
341/191 0.001 0.000 6.411 0.034 <frozen importlib._bootstrap>:564(module_from_spec)
356 0.001 0.000 0.003 0.000 <frozen importlib._bootstrap>:58(__init__)
4 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:622(_load_backward_compatible)
345/1 0.003 0.000 221.172 221.172 <frozen importlib._bootstrap>:651(_load_unlocked)
352 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap>:707(find_spec)
18 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap>:728(create_module)
18 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:736(exec_module)
18 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:753(is_package)
570 0.002 0.000 0.002 0.000 <frozen importlib._bootstrap>:78(acquire)
334 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap>:780(find_spec)
1024 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap>:843(__enter__)
1024 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap>:847(__exit__)
4 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:861(_find_spec_legacy)
352 0.004 0.000 0.501 0.001 <frozen importlib._bootstrap>:870(_find_spec)
359/1 0.002 0.000 221.172 221.172 <frozen importlib._bootstrap>:936(_find_and_load_unlocked)
359/1 0.004 0.000 221.172 221.172 <frozen importlib._bootstrap>:966(_find_and_load)
1470/609 0.002 0.000 5.960 0.010 <frozen importlib._bootstrap>:997(_handle_fromlist)
35 0.004 0.000 0.006 0.000 <frozen importlib._bootstrap_external>:1067(_path_hooks)
757 0.001 0.000 0.008 0.000 <frozen importlib._bootstrap_external>:1080(_path_importer_cache)
334 0.002 0.000 0.494 0.001 <frozen importlib._bootstrap_external>:1117(_get_spec)
334 0.001 0.000 0.494 0.001 <frozen importlib._bootstrap_external>:1149(find_spec)
35 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1196(__init__)
280 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1202(<genexpr>)
323 0.001 0.000 0.004 0.000 <frozen importlib._bootstrap_external>:1228(_get_spec)
679 0.008 0.000 0.483 0.001 <frozen importlib._bootstrap_external>:1233(find_spec)
35 0.001 0.000 0.006 0.000 <frozen importlib._bootstrap_external>:1281(_fill_cache)
35 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1310(<setcomp>)
35 0.000 0.000 0.002 0.000 <frozen importlib._bootstrap_external>:1322(path_hook_for_FileFinder)
580 0.003 0.000 0.008 0.000 <frozen importlib._bootstrap_external>:263(cache_from_source)
323 0.010 0.000 0.015 0.000 <frozen importlib._bootstrap_external>:361(_get_cached)
679 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:37(_relax_case)
290 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:393(_check_name_wrapper)
290 0.006 0.000 0.007 0.000 <frozen importlib._bootstrap_external>:430(_validate_bytecode_header)
290 0.002 0.000 0.059 0.000 <frozen importlib._bootstrap_external>:485(_compile_bytecode)
580 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:52(_r_long)
323 0.002 0.000 0.002 0.000 <frozen importlib._bootstrap_external>:524(spec_from_file_location)
3319 0.003 0.000 0.008 0.000 <frozen importlib._bootstrap_external>:57(_path_join)
3319 0.003 0.000 0.004 0.000 <frozen importlib._bootstrap_external>:59(<listcomp>)
580 0.002 0.000 0.003 0.000 <frozen importlib._bootstrap_external>:63(_path_split)
290 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:669(create_module)
290/1 0.002 0.000 221.172 221.172 <frozen importlib._bootstrap_external>:672(exec_module)
290 0.004 0.000 6.041 0.021 <frozen importlib._bootstrap_external>:743(get_code)
1407 0.001 0.000 0.471 0.000 <frozen importlib._bootstrap_external>:75(_path_stat)
290 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:800(__init__)
290 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:825(get_filename)
290 5.883 0.020 5.951 0.021 <frozen importlib._bootstrap_external>:830(get_data)
290 0.001 0.000 0.015 0.000 <frozen importlib._bootstrap_external>:840(path_stats)
438 0.001 0.000 0.415 0.001 <frozen importlib._bootstrap_external>:85(_path_is_mode_type)
33 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:908(__init__)
33/19 0.000 0.000 6.403 0.337 <frozen importlib._bootstrap_external>:919(create_module)
33 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:927(exec_module)
402 0.000 0.000 0.414 0.001 <frozen importlib._bootstrap_external>:94(_path_isfile)
36 0.000 0.000 0.002 0.000 <frozen importlib._bootstrap_external>:99(_path_isdir)
1 0.000 0.000 0.000 0.000 <string>:1(<module>)
4 0.000 0.000 0.000 0.000 <string>:12(__new__)
1 0.000 0.000 0.000 0.000 <string>:5(ArgInfo)
1 0.000 0.000 0.000 0.000 <string>:5(ArgSpec)
1 0.000 0.000 0.000 0.000 <string>:5(Arguments)
1 0.000 0.000 0.000 0.000 <string>:5(Attribute)
1 0.000 0.000 0.000 0.000 <string>:5(Box)
1 0.000 0.000 0.000 0.000 <string>:5(ClosureVars)
1 0.000 0.000 0.000 0.000 <string>:5(DecimalTuple)
1 0.000 0.000 0.000 0.000 <string>:5(DefaultVerifyPaths)
1 0.000 0.000 0.000 0.000 <string>:5(DefragResult)
1 0.000 0.000 0.000 0.000 <string>:5(Font)
1 0.000 0.000 0.000 0.000 <string>:5(FrameInfo)
1 0.000 0.000 0.000 0.000 <string>:5(FullArgSpec)
1 0.000 0.000 0.000 0.000 <string>:5(Match)
1 0.000 0.000 0.000 0.000 <string>:5(Mismatch)
1 0.000 0.000 0.000 0.000 <string>:5(Page)
1 0.000 0.000 0.000 0.000 <string>:5(ParseResult)
1 0.000 0.000 0.000 0.000 <string>:5(SelectorKey)
1 0.000 0.000 0.000 0.000 <string>:5(SplitResult)
1 0.000 0.000 0.000 0.000 <string>:5(Text)
1 0.000 0.000 0.000 0.000 <string>:5(TokenInfo)
1 0.000 0.000 0.000 0.000 <string>:5(Traceback)
1 0.000 0.000 0.000 0.000 <string>:5(_ASN1Object)
1 0.000 0.000 0.000 0.000 <string>:5(_Instruction)
1 0.000 0.000 0.000 0.000 <string>:5(_LoggingWatcher)
1 0.000 0.000 0.000 0.000 <string>:5(_XYPair)
1 0.000 0.000 0.000 0.000 <string>:5(usage)
1 0.000 0.000 0.000 0.000 Image.py:2231(ImagePointHandler)
1 0.000 0.000 0.000 0.000 Image.py:2236(ImageTransformHandler)
1 0.000 0.000 0.142 0.142 Image.py:27(<module>)
1 0.000 0.000 0.000 0.000 Image.py:2865(_apply_env_variables)
1 0.000 0.000 0.000 0.000 Image.py:36(DecompressionBombWarning)
1 0.000 0.000 0.000 0.000 Image.py:40(DecompressionBombError)
1 0.000 0.000 0.000 0.000 Image.py:44(_imaging_not_installed)
1 0.000 0.000 0.000 0.000 Image.py:471(_E)
1 0.000 0.000 0.000 0.000 Image.py:506(Image)
1 0.000 0.000 0.000 0.000 ImageMode.py:17(<module>)
1 0.000 0.000 0.000 0.000 ImageMode.py:20(ModeDescriptor)
1 0.000 0.000 0.000 0.000 __config__.py:3(<module>)
1 0.000 0.000 0.000 0.000 __future__.py:48(<module>)
1 0.000 0.000 0.000 0.000 __future__.py:78(_Feature)
9 0.000 0.000 0.000 0.000 __future__.py:79(__init__)
16 0.001 0.000 6.307 0.394 __init__.py:1(<module>)
1 0.000 0.000 0.067 0.067 __init__.py:10(<module>)
1 0.000 0.000 0.000 0.000 __init__.py:10(ProjectionRegistry)
1 0.000 0.000 0.000 0.000 __init__.py:1008(FileHandler)
1 0.000 0.000 0.411 0.411 __init__.py:101(<module>)
27 0.000 0.000 0.000 0.000 __init__.py:1013(is_url)
54 0.001 0.000 0.260 0.005 __init__.py:1024(_open_file_or_url)
27 0.004 0.000 0.288 0.011 __init__.py:1042(_rc_params_in_file)
1 0.000 0.000 4.736 4.736 __init__.py:106(<module>)
1 0.000 0.000 0.000 0.000 __init__.py:106(get_projection_names)
1 0.000 0.000 0.000 0.000 __init__.py:1077(_StderrHandler)
1 0.000 0.000 0.000 0.000 __init__.py:108(todate)
1 0.000 0.000 0.000 0.000 __init__.py:1083(__init__)
1 0.000 0.000 0.000 0.000 __init__.py:1101(PlaceHolder)
2 0.000 0.000 0.000 0.000 __init__.py:1107(__init__)
27 0.000 0.000 0.291 0.011 __init__.py:1120(rc_params_from_file)
1 0.000 0.000 0.000 0.000 __init__.py:1142(<listcomp>)
1 0.000 0.000 0.000 0.000 __init__.py:1143(Manager)
1 0.000 0.000 0.000 0.000 __init__.py:1148(__init__)
1 0.000 0.000 0.000 0.000 __init__.py:1149(maxdict)
4 0.000 0.000 0.000 0.000 __init__.py:1155(__init__)
18 0.000 0.000 0.000 0.000 __init__.py:1159(getLogger)
1 0.000 0.000 0.000 0.000 __init__.py:1169(Stack)
1 0.000 0.000 0.000 0.000 __init__.py:1183(<listcomp>)
17 0.000 0.000 0.000 0.000 __init__.py:1210(_fixupParents)
1 0.000 0.000 0.000 0.000 __init__.py:123(tofloat)
1 0.000 0.000 0.000 0.000 __init__.py:1251(Logger)
18 0.000 0.000 0.000 0.000 __init__.py:1266(__init__)
7 0.000 0.000 0.000 0.000 __init__.py:1284(debug)
1 0.000 0.000 0.000 0.000 __init__.py:129(extendkey)
3 0.000 0.000 0.000 0.000 __init__.py:1357(log)
1 0.000 0.000 0.000 0.000 __init__.py:136(toint)
14 0.000 0.000 0.000 0.000 __init__.py:139(_check_size)
1 0.000 0.000 0.005 0.005 __init__.py:14(<module>)
1 0.000 0.000 0.000 0.000 __init__.py:14(__init__)
2 0.000 0.000 0.000 0.000 __init__.py:1419(get_backend)
1 0.000 0.000 0.000 0.000 __init__.py:1433(is_interactive)
1 0.000 0.000 0.000 0.000 __init__.py:1447(Grouper)
1 0.000 0.000 0.000 0.000 __init__.py:148(_BoundMethodProxy)
3 0.000 0.000 0.000 0.000 __init__.py:1483(__init__)
1 0.000 0.000 0.221 0.221 __init__.py:15(<module>)
1 0.000 0.000 0.000 0.000 __init__.py:151(py_object)
10 0.000 0.000 0.000 0.000 __init__.py:1528(getEffectiveLevel)
10 0.000 0.000 0.000 0.000 __init__.py:1542(isEnabledFor)
1 0.000 0.000 0.000 0.000 __init__.py:1574(RootLogger)
39 0.000 0.000 0.001 0.000 __init__.py:1577(_add_data_doc)
1 0.000 0.000 0.000 0.000 __init__.py:1580(__init__)
1 0.000 0.000 0.000 0.000 __init__.py:1588(LoggerAdapter)
12 0.000 0.000 0.000 0.000 __init__.py:16(<genexpr>)
1 0.000 0.000 0.000 0.000 __init__.py:16(DeprecatedTzFormatWarning)
1 0.000 0.000 0.000 0.000 __init__.py:160(c_short)
39 0.000 0.000 0.000 0.000 __init__.py:1612(_preprocess_data)
1 0.000 0.000 0.000 0.000 __init__.py:164(c_ushort)
39 0.001 0.000 0.004 0.000 __init__.py:1652(param)
1 0.000 0.000 0.000 0.000 __init__.py:168(c_long)
1 0.000 0.000 0.000 0.000 __init__.py:17(register)
1 0.000 0.000 0.000 0.000 __init__.py:172(c_ulong)
3 0.000 0.000 0.000 0.000 __init__.py:172(compare_versions)
18 0.000 0.000 0.000 0.000 __init__.py:1836(getLogger)
1 0.000 0.000 0.000 0.000 __init__.py:189(c_float)
57 0.000 0.000 0.000 0.000 __init__.py:19(__new__)
19 0.000 0.000 0.000 0.000 __init__.py:190(_checkLevel)
1 0.000 0.000 0.000 0.000 __init__.py:193(c_double)
1 0.000 0.000 0.000 0.000 __init__.py:1952(<dictcomp>)
1 0.000 0.000 0.000 0.000 __init__.py:1964(NullHandler)
1 0.000 0.000 0.000 0.000 __init__.py:197(c_longdouble)
3 0.000 0.000 0.039 0.013 __init__.py:2(<module>)
1 0.000 0.000 0.000 0.000 __init__.py:20(__deprecated_private_func)
19 0.000 0.000 0.000 0.000 __init__.py:2042(_to_unmasked_float_array)
1 0.000 0.000 0.000 0.000 __init__.py:207(c_longlong)
1 0.000 0.000 0.791 0.791 __init__.py:21(pylab_setup)
1 0.000 0.000 0.000 0.000 __init__.py:211(c_ulonglong)
1 0.000 0.000 0.000 0.000 __init__.py:2162(_NestedClassGetter)
1 0.000 0.000 0.000 0.000 __init__.py:218(c_ubyte)
1 0.000 0.000 0.000 0.000 __init__.py:2182(_InstanceMethodPickler)
19 0.000 0.000 0.000 0.000 __init__.py:219(_acquireLock)
4 0.000 0.000 0.000 0.000 __init__.py:219(_is_writable_dir)
1 0.000 0.000 0.000 0.000 __init__.py:225(c_byte)
19 0.000 0.000 0.000 0.000 __init__.py:228(_releaseLock)
1 0.000 0.000 0.000 0.000 __init__.py:230(c_char)
1 0.000 0.000 0.000 0.000 __init__.py:235(c_char_p)
1 0.000 0.000 0.000 0.000 __init__.py:239(LogRecord)
1 0.000 0.000 0.004 0.004 __init__.py:24(<module>)
14 0.000 0.000 0.000 0.000 __init__.py:24(register_func)
1 0.000 0.000 0.000 0.000 __init__.py:241(c_void_p)
1 0.000 0.000 0.000 0.000 __init__.py:246(c_bool)
1 0.000 0.000 0.000 0.000 __init__.py:2491(Locked)
1 0.000 0.000 0.000 0.000 __init__.py:2505(TimeoutError)
1 0.000 0.000 0.000 0.000 __init__.py:251(c_wchar_p)
1 0.000 0.000 0.000 0.000 __init__.py:2546(_FuncInfo)
14 0.000 0.000 0.000 0.000 __init__.py:2552(__init__)
1 0.000 0.000 0.000 0.000 __init__.py:256(c_wchar)
1 0.000 0.000 0.000 0.000 __init__.py:257(CallbackRegistry)
1 0.000 0.000 0.000 0.000 __init__.py:259(_reset_cache)
1 0.000 0.000 0.000 0.000 __init__.py:2640(_StringFuncParser)
1 0.000 0.000 0.052 0.052 __init__.py:27(<module>)
1 0.000 0.000 0.000 0.000 __init__.py:271(_parse_commandline)
1 0.000 0.000 0.011 0.011 __init__.py:274(load)
1 0.000 0.000 0.000 0.000 __init__.py:292(Verbose)
1 0.000 0.000 0.000 0.000 __init__.py:298(<dictcomp>)
2 0.000 0.000 0.306 0.153 __init__.py:3(<module>)
2 0.000 0.000 0.009 0.005 __init__.py:302(loads)
1 0.000 0.000 0.000 0.000 __init__.py:31(get_projection_names)
1 0.000 0.000 0.000 0.000 __init__.py:311(CDLL)
1 0.000 0.000 0.000 0.000 __init__.py:314(__init__)
1 0.000 0.000 0.000 0.000 __init__.py:319(set_level)
2 0.000 0.000 0.000 0.000 __init__.py:332(__init__)
2 0.000 0.000 0.000 0.000 __init__.py:342(_FuncPtr)
3 0.000 0.000 0.000 0.000 __init__.py:35(__deprecate_private_class)
26 0.001 0.000 0.012 0.000 __init__.py:357(namedtuple)
1 0.000 0.000 0.000 0.000 __init__.py:358(__getattr__)
1 0.000 0.000 0.000 0.000 __init__.py:365(__getitem__)
1 0.000 0.000 0.000 0.000 __init__.py:371(PyDLL)
1 0.000 0.000 0.000 0.000 __init__.py:378(PercentStyle)
1 0.000 0.000 0.000 0.000 __init__.py:380(WinDLL)
1 0.000 0.000 0.000 0.000 __init__.py:384(__init__)
1 0.000 0.000 0.000 0.000 __init__.py:389(HRESULT)
1 0.000 0.000 0.000 0.000 __init__.py:393(StrFormatStyle)
4 0.000 0.000 0.000 0.000 __init__.py:396(_wrap)
1 0.000 0.000 0.000 0.000 __init__.py:400(silent_list)
1 0.000 0.000 0.000 0.000 __init__.py:402(OleDLL)
1 0.000 0.000 0.000 0.000 __init__.py:402(StringTemplateStyle)
13/9 0.000 0.000 0.001 0.000 __init__.py:406(wrapper)
1 0.000 0.000 0.073 0.073 __init__.py:41(<module>)
1 0.000 0.000 0.000 0.000 __init__.py:411(LibraryLoader)
4 0.000 0.000 0.000 0.000 __init__.py:412(__init__)
1 0.000 0.000 0.000 0.000 __init__.py:415(__getattr__)
3 0.000 0.000 0.000 0.000 __init__.py:42(private_class)
138 0.000 0.000 0.000 0.000 __init__.py:420(<genexpr>)
138 0.000 0.000 0.000 0.000 __init__.py:422(<genexpr>)
1 0.000 0.000 0.000 0.000 __init__.py:426(Formatter)
1 0.000 0.000 0.000 0.000 __init__.py:426(IgnoredKeywordWarning)
2 0.000 0.000 0.478 0.239 __init__.py:45(<module>)
1 0.000 0.000 0.000 0.000 __init__.py:470(__init__)
3 0.000 0.000 0.000 0.000 __init__.py:476(PYFUNCTYPE)
3 0.000 0.000 0.000 0.000 __init__.py:477(CFunctionType)
1 0.000 0.000 0.000 0.000 __init__.py:491(Bunch)
1 0.000 0.000 0.000 0.000 __init__.py:5(<module>)
1 0.000 0.000 0.000 0.000 __init__.py:5(HTTPStatus)
1 0.000 0.000 0.000 0.000 __init__.py:504(__init__)
76 0.000 0.000 0.000 0.000 __init__.py:518(iterable)
1 0.000 0.000 0.000 0.000 __init__.py:524(checkdep_ps_distiller)
1 0.000 0.000 0.000 0.000 __init__.py:558(checkdep_usetex)
8 0.000 0.000 0.000 0.000 __init__.py:588(_get_home)
1 0.000 0.000 0.000 0.000 __init__.py:599(BufferingFormatter)
2 0.000 0.000 0.000 0.000 __init__.py:622(_get_xdg_config_dir)
2 0.000 0.000 0.000 0.000 __init__.py:636(_get_xdg_cache_dir)
1 0.000 0.000 0.000 0.000 __init__.py:641(Filter)
4 0.000 0.000 0.001 0.000 __init__.py:650(_get_config_or_cache_dir)
1 0.000 0.000 0.000 0.000 __init__.py:67(converter)
1 0.000 0.000 0.000 0.000 __init__.py:678(Filterer)
19 0.000 0.000 0.000 0.000 __init__.py:683(__init__)
2 0.000 0.000 0.000 0.000 __init__.py:687(_get_configdir)
2 0.000 0.000 0.643 0.322 __init__.py:7(<module>)
1 0.000 0.000 0.000 0.000 __init__.py:710(Sorter)
2 0.000 0.000 0.001 0.000 __init__.py:711(_get_cachedir)
1 0.000 0.000 0.000 0.000 __init__.py:723(_decode_filesystem_path)
3 0.000 0.000 0.000 0.000 __init__.py:73(CFUNCTYPE)
1 0.000 0.000 0.000 0.000 __init__.py:730(_get_data_path)
1 0.000 0.000 0.000 0.000 __init__.py:750(_addHandlerRef)
1 0.000 0.000 0.000 0.000 __init__.py:758(Xlator)
1 0.000 0.000 0.000 0.000 __init__.py:760(Handler)
1 0.000 0.000 0.000 0.000 __init__.py:769(__init__)
3 0.000 0.000 0.000 0.000 __init__.py:773(_get_data_path_cached)
1 0.000 0.000 0.000 0.000 __init__.py:798(createLock)
1 0.000 0.000 0.001 0.001 __init__.py:798(matplotlib_fname)
1 0.000 0.000 0.000 0.000 __init__.py:820(Null)
4 0.000 0.000 0.000 0.000 __init__.py:829(gen_candidates)
1 0.000 0.000 0.000 0.000 __init__.py:853(mkdirs)
1 0.000 0.000 0.000 0.000 __init__.py:86(tostr)
1 0.000 0.000 0.000 0.000 __init__.py:870(RcParams)
1 0.000 0.000 0.000 0.000 __init__.py:872(GetRealpathAndStat)
1 0.000 0.000 0.000 0.000 __init__.py:873(__init__)
297 0.000 0.000 0.000 0.000 __init__.py:879(<genexpr>)
1 0.000 0.000 0.034 0.034 __init__.py:88(<module>)
29 0.000 0.000 0.005 0.000 __init__.py:894(__init__)
1490 0.002 0.000 0.025 0.000 __init__.py:897(__setitem__)
1 0.000 0.000 0.000 0.000 __init__.py:9(<module>)
1 0.000 0.000 0.000 0.000 __init__.py:903(RingBuffer)
1 0.000 0.000 0.000 0.000 __init__.py:910(__Full)
1 0.000 0.000 0.000 0.000 __init__.py:93(todatetime)
89 0.000 0.000 0.000 0.000 __init__.py:931(__getitem__)
1 0.000 0.000 0.000 0.000 __init__.py:949(StreamHandler)
2 0.000 0.000 0.000 0.000 __init__.py:969(__iter__)
1 0.000 0.000 0.004 0.004 __init__.py:97(<module>)
202 0.000 0.000 0.003 0.000 __init__.py:986(dedent)
3 0.000 0.000 0.000 0.000 __init__.py:99(CFunctionType)
1 0.000 0.000 0.026 0.026 __init__.py:993(rc_params)
1 0.000 0.000 0.728 0.728 _axes.py:1(<module>)
1 0.000 0.000 0.005 0.005 _axes.py:96(Axes)
1 0.000 0.000 0.000 0.000 _backports.py:1(<module>)
1 0.000 0.000 0.163 0.163 _base.py:1(<module>)
1 0.000 0.000 0.000 0.000 _base.py:143(_process_plot_var_args)
1 0.000 0.000 0.000 0.000 _base.py:410(_AxesBase)
1 0.000 0.000 0.000 0.000 _binary.py:14(<module>)
28 0.000 0.000 0.000 0.000 _bootlocale.py:11(getpreferredencoding)
1 0.000 0.000 0.000 0.000 _cm.py:60(cubehelix)
1 0.000 0.000 0.000 0.000 _cm.py:7(<module>)
3 0.000 0.000 0.000 0.000 _cm.py:99(get_color_function)
1 0.000 0.000 0.000 0.000 _cm_listed.py:1(<module>)
2 0.000 0.000 0.000 0.000 _collections_abc.py:252(__subclasshook__)
1 0.000 0.000 0.000 0.000 _collections_abc.py:349(__subclasshook__)
1 0.000 0.000 0.000 0.000 _collections_abc.py:367(__subclasshook__)
28 0.000 0.000 0.000 0.000 _collections_abc.py:392(__subclasshook__)
11 0.000 0.000 0.000 0.000 _collections_abc.py:657(get)
23 0.000 0.000 0.000 0.000 _collections_abc.py:664(__contains__)
4 0.000 0.000 0.000 0.000 _collections_abc.py:72(_check_methods)
30 0.000 0.000 0.005 0.000 _collections_abc.py:824(update)
1 0.000 0.000 0.000 0.000 _color_data.py:1(<module>)
11 0.000 0.000 0.000 0.000 _color_data.py:34(<genexpr>)
1 0.000 0.000 0.000 0.000 _color_data.py:995(<dictcomp>)
1 0.000 0.000 0.000 0.000 _common.py:1(<module>)
3 0.000 0.000 0.000 0.000 _common.py:128(_validate_fromutc_inputs)
6 0.000 0.000 0.000 0.000 _common.py:13(tzname_in_python2)
1 0.000 0.000 0.000 0.000 _common.py:145(_tzinfo)
1 0.000 0.000 0.000 0.000 _common.py:263(tzrangebase)
1 0.000 0.000 0.000 0.000 _common.py:3(<module>)
1 0.000 0.000 0.000 0.000 _common.py:6(weekday)
14 0.000 0.000 0.000 0.000 _common.py:9(__init__)
43 0.000 0.000 0.000 0.000 _compat_pickle.py:165(<genexpr>)
86 0.000 0.000 0.000 0.000 _compat_pickle.py:167(<genexpr>)
1 0.000 0.000 0.000 0.000 _compat_pickle.py:9(<module>)
1 0.000 0.000 0.000 0.000 _compression.py:1(<module>)
1 0.000 0.000 0.000 0.000 _compression.py:33(DecompressReader)
1 0.000 0.000 0.000 0.000 _compression.py:9(BaseStream)
1 0.000 0.000 0.087 0.087 _constrained_layout.py:16(<module>)
1 0.000 0.000 0.000 0.000 _datasource.py:136(_FileOpeners)
1 0.000 0.000 0.000 0.000 _datasource.py:160(__init__)
1 0.000 0.000 0.000 0.000 _datasource.py:263(DataSource)
1 0.001 0.001 0.001 0.001 _datasource.py:35(<module>)
1 0.000 0.000 0.000 0.000 _datasource.py:619(Repository)
1 0.000 0.000 0.148 0.148 _distributor_init.py:10(<module>)
1 0.000 0.000 0.000 0.000 _distributor_init.py:13(RTLD_for_MKL)
1 0.000 0.000 0.000 0.000 _distributor_init.py:14(__init__)
1 0.000 0.000 0.000 0.000 _distributor_init.py:17(__enter__)
1 0.000 0.000 0.000 0.000 _distributor_init.py:28(__exit__)
1 0.000 0.000 0.000 0.000 _encoded_words.py:6(<module>)
1 0.000 0.000 0.000 0.000 _encoded_words.py:73(_QByteMap)
1 0.000 0.000 0.000 0.000 _endian.py:1(<module>)
1 0.000 0.000 0.000 0.000 _endian.py:23(_swapped_meta)
1 0.000 0.000 0.000 0.000 _endian.py:46(BigEndianStructure)
1 0.000 0.000 0.000 0.000 _factories.py:1(<module>)
1 0.000 0.000 0.000 0.000 _factories.py:14(_TzFactory)
1 0.000 0.000 0.000 0.000 _factories.py:20(_TzOffsetFactory)
1 0.000 0.000 0.000 0.000 _factories.py:21(__init__)
1 0.000 0.000 0.000 0.000 _factories.py:37(_TzStrFactory)
1 0.000 0.000 0.000 0.000 _factories.py:38(__init__)
1 0.000 0.000 0.000 0.000 _factories.py:4(_TzSingleton)
1 0.000 0.000 0.000 0.000 _factories.py:5(__init__)
1 0.000 0.000 0.000 0.000 _factories.py:9(__call__)
1 0.000 0.000 0.000 0.000 _globals.py:17(<module>)
1 0.000 0.000 0.000 0.000 _globals.py:33(ModuleDeprecationWarning)
1 0.000 0.000 0.000 0.000 _globals.py:45(VisibleDeprecationWarning)
1 0.000 0.000 0.000 0.000 _globals.py:56(_NoValue)
1 0.000 0.000 0.000 0.000 _import_tools.py:1(<module>)
1 0.000 0.000 0.000 0.000 _import_tools.py:339(PackageLoaderDebug)
1 0.000 0.000 0.000 0.000 _import_tools.py:9(PackageLoader)
98 0.000 0.000 0.000 0.000 _inspect.py:133(strseq)
38 0.000 0.000 0.000 0.000 _inspect.py:142(formatargspec)
7 0.000 0.000 0.000 0.000 _inspect.py:144(<lambda>)
5 0.000 0.000 0.000 0.000 _inspect.py:145(<lambda>)
60 0.000 0.000 0.000 0.000 _inspect.py:146(<lambda>)
43 0.000 0.000 0.000 0.000 _inspect.py:15(ismethod)
43 0.000 0.000 0.000 0.000 _inspect.py:28(isfunction)
38 0.000 0.000 0.000 0.000 _inspect.py:43(iscode)
38 0.000 0.000 0.000 0.000 _inspect.py:67(getargs)
1 0.000 0.000 0.000 0.000 _inspect.py:7(<module>)
43 0.000 0.000 0.000 0.000 _inspect.py:98(getargspec)
1 0.000 0.000 0.000 0.000 _internal.py:204(dummy_ctype)
1 0.000 0.000 0.000 0.000 _internal.py:216(_getintp_ctype)
1 0.000 0.000 0.000 0.000 _internal.py:239(_missing_ctypes)
1 0.000 0.000 0.000 0.000 _internal.py:246(_ctypes)
1 0.000 0.000 0.124 0.124 _internal.py:6(<module>)
1 0.000 0.000 0.000 0.000 _internal.py:683(TooHardError)
1 0.000 0.000 0.000 0.000 _internal.py:686(AxisError)
51 0.000 0.000 0.000 0.000 _internal.py:715(_ufunc_doc_signature_formatter)
78 0.000 0.000 0.000 0.000 _internal.py:726(<genexpr>)
1 0.000 0.000 0.000 0.000 _iotools.py:170(LineSplitter)
1 0.000 0.000 0.000 0.000 _iotools.py:266(NameValidator)
1 0.000 0.000 0.001 0.001 _iotools.py:3(<module>)
1 0.000 0.000 0.000 0.000 _iotools.py:460(ConverterError)
1 0.000 0.000 0.000 0.000 _iotools.py:468(ConverterLockError)
1 0.000 0.000 0.000 0.000 _iotools.py:476(ConversionWarning)
1 0.000 0.000 0.000 0.000 _iotools.py:489(StringConverter)
1 0.000 0.000 0.014 0.014 _layoutbox.py:17(<module>)
1 0.000 0.000 0.000 0.000 _layoutbox.py:52(LayoutBox)
1341 0.000 0.000 0.000 0.000 _mathtext_data.py:1755(<genexpr>)
1 0.000 0.000 0.000 0.000 _mathtext_data.py:3(<module>)
19 0.000 0.000 0.000 0.000 _methods.py:40(_all)
1 0.000 0.000 0.000 0.000 _methods.py:43(_count_reduce_items)
1 0.000 0.000 0.000 0.000 _methods.py:5(<module>)
1 0.000 0.000 0.001 0.001 _methods.py:53(_mean)
1 0.000 0.000 0.000 0.000 _numpy_fft.py:54(<module>)
1 0.000 0.000 0.000 0.000 _parseaddr.py:203(AddrlistClass)
1 0.000 0.000 0.000 0.000 _parseaddr.py:495(AddressList)
1 0.000 0.000 0.001 0.001 _parseaddr.py:7(<module>)
1 0.000 0.000 0.000 0.000 _parser.py:1359(_tzparser)
1 0.000 0.000 0.000 0.000 _parser.py:1361(_result)
1 0.000 0.000 0.000 0.000 _parser.py:1366(_attr)
1 0.000 0.000 0.000 0.000 _parser.py:1576(UnknownTimezoneWarning)
1 0.000 0.000 0.000 0.000 _parser.py:225(_resultbase)
1 0.000 0.000 0.000 0.000 _parser.py:247(parserinfo)
1 0.000 0.000 0.000 0.000 _parser.py:30(<module>)
1 0.000 0.000 0.000 0.000 _parser.py:300(__init__)
7 0.000 0.000 0.000 0.000 _parser.py:315(_convert)
1 0.000 0.000 0.000 0.000 _parser.py:399(_ymd)
1 0.000 0.000 0.000 0.000 _parser.py:573(parser)
1 0.000 0.000 0.000 0.000 _parser.py:574(__init__)
1 0.000 0.000 0.000 0.000 _parser.py:58(_timelex)
1 0.000 0.000 0.000 0.000 _parser.py:663(_result)
10 0.000 0.000 0.000 0.000 _policybase.py:104(<genexpr>)
1 0.000 0.000 0.000 0.000 _policybase.py:112(Policy)
1 0.000 0.000 0.000 0.000 _policybase.py:18(_PolicyBase)
1 0.000 0.000 0.000 0.000 _policybase.py:271(Compat32)
1 0.000 0.000 0.020 0.020 _policybase.py:4(<module>)
1 0.000 0.000 0.000 0.000 _policybase.py:41(__init__)
6 0.000 0.000 0.000 0.000 _policybase.py:94(_append_doc)
1 0.000 0.000 0.000 0.000 _policybase.py:99(_extend_docstrings)
1 0.000 0.000 0.000 0.000 _polybase.py:19(ABCPolyBase)
1 0.000 0.000 0.000 0.000 _polybase.py:8(<module>)
1 0.000 0.000 0.000 0.000 _pylab_helpers.py:14(Gcf)
1 0.000 0.000 0.000 0.000 _pylab_helpers.py:3(<module>)
1 0.000 0.000 0.751 0.751 _subplots.py:1(<module>)
1 0.000 0.000 0.000 0.000 _subplots.py:18(SubplotBase)
1 0.000 0.000 0.000 0.000 _subplots.py:201(subplot_class_factory)
1 0.000 0.000 0.000 0.000 _subplots.py:223(_PicklableSubplotClassConstructor)
1 0.000 0.000 0.000 0.000 _util.py:1(<module>)
1 0.000 0.000 0.000 0.000 _util.py:22(deferred_error)
1 0.000 0.000 0.000 0.000 _version.py:18(NumpyVersion)
1 0.000 0.000 0.000 0.000 _version.py:20(get_versions)
1 0.000 0.000 0.000 0.000 _version.py:4(<module>)
2 0.000 0.000 0.005 0.002 _version.py:7(<module>)
48 0.000 0.000 0.000 0.000 _weakrefset.py:16(__init__)
48 0.000 0.000 0.000 0.000 _weakrefset.py:20(__enter__)
48 0.000 0.000 0.000 0.000 _weakrefset.py:26(__exit__)
103 0.000 0.000 0.000 0.000 _weakrefset.py:36(__init__)
48 0.000 0.000 0.000 0.000 _weakrefset.py:52(_commit_removals)
76 0.000 0.000 0.000 0.000 _weakrefset.py:58(__iter__)
478 0.000 0.000 0.000 0.000 _weakrefset.py:70(__contains__)
64 0.000 0.000 0.000 0.000 _weakrefset.py:81(add)
22 0.000 0.000 0.002 0.000 abc.py:132(__new__)
22 0.000 0.000 0.000 0.000 abc.py:135(<setcomp>)
11 0.000 0.000 0.000 0.000 abc.py:151(register)
319 0.000 0.000 0.001 0.000 abc.py:180(__instancecheck__)
54/17 0.000 0.000 0.001 0.000 abc.py:196(__subclasscheck__)
63 0.000 0.000 0.000 0.000 abc.py:9(abstractmethod)
1 0.000 0.000 3.222 3.222 add_newdocs.py:10(<module>)
1 0.000 0.000 0.000 0.000 afm.py:329(AFM)
1 0.000 0.000 0.015 0.015 afm.py:35(<module>)
1 0.000 0.000 0.037 0.037 api.py:1(<module>)
1 0.000 0.000 0.000 0.000 api.py:21(FFI)
1 0.000 0.000 0.000 0.000 argparse.py:1005(_HelpAction)
1 0.000 0.000 0.000 0.000 argparse.py:1024(_VersionAction)
1 0.000 0.000 0.000 0.000 argparse.py:1050(_SubParsersAction)
1 0.000 0.000 0.000 0.000 argparse.py:1052(_ChoicesPseudoAction)
1 0.000 0.000 0.000 0.000 argparse.py:109(_AttributeHolder)
1 0.000 0.000 0.000 0.000 argparse.py:1146(FileType)
1 0.000 0.000 0.000 0.000 argparse.py:1200(Namespace)
1 0.000 0.000 0.000 0.000 argparse.py:1220(_ActionsContainer)
1 0.000 0.000 0.000 0.000 argparse.py:150(HelpFormatter)
1 0.000 0.000 0.000 0.000 argparse.py:1527(_ArgumentGroup)
1 0.000 0.000 0.000 0.000 argparse.py:1561(_MutuallyExclusiveGroup)
1 0.000 0.000 0.000 0.000 argparse.py:1581(ArgumentParser)
1 0.000 0.000 0.000 0.000 argparse.py:200(_Section)
1 0.000 0.000 0.000 0.000 argparse.py:62(<module>)
1 0.000 0.000 0.000 0.000 argparse.py:637(RawDescriptionHelpFormatter)
1 0.000 0.000 0.000 0.000 argparse.py:648(RawTextHelpFormatter)
1 0.000 0.000 0.000 0.000 argparse.py:659(ArgumentDefaultsHelpFormatter)
1 0.000 0.000 0.000 0.000 argparse.py:676(MetavarTypeHelpFormatter)
1 0.000 0.000 0.000 0.000 argparse.py:709(ArgumentError)
1 0.000 0.000 0.000 0.000 argparse.py:729(ArgumentTypeError)
1 0.000 0.000 0.000 0.000 argparse.py:738(Action)
1 0.000 0.000 0.000 0.000 argparse.py:829(_StoreAction)
1 0.000 0.000 0.000 0.000 argparse.py:864(_StoreConstAction)
1 0.000 0.000 0.000 0.000 argparse.py:887(_StoreTrueAction)
1 0.000 0.000 0.000 0.000 argparse.py:904(_StoreFalseAction)
1 0.000 0.000 0.000 0.000 argparse.py:921(_AppendAction)
1 0.000 0.000 0.000 0.000 argparse.py:958(_AppendConstAction)
1 0.000 0.000 0.000 0.000 argparse.py:984(_CountAction)
1 0.000 0.000 0.000 0.000 arraypad.py:5(<module>)
1 0.000 0.000 0.000 0.000 arrayprint.py:1072(IntegerFormat)
1 0.000 0.000 0.000 0.000 arrayprint.py:1085(BoolFormat)
1 0.000 0.000 0.000 0.000 arrayprint.py:1095(ComplexFloatingFormat)
1 0.000 0.000 0.000 0.000 arrayprint.py:1124(ComplexFormat)
1 0.000 0.000 0.000 0.000 arrayprint.py:1131(LongComplexFormat)
1 0.000 0.000 0.000 0.000 arrayprint.py:1139(_TimelikeFormat)
1 0.000 0.000 0.000 0.000 arrayprint.py:1165(DatetimeFormat)
1 0.000 0.000 0.000 0.000 arrayprint.py:1197(TimedeltaFormat)
1 0.000 0.000 0.000 0.000 arrayprint.py:1202(SubArrayFormat)
1 0.000 0.000 0.000 0.000 arrayprint.py:1212(StructuredVoidFormat)
1 0.000 0.000 0.000 0.000 arrayprint.py:1249(StructureFormat)
2 0.000 0.000 0.000 0.000 arrayprint.py:1469(set_string_function)
2 0.000 0.000 0.000 0.000 arrayprint.py:406(_recursive_guard)
2 0.000 0.000 0.000 0.000 arrayprint.py:416(decorating_function)
1 0.000 0.000 0.000 0.000 arrayprint.py:5(<module>)
1 0.000 0.000 0.000 0.000 arrayprint.py:775(FloatingFormat)
1 0.000 0.000 0.000 0.000 arrayprint.py:918(FloatFormat)
1 0.000 0.000 0.000 0.000 arrayprint.py:925(LongFloatFormat)
1 0.000 0.000 0.000 0.000 arraysetops.py:27(<module>)
1 0.000 0.000 0.000 0.000 arrayterator.py:20(Arrayterator)
1 0.000 0.000 0.000 0.000 arrayterator.py:9(<module>)
1 0.000 0.000 0.087 0.087 artist.py:1(<module>)
1 0.000 0.000 0.000 0.000 artist.py:1065(ArtistInspector)
12 0.000 0.000 0.004 0.000 artist.py:1071(__init__)
12 0.001 0.000 0.003 0.000 artist.py:1092(get_aliases)
12 0.001 0.000 0.001 0.000 artist.py:1104(<listcomp>)
397 0.001 0.000 0.005 0.000 artist.py:1121(get_valid_values)
12 0.003 0.000 0.022 0.002 artist.py:1150(_get_setters_and_targets)
1 0.000 0.000 0.002 0.002 artist.py:1177(get_setters)
1 0.000 0.000 0.000 0.000 artist.py:1183(<listcomp>)
1608 0.001 0.000 0.001 0.000 artist.py:1185(is_alias)
397 0.000 0.000 0.000 0.000 artist.py:1195(aliased_name)
44 0.000 0.000 0.000 0.000 artist.py:1206(<listcomp>)
11 0.001 0.000 0.026 0.002 artist.py:1228(pprint_setters)
11 0.000 0.000 0.029 0.003 artist.py:1475(kwdoc)
22 0.000 0.000 0.000 0.000 artist.py:37(allow_rasterization)
1 0.000 0.000 0.000 0.000 artist.py:74(Artist)
1 0.000 0.000 0.000 0.000 ast.py:229(NodeVisitor)
1 0.000 0.000 0.000 0.000 ast.py:26(<module>)
1 0.000 0.000 0.000 0.000 ast.py:266(NodeTransformer)
1 0.000 0.000 0.000 0.000 axis.py:1764(XAxis)
1 0.000 0.000 0.000 0.000 axis.py:2134(YAxis)
1 0.000 0.000 0.026 0.026 axis.py:3(<module>)
1 0.000 0.000 0.000 0.000 axis.py:35(<listcomp>)
1 0.000 0.000 0.000 0.000 axis.py:36(<listcomp>)
1 0.000 0.000 0.000 0.000 axis.py:40(Tick)
1 0.000 0.000 0.000 0.000 axis.py:408(XTick)
1 0.000 0.000 0.000 0.000 axis.py:531(YTick)
1 0.000 0.000 0.000 0.000 axis.py:654(Ticker)
1 0.000 0.000 0.000 0.000 axis.py:659(_LazyTickList)
2 0.000 0.000 0.000 0.000 axis.py:667(__init__)
1 0.000 0.000 0.000 0.000 axis.py:691(Axis)
1 0.000 0.000 0.021 0.021 backend_agg.py:21(<module>)
1 0.000 0.000 0.000 0.000 backend_agg.py:401(FigureCanvasAgg)
1 0.000 0.000 0.000 0.000 backend_agg.py:599(_BackendAgg)
1 0.000 0.000 0.000 0.000 backend_agg.py:67(RendererAgg)
1 0.000 0.000 0.000 0.000 backend_bases.py:1231(TimerBase)
1 0.000 0.000 0.000 0.000 backend_bases.py:129(_Backend)
1 0.000 0.000 0.000 0.000 backend_bases.py:1386(Event)
1 0.000 0.000 0.000 0.000 backend_bases.py:1410(IdleEvent)
1 0.000 0.000 0.000 0.000 backend_bases.py:1418(DrawEvent)
1 0.000 0.000 0.000 0.000 backend_bases.py:1446(ResizeEvent)
1 0.000 0.000 0.000 0.000 backend_bases.py:1467(CloseEvent)
1 0.000 0.000 0.000 0.000 backend_bases.py:1476(LocationEvent)
1 0.000 0.000 0.000 0.000 backend_bases.py:1577(MouseEvent)
1 0.000 0.000 0.000 0.000 backend_bases.py:1640(PickEvent)
1 0.000 0.000 0.000 0.000 backend_bases.py:1684(KeyEvent)
1 0.000 0.000 0.000 0.000 backend_bases.py:1724(FigureCanvasBase)
3 0.000 0.000 0.000 0.000 backend_bases.py:212(export)
3 0.000 0.000 0.000 0.000 backend_bases.py:224(Show)
1 0.000 0.000 0.000 0.000 backend_bases.py:232(ShowBase)
1 0.000 0.000 0.000 0.000 backend_bases.py:243(RendererBase)
1 0.000 0.000 0.000 0.000 backend_bases.py:2646(NonGuiException)
1 0.000 0.000 0.000 0.000 backend_bases.py:2650(FigureManagerBase)
1 0.000 0.000 0.000 0.000 backend_bases.py:2727(NavigationToolbar2)
1 0.000 0.000 0.000 0.000 backend_bases.py:3218(ToolContainerBase)
1 0.000 0.000 0.273 0.273 backend_bases.py:33(<module>)
1 0.000 0.000 0.000 0.000 backend_bases.py:3363(StatusbarBase)
1 0.000 0.000 0.000 0.000 backend_bases.py:844(GraphicsContextBase)
4 0.000 0.000 0.000 0.000 backend_bases.py:94(register_backend)
1 0.000 0.000 0.000 0.000 backend_managers.py:18(ToolEvent)
1 0.000 0.000 0.000 0.000 backend_managers.py:27(ToolTriggerEvent)
1 0.000 0.000 0.000 0.000 backend_managers.py:34(ToolManagerMessageEvent)
1 0.000 0.000 0.000 0.000 backend_managers.py:46(ToolManager)
1 0.000 0.000 0.000 0.000 backend_managers.py:5(<module>)
1 0.001 0.001 0.692 0.692 backend_qt5.py:1(<module>)
1 0.000 0.000 0.000 0.000 backend_qt5.py:1002(StatusbarQt)
1 0.000 0.000 0.000 0.000 backend_qt5.py:1012(ConfigureSubplotsQt)
1 0.000 0.000 0.000 0.000 backend_qt5.py:1022(SaveFigureQt)
1 0.000 0.000 0.000 0.000 backend_qt5.py:1058(SetCursorQt)
1 0.000 0.000 0.000 0.000 backend_qt5.py:1063(RubberbandQt)
1 0.000 0.000 0.000 0.000 backend_qt5.py:1106(_BackendQT5)
1 0.000 0.000 0.000 0.000 backend_qt5.py:140(_allow_super_init)
1 0.000 0.000 0.000 0.000 backend_qt5.py:182(TimerQT)
1 0.000 0.000 0.000 0.000 backend_qt5.py:222(FigureCanvasQT)
1 0.000 0.000 0.000 0.000 backend_qt5.py:542(MainWindow)
1 0.000 0.000 0.000 0.000 backend_qt5.py:550(FigureManagerQT)
1 0.000 0.000 0.000 0.000 backend_qt5.py:695(NavigationToolbar2QT)
1 0.000 0.000 0.000 0.000 backend_qt5.py:868(SubplotToolQt)
1 0.000 0.000 0.000 0.000 backend_qt5.py:936(ToolbarQt)
1 0.000 0.000 0.000 0.000 backend_qt5agg.py:103(_BackendQT5Agg)
1 0.000 0.000 0.000 0.000 backend_qt5agg.py:21(FigureCanvasQTAgg)
1 0.000 0.000 0.767 0.767 backend_qt5agg.py:3(<module>)
1 0.000 0.000 0.000 0.000 backend_qt5agg.py:98(FigureCanvasQTAggBase)
1 0.000 0.000 0.000 0.000 backend_tools.py:12(<module>)
1 0.000 0.000 0.000 0.000 backend_tools.py:146(ToolToggleBase)
1 0.000 0.000 0.000 0.000 backend_tools.py:236(SetCursorBase)
1 0.000 0.000 0.000 0.000 backend_tools.py:25(Cursors)
1 0.000 0.000 0.000 0.000 backend_tools.py:308(ToolCursorPosition)
1 0.000 0.000 0.000 0.000 backend_tools.py:34(ToolBase)
1 0.000 0.000 0.000 0.000 backend_tools.py:353(RubberbandBase)
1 0.000 0.000 0.000 0.000 backend_tools.py:381(ToolQuit)
1 0.000 0.000 0.000 0.000 backend_tools.py:391(ToolQuitAll)
1 0.000 0.000 0.000 0.000 backend_tools.py:401(ToolEnableAllNavigation)
1 0.000 0.000 0.000 0.000 backend_tools.py:417(ToolEnableNavigation)
1 0.000 0.000 0.000 0.000 backend_tools.py:434(_ToolGridBase)
1 0.000 0.000 0.000 0.000 backend_tools.py:468(ToolGrid)
1 0.000 0.000 0.000 0.000 backend_tools.py:489(ToolMinorGrid)
1 0.000 0.000 0.000 0.000 backend_tools.py:509(ToolFullScreen)
1 0.000 0.000 0.000 0.000 backend_tools.py:522(AxisScaleBase)
1 0.000 0.000 0.000 0.000 backend_tools.py:539(ToolYScale)
1 0.000 0.000 0.000 0.000 backend_tools.py:549(ToolXScale)
1 0.000 0.000 0.000 0.000 backend_tools.py:559(ToolViewsPositions)
1 0.000 0.000 0.000 0.000 backend_tools.py:711(ViewsPositionsBase)
1 0.000 0.000 0.000 0.000 backend_tools.py:723(ToolHome)
1 0.000 0.000 0.000 0.000 backend_tools.py:732(ToolBack)
1 0.000 0.000 0.000 0.000 backend_tools.py:741(ToolForward)
1 0.000 0.000 0.000 0.000 backend_tools.py:750(ConfigureSubplotsBase)
1 0.000 0.000 0.000 0.000 backend_tools.py:757(SaveFigureBase)
1 0.000 0.000 0.000 0.000 backend_tools.py:765(ZoomPanBase)
1 0.000 0.000 0.000 0.000 backend_tools.py:829(ToolZoom)
1 0.000 0.000 0.000 0.000 backend_tools.py:955(ToolPan)
1 0.000 0.000 0.000 0.000 base64.py:3(<module>)
1 0.000 0.000 0.000 0.000 base64mime.py:25(<module>)
1 0.000 0.000 0.000 0.000 bezier.py:152(BezierSegment)
1 0.000 0.000 0.000 0.000 bezier.py:17(NonIntersectingPathException)
1 0.000 0.000 0.000 0.000 bezier.py:3(<module>)
1 0.000 0.000 0.000 0.000 bisect.py:1(<module>)
1 0.000 0.000 0.000 0.000 blocking_input.py:124(BlockingMouseInput)
1 0.000 0.000 0.000 0.000 blocking_input.py:23(<module>)
1 0.000 0.000 0.000 0.000 blocking_input.py:296(BlockingContourLabeler)
1 0.000 0.000 0.000 0.000 blocking_input.py:349(BlockingKeyMouseInput)
1 0.000 0.000 0.000 0.000 blocking_input.py:36(BlockingInput)
1 0.000 0.000 0.000 0.000 bz2.py:32(BZ2File)
1 0.000 0.000 0.002 0.002 bz2.py:5(<module>)
1 0.000 0.000 0.000 0.000 calendar.py:129(Calendar)
1 0.000 0.000 0.000 0.000 calendar.py:135(__init__)
1 0.000 0.000 0.000 0.000 calendar.py:141(setfirstweekday)
1 0.000 0.000 0.000 0.000 calendar.py:24(IllegalMonthError)
1 0.000 0.000 0.000 0.000 calendar.py:260(TextCalendar)
1 0.000 0.000 0.000 0.000 calendar.py:31(IllegalWeekdayError)
1 0.000 0.000 0.000 0.000 calendar.py:377(HTMLCalendar)
1 0.000 0.000 0.000 0.000 calendar.py:489(different_locale)
1 0.000 0.000 0.000 0.000 calendar.py:50(_localized_month)
1 0.000 0.000 0.000 0.000 calendar.py:501(LocaleTextCalendar)
1 0.000 0.000 0.000 0.000 calendar.py:52(<listcomp>)
1 0.000 0.000 0.000 0.000 calendar.py:532(LocaleHTMLCalendar)
2 0.000 0.000 0.000 0.000 calendar.py:55(__init__)
1 0.000 0.000 0.000 0.000 calendar.py:6(<module>)
1 0.000 0.000 0.000 0.000 calendar.py:69(_localized_day)
1 0.000 0.000 0.000 0.000 calendar.py:72(<listcomp>)
2 0.000 0.000 0.000 0.000 calendar.py:74(__init__)
1 0.000 0.000 0.000 0.000 camera.py:114(EVENT)
1 0.000 0.000 0.000 0.000 camera.py:24(VIDEO)
1 0.729 0.729 211.321 211.321 camera.py:42(__init__)
1 2.174 2.174 210.592 210.592 camera.py:56(extract_frames)
1 0.000 0.000 0.000 0.000 camera.py:69(CAMERA)
1 0.000 0.000 221.148 221.148 camera.py:8(<module>)
1 0.000 0.000 0.025 0.025 case.py:1(<module>)
1 0.000 0.000 0.000 0.000 case.py:128(_BaseTestCaseContext)
10 0.000 0.000 0.000 0.000 case.py:1316(_deprecate)
1 0.000 0.000 0.000 0.000 case.py:1338(FunctionTestCase)
1 0.000 0.000 0.000 0.000 case.py:137(_AssertRaisesBaseContext)
1 0.000 0.000 0.000 0.000 case.py:1396(_SubTest)
1 0.000 0.000 0.000 0.000 case.py:184(_AssertRaisesContext)
1 0.000 0.000 0.000 0.000 case.py:221(_AssertWarnsContext)
1 0.000 0.000 0.000 0.000 case.py:25(SkipTest)
1 0.000 0.000 0.000 0.000 case.py:278(_CapturingHandler)
1 0.000 0.000 0.000 0.000 case.py:297(_AssertLogsContext)
1 0.000 0.000 0.000 0.000 case.py:33(_ShouldStop)
1 0.000 0.000 0.000 0.000 case.py:341(TestCase)
1 0.000 0.000 0.000 0.000 case.py:38(_UnexpectedSuccess)
1 0.000 0.000 0.000 0.000 case.py:44(_Outcome)
1 0.000 0.000 0.000 0.000 category.py:121(StrCategoryLocator)
1 0.000 0.000 0.013 0.013 category.py:13(<module>)
1 0.000 0.000 0.000 0.000 category.py:139(StrCategoryFormatter)
1 0.000 0.000 0.000 0.000 category.py:171(UnitData)
1 0.000 0.000 0.000 0.000 category.py:35(StrCategoryConverter)
1 0.000 0.000 0.000 0.000 charset.py:167(Charset)
2 0.000 0.000 0.000 0.000 charset.py:211(__init__)
1 0.000 0.000 0.001 0.001 charset.py:6(<module>)
1 0.000 0.000 0.000 0.000 chebyshev.py:2109(Chebyshev)
1 0.000 0.000 0.000 0.000 chebyshev.py:88(<module>)
1 0.000 0.000 0.000 0.000 client.py:107(<dictcomp>)
1 0.000 0.000 0.000 0.000 client.py:1355(HTTPSConnection)
1 0.000 0.000 0.000 0.000 client.py:1411(HTTPException)
1 0.000 0.000 0.000 0.000 client.py:1416(NotConnected)
1 0.000 0.000 0.000 0.000 client.py:1419(InvalidURL)
1 0.000 0.000 0.000 0.000 client.py:1422(UnknownProtocol)
1 0.000 0.000 0.000 0.000 client.py:1427(UnknownTransferEncoding)
1 0.000 0.000 0.000 0.000 client.py:1430(UnimplementedFileMode)
1 0.000 0.000 0.000 0.000 client.py:1433(IncompleteRead)
1 0.000 0.000 0.000 0.000 client.py:1448(ImproperConnectionState)
1 0.000 0.000 0.000 0.000 client.py:1451(CannotSendRequest)
1 0.000 0.000 0.000 0.000 client.py:1454(CannotSendHeader)
1 0.000 0.000 0.000 0.000 client.py:1457(ResponseNotReady)
1 0.000 0.000 0.000 0.000 client.py:1460(BadStatusLine)
1 0.000 0.000 0.000 0.000 client.py:1467(LineTooLong)
1 0.000 0.000 0.000 0.000 client.py:1472(RemoteDisconnected)
1 0.000 0.000 0.000 0.000 client.py:164(HTTPMessage)
1 0.000 0.000 0.000 0.000 client.py:218(HTTPResponse)
1 0.000 0.000 0.038 0.038 client.py:69(<module>)
1 0.000 0.000 0.000 0.000 client.py:788(HTTPConnection)
1 0.000 0.000 0.000 0.000 cm.py:171(ScalarMappable)
33 0.000 0.000 0.000 0.000 cm.py:28(_reverser)
31 0.000 0.000 0.000 0.000 cm.py:34(revcmap)
60 0.000 0.000 0.000 0.000 cm.py:46(<listcomp>)
75 0.000 0.000 0.000 0.000 cm.py:51(_reverse_cmap_spec)
1 0.000 0.000 0.048 0.048 cm.py:6(<module>)
2 0.000 0.000 0.000 0.000 cm.py:63(<listcomp>)
150 0.000 0.000 0.009 0.000 cm.py:67(_generate_cmap)
1 0.000 0.000 0.000 0.000 cm.py:85(<dictcomp>)
36 0.000 0.000 0.000 0.000 codecs.py:259(__init__)
8 0.000 0.000 0.000 0.000 codecs.py:308(__init__)
66 0.000 0.000 0.000 0.000 codecs.py:318(decode)
1 0.000 0.000 0.058 0.058 collections.py:10(<module>)
1 0.000 0.000 0.000 0.000 collections.py:1007(BrokenBarHCollection)
1 0.000 0.000 0.000 0.000 collections.py:1054(RegularPolyCollection)
1 0.000 0.000 0.000 0.000 collections.py:1119(StarPolygonCollection)
1 0.000 0.000 0.000 0.000 collections.py:1126(AsteriskPolygonCollection)
1 0.000 0.000 0.000 0.000 collections.py:1133(LineCollection)
1 0.000 0.000 0.000 0.000 collections.py:1325(EventCollection)
1 0.000 0.000 0.000 0.000 collections.py:1578(CircleCollection)
1 0.000 0.000 0.000 0.000 collections.py:1598(EllipseCollection)
1 0.000 0.000 0.000 0.000 collections.py:1688(PatchCollection)
1 0.000 0.000 0.000 0.000 collections.py:1743(TriMesh)
1 0.000 0.000 0.000 0.000 collections.py:1813(QuadMesh)
1 0.000 0.000 0.000 0.000 collections.py:36(Collection)
1 0.000 0.000 0.000 0.000 collections.py:865(_CollectionWithSizes)
1 0.000 0.000 0.000 0.000 collections.py:914(PathCollection)
1 0.000 0.000 0.000 0.000 collections.py:940(PolyCollection)
1 0.000 0.000 0.000 0.000 colorbar.py:1309(ColorbarPatch)
1 0.000 0.000 0.776 0.776 colorbar.py:20(<module>)
1 0.000 0.000 0.000 0.000 colorbar.py:220(ColorbarBase)
1 0.000 0.000 0.000 0.000 colorbar.py:905(Colorbar)
1 0.000 0.000 0.000 0.000 colors.py:1000(LogNorm)
1472 0.001 0.000 0.002 0.000 colors.py:107(_is_nth_color)
1 0.000 0.000 0.000 0.000 colors.py:1071(SymLogNorm)
456 0.000 0.000 0.004 0.000 colors.py:112(is_color_like)
1 0.000 0.000 0.000 0.000 colors.py:1188(PowerNorm)
1 0.000 0.000 0.000 0.000 colors.py:1263(BoundaryNorm)
1 0.000 0.000 0.000 0.000 colors.py:1349(NoNorm)
1016 0.002 0.000 0.007 0.000 colors.py:142(to_rgba)
1 0.000 0.000 0.000 0.000 colors.py:1533(LightSource)
373 0.002 0.000 0.004 0.000 colors.py:176(_to_rgba_no_colorcycle)
432 0.000 0.000 0.000 0.000 colors.py:196(<genexpr>)
1260 0.000 0.000 0.000 0.000 colors.py:228(<genexpr>)
1 0.000 0.000 0.000 0.000 colors.py:298(ColorConverter)
572 0.000 0.000 0.004 0.000 colors.py:330(to_rgba)
1 0.000 0.000 0.000 0.000 colors.py:419(Colormap)
160 0.000 0.000 0.000 0.000 colors.py:431(__init__)
1 0.000 0.000 0.017 0.017 colors.py:45(<module>)
1 0.000 0.000 0.000 0.000 colors.py:625(LinearSegmentedColormap)
1 0.000 0.000 0.000 0.000 colors.py:63(_ColorMapping)
126 0.000 0.000 0.000 0.000 colors.py:632(__init__)
1 0.000 0.000 0.000 0.000 colors.py:64(__init__)
64 0.002 0.000 0.008 0.000 colors.py:706(from_list)
1 0.000 0.000 0.000 0.000 colors.py:778(ListedColormap)
34 0.000 0.000 0.000 0.000 colors.py:785(__init__)
1 0.000 0.000 0.000 0.000 colors.py:80(<dictcomp>)
1 0.000 0.000 0.000 0.000 colors.py:85(<dictcomp>)
1 0.000 0.000 0.000 0.000 colors.py:868(Normalize)
1 0.000 0.000 0.000 0.000 container.py:1(<module>)
1 0.000 0.000 0.000 0.000 container.py:10(Container)
1 0.000 0.000 0.000 0.000 container.py:112(BarContainer)
1 0.000 0.000 0.000 0.000 container.py:137(ErrorbarContainer)
1 0.000 0.000 0.000 0.000 container.py:169(StemContainer)
12 0.000 0.000 0.000 0.000 contextlib.py:129(contextmanager)
27 0.000 0.000 0.000 0.000 contextlib.py:157(helper)
27 0.000 0.000 0.000 0.000 contextlib.py:59(__init__)
27 0.000 0.000 0.259 0.010 contextlib.py:79(__enter__)
27 0.000 0.000 0.001 0.000 contextlib.py:85(__exit__)
1 0.000 0.000 0.000 0.000 contour.py:1376(QuadContourSet)
1 0.000 0.000 0.486 0.486 contour.py:3(<module>)
1 0.000 0.000 0.000 0.000 contour.py:39(ClabelText)
1 0.000 0.000 0.000 0.000 contour.py:54(ContourLabeler)
1 0.000 0.000 0.000 0.000 contour.py:734(ContourSet)
429 0.001 0.000 0.001 0.000 copy.py:268(_reconstruct)
429 0.001 0.000 0.003 0.000 copy.py:66(copy)
1 0.000 0.000 0.000 0.000 copyreg.py:12(pickle)
1 0.000 0.000 0.000 0.000 copyreg.py:22(constructor)
429 0.000 0.000 0.000 0.000 copyreg.py:87(__newobj__)
14 0.000 0.000 0.000 0.000 copyreg.py:96(_slotnames)
1 0.000 0.000 0.268 0.268 core.py:1(<module>)
1 0.000 0.000 0.000 0.000 core.py:1122(_DomainedBinaryOperation)
6 0.000 0.000 0.000 0.000 core.py:1143(__init__)
4 0.000 0.000 0.000 0.000 core.py:125(doc_note)
3 0.000 0.000 0.000 0.000 core.py:1360(getmask)
43 0.000 0.000 0.000 0.000 core.py:150(get_object_signature)
1 0.000 0.000 0.268 0.268 core.py:159(load_base_library)
1 0.000 0.000 0.000 0.000 core.py:166(iter_user_libraries)
1 0.000 0.000 0.000 0.000 core.py:167(MAError)
1 0.000 0.000 0.000 0.000 core.py:173(update_user_library)
1 0.000 0.000 0.000 0.000 core.py:175(MaskError)
27 0.000 0.000 0.001 0.000 core.py:181(iter_style_files)
1 0.000 0.000 0.268 0.268 core.py:191(read_style_directory)
1 0.000 0.000 0.000 0.000 core.py:207(<listcomp>)
1 0.000 0.000 0.000 0.000 core.py:209(<listcomp>)
1 0.000 0.000 0.002 0.002 core.py:21(<module>)
1 0.000 0.000 0.000 0.000 core.py:230(reload_library)
1 0.000 0.000 0.000 0.000 core.py:2374(_MaskedPrintOption)
1 0.000 0.000 0.000 0.000 core.py:2380(__init__)
8 0.000 0.000 0.000 0.000 core.py:2547(_arraymethod)
1 0.000 0.000 0.000 0.000 core.py:2592(MaskedIterator)
1 0.000 0.000 0.000 0.000 core.py:2706(MaskedArray)
1 0.000 0.000 0.000 0.000 core.py:2771(__new__)
2 0.000 0.000 0.000 0.000 core.py:2908(_update_from)
2 0.000 0.000 0.000 0.000 core.py:2934(__array_finalize__)
1 0.000 0.000 0.000 0.000 core.py:3064(view)
7 0.000 0.000 0.000 0.000 core.py:3372(__setattr__)
26 0.000 0.000 0.000 0.000 core.py:57(is_style_file)
1 0.000 0.000 0.000 0.000 core.py:6058(mvoid)
1 0.000 0.000 0.000 0.000 core.py:6254(MaskedConstant)
2 0.000 0.000 0.000 0.000 core.py:6258(__has_singleton)
1 0.000 0.000 0.000 0.000 core.py:6264(__new__)
1 0.000 0.000 0.000 0.000 core.py:6282(__array_finalize__)
1 0.000 0.000 0.000 0.000 core.py:6420(_extrema_operation)
2 0.000 0.000 0.000 0.000 core.py:6429(__init__)
1 0.000 0.000 0.000 0.000 core.py:6539(_frommethod)
26 0.000 0.000 0.000 0.000 core.py:6550(__init__)
26 0.000 0.000 0.000 0.000 core.py:6555(getdoc)
1 0.000 0.000 0.000 0.000 core.py:794(_DomainCheckInterval)
1 0.000 0.000 0.000 0.000 core.py:8015(_convert2ma)
8 0.000 0.000 0.000 0.000 core.py:8028(__init__)
3 0.000 0.000 0.000 0.000 core.py:803(__init__)
8 0.000 0.000 0.000 0.000 core.py:8033(getdoc)
1 0.000 0.000 0.000 0.000 core.py:819(_DomainTan)
1 0.000 0.000 0.000 0.000 core.py:827(__init__)
1 0.000 0.000 0.000 0.000 core.py:837(_DomainSafeDivide)
6 0.000 0.000 0.000 0.000 core.py:843(__init__)
1 0.000 0.000 0.000 0.000 core.py:858(_DomainGreater)
3 0.000 0.000 0.000 0.000 core.py:864(__init__)
1 0.000 0.000 0.000 0.000 core.py:874(_DomainGreaterEqual)
2 0.000 0.000 0.000 0.000 core.py:880(__init__)
1 0.000 0.000 0.000 0.000 core.py:890(_MaskedUFunc)
53 0.000 0.000 0.000 0.000 core.py:891(__init__)
1 0.000 0.000 0.000 0.000 core.py:900(_MaskedUnaryOperation)
27 0.000 0.000 0.000 0.000 core.py:918(__init__)
1 0.000 0.000 0.000 0.000 core.py:94(MaskedArrayFutureWarning)
1 0.000 0.000 0.000 0.000 core.py:974(_MaskedBinaryOperation)
18 0.000 0.000 0.000 0.000 core.py:994(__init__)
66 0.000 0.000 0.001 0.000 cp1252.py:22(decode)
1 0.000 0.000 0.000 0.000 csv.py:131(DictWriter)
1 0.000 0.000 0.000 0.000 csv.py:166(Sniffer)
1 0.000 0.000 0.000 0.000 csv.py:24(Dialect)
1 0.000 0.000 0.000 0.000 csv.py:4(<module>)
1 0.000 0.000 0.000 0.000 csv.py:55(excel)
1 0.000 0.000 0.000 0.000 csv.py:65(excel_tab)
1 0.000 0.000 0.000 0.000 csv.py:70(unix_dialect)
1 0.000 0.000 0.000 0.000 csv.py:81(DictReader)
1 0.000 0.000 0.000 0.000 ctypeslib.py:177(_ndptr)
12 0.000 0.000 0.000 0.000 ctypeslib.py:331(prep_simple)
1 0.000 0.000 0.000 0.000 ctypeslib.py:51(<module>)
17 0.000 0.000 0.000 0.000 cycler.py:112(__init__)
90 0.000 0.000 0.000 0.000 cycler.py:138(keys)
18 0.000 0.000 0.000 0.000 cycler.py:145(change_key)
17 0.000 0.000 0.000 0.000 cycler.py:191(_from_iter)
138 0.000 0.000 0.000 0.000 cycler.py:212(<genexpr>)
18 0.000 0.000 0.000 0.000 cycler.py:225(__iter__)
149 0.000 0.000 0.000 0.000 cycler.py:227(<genexpr>)
18 0.000 0.000 0.000 0.000 cycler.py:349(by_key)
36 0.000 0.000 0.000 0.000 cycler.py:371(<genexpr>)
1 0.000 0.000 0.000 0.000 cycler.py:41(<module>)
17 0.000 0.000 0.000 0.000 cycler.py:468(cycler)
17 0.000 0.000 0.000 0.000 cycler.py:529(_cycler)
17 0.000 0.000 0.000 0.000 cycler.py:55(_process_keys)
1 0.000 0.000 0.000 0.000 cycler.py:77(Cycler)
1 0.000 0.000 0.000 0.000 dates.py:1056(RRuleLocator)
1 0.000 0.000 0.000 0.000 dates.py:1161(AutoDateLocator)
1 0.000 0.000 0.082 0.082 dates.py:137(<module>)
1 0.000 0.000 0.000 0.000 dates.py:1385(YearLocator)
1 0.000 0.000 0.000 0.000 dates.py:1449(MonthLocator)
1 0.000 0.000 0.000 0.000 dates.py:1474(WeekdayLocator)
1 0.000 0.000 0.000 0.000 dates.py:1502(DayLocator)
1 0.000 0.000 0.000 0.000 dates.py:1529(HourLocator)
1 0.000 0.000 0.000 0.000 dates.py:1549(MinuteLocator)
1 0.000 0.000 0.000 0.000 dates.py:1569(SecondLocator)
1 0.000 0.000 0.000 0.000 dates.py:1589(MicrosecondLocator)
1 0.000 0.000 0.000 0.000 dates.py:1781(DateConverter)
1 0.000 0.000 0.000 0.000 dates.py:188(_UTC)
1 0.000 0.000 0.000 0.000 dates.py:347(strpdate2num)
1 0.000 0.000 0.000 0.000 dates.py:363(bytespdate2num)
1 0.000 0.000 0.000 0.000 dates.py:605(DateFormatter)
1 0.000 0.000 0.000 0.000 dates.py:745(IndexDateFormatter)
1 0.000 0.000 0.000 0.000 dates.py:772(AutoDateFormatter)
1 0.000 0.000 0.000 0.000 dates.py:871(rrulewrapper)
1 0.000 0.000 0.000 0.000 dates.py:976(DateLocator)
1 0.000 0.000 0.000 0.000 datetime.py:1023(time)
2 0.000 0.000 0.000 0.000 datetime.py:1048(__new__)
1 0.000 0.000 0.000 0.000 datetime.py:1360(datetime)
3 0.000 0.000 0.000 0.000 datetime.py:1368(__new__)
1 0.000 0.000 0.000 0.000 datetime.py:1949(timezone)
3 0.000 0.000 0.000 0.000 datetime.py:1972(_create)
35 0.000 0.000 0.000 0.000 datetime.py:261(_check_int_field)
5 0.000 0.000 0.000 0.000 datetime.py:278(_check_date_fields)
5 0.000 0.000 0.000 0.000 datetime.py:291(_check_time_fields)
5 0.000 0.000 0.000 0.000 datetime.py:308(_check_tzinfo_arg)
1 0.000 0.000 0.000 0.000 datetime.py:336(timedelta)
9 0.000 0.000 0.000 0.000 datetime.py:355(__new__)
3 0.000 0.000 0.000 0.000 datetime.py:40(_days_before_year)
5 0.000 0.000 0.000 0.000 datetime.py:45(_days_in_month)
1 0.000 0.000 0.001 0.001 datetime.py:5(<module>)
1 0.000 0.000 0.000 0.000 datetime.py:530(__neg__)
1 0.000 0.000 0.000 0.000 datetime.py:658(date)
2 0.000 0.000 0.000 0.000 datetime.py:688(__new__)
1 0.000 0.000 0.000 0.000 datetime.py:953(tzinfo)
1 0.000 0.000 0.442 0.442 decimal.py:2(<module>)
1 0.000 0.000 0.002 0.002 decoder.py:2(<module>)
1 0.000 0.000 0.000 0.000 decoder.py:20(JSONDecodeError)
1 0.000 0.000 0.000 0.000 decoder.py:253(JSONDecoder)
2 0.000 0.000 0.000 0.000 decoder.py:283(__init__)
2 0.000 0.000 0.009 0.005 decoder.py:334(decode)
2 0.005 0.002 0.009 0.005 decoder.py:345(raw_decode)
1 0.000 0.000 0.180 0.180 decorators.py:15(<module>)
1 0.000 0.000 0.212 0.212 decorators.py:5(<module>)
1 0.000 0.000 0.000 0.000 defchararray.py:1669(chararray)
1 0.000 0.000 0.000 0.000 defchararray.py:17(<module>)
1 0.000 0.000 0.001 0.001 defmatrix.py:1(<module>)
1 0.000 0.000 0.000 0.000 defmatrix.py:174(matrix)
1 0.000 0.000 0.000 0.000 deprecation.py:1(<module>)
156 0.000 0.000 0.000 0.000 deprecation.py:110(deprecated)
156 0.001 0.000 0.005 0.000 deprecation.py:163(deprecate)
24 0.000 0.000 0.000 0.000 deprecation.py:174(finalize)
132 0.000 0.000 0.001 0.000 deprecation.py:197(finalize)
2/1 0.000 0.000 0.000 0.000 deprecation.py:206(wrapper)
156 0.000 0.000 0.000 0.000 deprecation.py:23(_generate_deprecation_message)
1 0.000 0.000 0.000 0.000 deprecation.py:6(MatplotlibDeprecationWarning)
1 0.000 0.000 0.000 0.000 difflib.py:1703(HtmlDiff)
1 0.000 0.000 0.001 0.001 difflib.py:27(<module>)
1 0.000 0.000 0.000 0.000 difflib.py:43(SequenceMatcher)
1 0.000 0.000 0.000 0.000 difflib.py:751(Differ)
1 0.000 0.000 0.002 0.002 dis.py:1(<module>)
1 0.000 0.000 0.000 0.000 dis.py:178(Instruction)
1 0.000 0.000 0.000 0.000 dis.py:416(Bytecode)
1 0.000 0.000 0.000 0.000 docstring.py:1(<module>)
80 0.000 0.000 0.000 0.000 docstring.py:100(copy)
80 0.000 0.000 0.000 0.000 docstring.py:102(do_copy)
1 0.000 0.000 0.000 0.000 docstring.py:11(Substitution)
79 0.000 0.000 0.002 0.000 docstring.py:113(dedent_interpd)
79 0.000 0.000 0.000 0.000 docstring.py:121(copy_dedent)
79 0.000 0.000 0.001 0.000 docstring.py:128(<lambda>)
4 0.000 0.000 0.000 0.000 docstring.py:39(__init__)
83 0.000 0.000 0.000 0.000 docstring.py:44(__call__)
45 0.000 0.000 0.000 0.000 docstring.py:48(update)
1 0.000 0.000 0.000 0.000 docstring.py:65(Appender)
54 0.000 0.000 0.000 0.000 docstring.py:84(__init__)
54 0.000 0.000 0.000 0.000 docstring.py:88(__call__)
158 0.000 0.000 0.002 0.000 docstring.py:94(dedent)
24 0.000 0.000 0.000 0.000 dviread.py:133(_dispatch)
24 0.000 0.000 0.000 0.000 dviread.py:164(decorate)
24 0.000 0.000 0.000 0.000 dviread.py:165(<listcomp>)
1 0.000 0.000 0.000 0.000 dviread.py:182(Dvi)
1 0.000 0.000 0.002 0.002 dviread.py:19(<module>)
1 0.000 0.000 0.000 0.000 dviread.py:197(<listcomp>)
1 0.000 0.000 0.000 0.000 dviread.py:512(DviFont)
1 0.000 0.000 0.000 0.000 dviread.py:602(Vf)
1 0.000 0.000 0.000 0.000 dviread.py:733(Tfm)
1 0.000 0.000 0.000 0.000 dviread.py:788(PsfontsMap)
1 0.000 0.000 0.000 0.000 dviread.py:953(Encoding)
1 0.000 0.000 0.000 0.000 einsumfunc.py:4(<module>)
1 0.000 0.000 0.000 0.000 encoder.py:104(__init__)
1 0.000 0.000 0.000 0.000 encoder.py:2(<module>)
1 0.000 0.000 0.000 0.000 encoder.py:73(JSONEncoder)
1 0.000 0.000 0.001 0.001 encoders.py:5(<module>)
15 0.000 0.000 0.000 0.000 enum.py:114(__prepare__)
15 0.001 0.000 0.003 0.000 enum.py:124(__new__)
15 0.000 0.000 0.000 0.000 enum.py:135(<dictcomp>)
15 0.000 0.000 0.000 0.000 enum.py:160(<setcomp>)
47 0.000 0.000 0.000 0.000 enum.py:179(<genexpr>)
165 0.000 0.000 0.000 0.000 enum.py:20(_is_descriptor)
1976 0.001 0.000 0.005 0.000 enum.py:265(__call__)
203 0.000 0.000 0.000 0.000 enum.py:28(_is_dunder)
15 0.000 0.000 0.000 0.000 enum.py:310(__getattr__)
15 0.000 0.000 0.000 0.000 enum.py:335(__members__)
269 0.000 0.000 0.000 0.000 enum.py:351(__setattr__)
203 0.000 0.000 0.000 0.000 enum.py:36(_is_sunder)
12 0.000 0.000 0.003 0.000 enum.py:364(_create_)
42 0.000 0.000 0.000 0.000 enum.py:417(_get_mixins_)
1 0.000 0.000 0.000 0.000 enum.py:43(_make_class_unpicklable)
15 0.000 0.000 0.000 0.000 enum.py:462(_find_new_)
1964 0.001 0.000 0.002 0.000 enum.py:515(__new__)
231 0.000 0.000 0.000 0.000 enum.py:592(name)
11 0.000 0.000 0.000 0.000 enum.py:597(value)
12 0.000 0.000 0.004 0.000 enum.py:602(_convert)
12 0.000 0.000 0.001 0.000 enum.py:623(<listcomp>)
101 0.000 0.000 0.000 0.000 enum.py:628(<lambda>)
15 0.000 0.000 0.000 0.000 enum.py:65(__init__)
203 0.000 0.000 0.001 0.000 enum.py:70(__setitem__)