-
Notifications
You must be signed in to change notification settings - Fork 17
/
test_results
3643 lines (3639 loc) · 269 KB
/
test_results
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
Performing hit-testing of dose grid voxels...
3248740 function calls (3228128 primitive calls) in 3.737 seconds
Ordered by: cumulative time
ncalls tottime percall cumtime percall filename:lineno(function)
580/1 0.003 0.000 3.737 3.737 {built-in method builtins.exec}
1 0.000 0.000 3.737 3.737 example.py:1(<module>)
1 1.810 1.810 2.616 2.616 conehead.py:18(calculate)
59 0.002 0.000 1.333 0.023 __init__.py:1(<module>)
664/9 0.003 0.000 0.931 0.103 <frozen importlib._bootstrap>:1022(_find_and_load)
661/9 0.022 0.000 0.931 0.103 <frozen importlib._bootstrap>:987(_find_and_load_unlocked)
623/10 0.002 0.000 0.930 0.093 <frozen importlib._bootstrap>:664(_load_unlocked)
531/9 0.001 0.000 0.930 0.103 <frozen importlib._bootstrap_external>:877(exec_module)
924/11 0.000 0.000 0.929 0.084 <frozen importlib._bootstrap>:233(_call_with_frames_removed)
538/38 0.001 0.000 0.861 0.023 {built-in method builtins.__import__}
736/121 0.001 0.000 0.805 0.007 <frozen importlib._bootstrap>:1053(_handle_fromlist)
1 0.000 0.000 0.650 0.650 conehead.py:1(<module>)
1 0.000 0.000 0.594 0.594 pyplot.py:1(<module>)
1413/1273 0.013 0.000 0.552 0.000 {built-in method builtins.__build_class__}
101 0.001 0.000 0.481 0.005 artist.py:128(_update_set_signature_and_docstring)
100 0.000 0.000 0.477 0.005 artist.py:104(__init_subclass__)
64000 0.252 0.000 0.358 0.000 geometry.py:105(line_block_plane_collision)
64000 0.357 0.000 0.357 0.000 block.py:36(transmission)
1 0.000 0.000 0.316 0.316 figure.py:1(<module>)
114 0.000 0.000 0.314 0.003 artist.py:1730(kwdoc)
33099 0.016 0.000 0.255 0.000 inspect.py:725(getdoc)
216 0.016 0.000 0.249 0.001 artist.py:1422(get_setters)
1 0.000 0.000 0.241 0.241 colorbar.py:1(<module>)
32044 0.149 0.000 0.236 0.000 inspect.py:744(cleandoc)
114 0.003 0.000 0.224 0.002 artist.py:1491(pprint_setters)
27386 0.010 0.000 0.223 0.000 artist.py:1441(is_alias)
1 0.001 0.001 0.189 0.189 block.py:9(__init__)
216 0.000 0.000 0.170 0.001 artist.py:1327(__init__)
216 0.008 0.000 0.169 0.001 artist.py:1347(get_aliases)
1 0.000 0.000 0.164 0.164 block.py:1(<module>)
1 0.095 0.095 0.162 0.162 index_tricks.py:148(__getitem__)
1 0.000 0.000 0.158 0.158 _subplots.py:1(<module>)
1 0.000 0.000 0.147 0.147 _axes.py:1(<module>)
8714 0.003 0.000 0.138 0.000 inspect.py:3245(signature)
8714 0.003 0.000 0.134 0.000 inspect.py:2991(from_callable)
8762/8724 0.022 0.000 0.132 0.000 inspect.py:2371(_signature_from_callable)
1 0.000 0.000 0.123 0.123 contour.py:1(<module>)
1 0.000 0.000 0.113 0.113 source.py:1(<module>)
1 0.000 0.000 0.107 0.107 collections.py:1(<module>)
192588 0.102 0.000 0.102 0.000 {built-in method numpy.array}
1 0.000 0.000 0.099 0.099 backend_bases.py:1(<module>)
8617 0.033 0.000 0.094 0.000 inspect.py:2276(_signature_from_function)
1 0.000 0.000 0.086 0.086 widgets.py:1(<module>)
1 0.000 0.000 0.084 0.084 patches.py:1(<module>)
4000 0.007 0.000 0.084 0.000 artist.py:1375(get_valid_values)
1 0.000 0.000 0.079 0.079 _interpolate.py:1(<module>)
1 0.000 0.000 0.077 0.077 axes3d.py:1(<module>)
128001 0.070 0.000 0.070 0.000 {method 'dot' of 'numpy.ndarray' objects}
531 0.003 0.000 0.069 0.000 <frozen importlib._bootstrap_external>:950(get_code)
1 0.000 0.000 0.067 0.067 dataelem.py:1(<module>)
1 0.067 0.067 0.067 0.067 numeric.py:1680(indices)
7315 0.004 0.000 0.053 0.000 re.py:288(_compile)
1 0.000 0.000 0.051 0.051 config.py:1(<module>)
262 0.001 0.000 0.047 0.000 sre_compile.py:783(compile)
531 0.001 0.000 0.045 0.000 <frozen importlib._bootstrap_external>:670(_compile_bytecode)
531 0.044 0.000 0.044 0.000 {built-in method marshal.loads}
21294/20614 0.004 0.000 0.042 0.000 {built-in method builtins.hasattr}
623/620 0.001 0.000 0.041 0.000 <frozen importlib._bootstrap>:564(module_from_spec)
1 0.000 0.000 0.041 0.041 art3d.py:1(<module>)
3 0.000 0.000 0.040 0.013 numpy_handler.py:1(<module>)
3 0.000 0.000 0.040 0.013 util.py:1(<module>)
9 0.000 0.000 0.040 0.004 __init__.py:108(import_module)
9 0.000 0.000 0.040 0.004 <frozen importlib._bootstrap>:1038(_gcd_import)
1 0.000 0.000 0.040 0.040 legend.py:1(<module>)
127 0.000 0.000 0.039 0.000 docstring.py:36(__call__)
1 0.000 0.000 0.039 0.039 _orthogonal.py:1(<module>)
1 0.000 0.000 0.039 0.039 geo.py:1(<module>)
1 0.000 0.000 0.039 0.039 __init__.py:209(__getattr__)
115/105 0.000 0.000 0.039 0.000 docstring.py:83(__call__)
13 0.000 0.000 0.038 0.003 docstring.py:55(__missing__)
1 0.000 0.000 0.037 0.037 rcsetup.py:1(<module>)
2 0.000 0.000 0.035 0.017 _base.py:1(<module>)
71/54 0.000 0.000 0.035 0.001 <frozen importlib._bootstrap_external>:1182(exec_module)
1 0.000 0.000 0.035 0.035 offsetbox.py:1(<module>)
71/54 0.014 0.000 0.035 0.001 {built-in method _imp.exec_dynamic}
650 0.003 0.000 0.032 0.000 <frozen importlib._bootstrap>:921(_find_spec)
23459 0.018 0.000 0.032 0.000 inspect.py:2630(__init__)
111 0.000 0.000 0.030 0.000 re.py:249(compile)
71 0.000 0.000 0.030 0.000 <frozen importlib._bootstrap_external>:1174(create_module)
71 0.028 0.000 0.030 0.000 {built-in method _imp.create_dynamic}
1 0.000 0.000 0.029 0.029 _add_newdocs_scalars.py:1(<module>)
262 0.001 0.000 0.029 0.000 sre_parse.py:944(parse)
1 0.000 0.000 0.028 0.028 platform.py:1(<module>)
1 0.000 0.000 0.028 0.028 fontconfig_pattern.py:1(<module>)
753/262 0.001 0.000 0.027 0.000 sre_parse.py:436(_parse_sub)
630 0.000 0.000 0.027 0.000 <frozen importlib._bootstrap_external>:1431(find_spec)
5185 0.002 0.000 0.027 0.000 re.py:197(search)
631/630 0.002 0.000 0.026 0.000 <frozen importlib._bootstrap_external>:1399(_get_spec)
912/286 0.010 0.000 0.026 0.000 sre_parse.py:494(_parse)
1 0.000 0.000 0.026 0.026 _sketches.py:1(<module>)
39 0.026 0.001 0.026 0.001 {method 'astype' of 'numpy.ndarray' objects}
1 0.000 0.000 0.025 0.025 polar.py:1(<module>)
1 0.000 0.000 0.025 0.025 axis.py:1(<module>)
521577/519644 0.024 0.000 0.024 0.000 {built-in method builtins.len}
1 0.000 0.000 0.023 0.023 subprocess.py:1(<module>)
891 0.006 0.000 0.023 0.000 <frozen importlib._bootstrap_external>:1536(find_spec)
1 0.000 0.000 0.022 0.022 image.py:1(<module>)
3 0.000 0.000 0.021 0.007 core.py:1(<module>)
1 0.000 0.000 0.021 0.021 data_manager.py:1(<module>)
8835 0.013 0.000 0.020 0.000 inspect.py:2913(__init__)
1 0.000 0.000 0.020 0.020 download.py:1(<module>)
198394 0.020 0.000 0.020 0.000 {built-in method builtins.min}
1 0.000 0.000 0.019 0.019 axis3d.py:1(<module>)
297354 0.019 0.000 0.019 0.000 {method 'lstrip' of 'str' objects}
1 0.000 0.000 0.018 0.018 _axes.py:46(Axes)
1 0.000 0.000 0.018 0.018 lines.py:1(<module>)
1 0.000 0.000 0.018 0.018 multiarray.py:1(<module>)
1 0.000 0.000 0.018 0.018 uid.py:1(<module>)
1 0.000 0.000 0.017 0.017 overrides.py:1(<module>)
1 0.000 0.000 0.017 0.017 request.py:1(<module>)
209520 0.014 0.000 0.017 0.000 {built-in method builtins.isinstance}
262 0.000 0.000 0.017 0.000 sre_compile.py:622(_code)
1 0.000 0.000 0.017 0.017 text.py:1(<module>)
1 0.000 0.000 0.016 0.016 quiver.py:1(<module>)
316 0.001 0.000 0.015 0.000 overrides.py:170(decorator)
1 0.000 0.000 0.015 0.015 valuerep.py:1(<module>)
1023/904 0.001 0.000 0.015 0.000 typing.py:306(inner)
100284 0.014 0.000 0.014 0.000 {built-in method builtins.getattr}
1 0.000 0.000 0.014 0.014 numeric.py:1(<module>)
30 0.002 0.000 0.014 0.000 __init__.py:759(_rc_params_in_file)
24033 0.008 0.000 0.014 0.000 enum.py:359(__call__)
1 0.000 0.000 0.014 0.014 datadict.py:1(<module>)
216 0.007 0.000 0.013 0.000 artist.py:1358(<listcomp>)
531 0.001 0.000 0.013 0.000 <frozen importlib._bootstrap_external>:1070(get_data)
1 0.000 0.000 0.013 0.013 client.py:1(<module>)
1893/262 0.006 0.000 0.013 0.000 sre_compile.py:87(_compile)
286 0.011 0.000 0.013 0.000 overrides.py:88(verify_matching_signatures)
1 0.000 0.000 0.012 0.012 _laplacian.py:1(<module>)
444 0.012 0.000 0.012 0.000 {built-in method builtins.dir}
2 0.000 0.000 0.011 0.006 core.py:193(read_style_directory)
8750 0.006 0.000 0.011 0.000 inspect.py:612(unwrap)
37987 0.011 0.000 0.011 0.000 {method 'split' of 'str' objects}
9097 0.011 0.000 0.011 0.000 {method 'search' of 're.Pattern' objects}
8617 0.007 0.000 0.011 0.000 inspect.py:66(get_annotations)
28 0.000 0.000 0.010 0.000 __init__.py:837(rc_params_from_file)
2184 0.003 0.000 0.010 0.000 inspect.py:663(_finddoc)
128906 0.010 0.000 0.010 0.000 {method 'startswith' of 'str' objects}
1261 0.001 0.000 0.010 0.000 __init__.py:623(__setitem__)
43269/43256 0.009 0.000 0.010 0.000 {method 'join' of 'str' objects}
623 0.002 0.000 0.010 0.000 <frozen importlib._bootstrap>:492(_init_module_attrs)
1 0.000 0.000 0.009 0.009 textpath.py:1(<module>)
128002 0.009 0.000 0.009 0.000 source.py:31(position)
1 0.000 0.000 0.009 0.009 table.py:1(<module>)
32055 0.009 0.000 0.009 0.000 {method 'expandtabs' of 'str' objects}
7049 0.009 0.000 0.009 0.000 {method 'format' of 'str' objects}
1 0.000 0.000 0.008 0.008 __init__.py:2237(class_factory)
1 0.000 0.000 0.008 0.008 _secondary_axes.py:1(<module>)
4767 0.003 0.000 0.008 0.000 <frozen importlib._bootstrap_external>:126(_path_join)
1 0.001 0.001 0.008 0.008 datadict.py:454(<dictcomp>)
1062 0.003 0.000 0.008 0.000 <frozen importlib._bootstrap_external>:380(cache_from_source)
1 0.000 0.000 0.008 0.008 _kdtree.py:1(<module>)
275/211 0.000 0.000 0.008 0.000 typing.py:401(__getitem__)
1 0.000 0.000 0.007 0.007 colors.py:1(<module>)
28475 0.005 0.000 0.007 0.000 inspect.py:2962(<genexpr>)
4904 0.001 0.000 0.007 0.000 datadict.py:386(dictionary_keyword)
2323 0.001 0.000 0.007 0.000 <frozen importlib._bootstrap_external>:140(_path_stat)
211 0.001 0.000 0.007 0.000 typing.py:483(Union)
41 0.000 0.000 0.007 0.000 std.py:1174(__iter__)
1 0.000 0.000 0.007 0.007 mixins.py:1(<module>)
1 0.000 0.000 0.007 0.007 mixins.py:59(NDArrayOperatorsMixin)
13 0.000 0.000 0.007 0.001 mixins.py:44(_numeric_methods)
14 0.000 0.000 0.007 0.000 mixins.py:26(_reflected_binary_method)
92 0.000 0.000 0.007 0.000 __init__.py:1338(_preprocess_data)
476 0.001 0.000 0.006 0.000 typing.py:1016(__init__)
1 0.000 0.000 0.006 0.006 _rotation_groups.py:1(<module>)
20 0.000 0.000 0.006 0.000 std.py:1212(update)
1 0.000 0.000 0.006 0.006 helpers.py:1(<module>)
1 0.000 0.000 0.006 0.006 cm.py:1(<module>)
21 0.000 0.000 0.006 0.000 std.py:1339(refresh)
1 0.000 0.000 0.006 0.006 parser.py:1(<module>)
22 0.000 0.000 0.006 0.000 std.py:1478(display)
2338 0.006 0.000 0.006 0.000 {built-in method posix.stat}
1 0.000 0.000 0.006 0.006 valuerep.py:75(<dictcomp>)
4914 0.002 0.000 0.006 0.000 datadict.py:244(get_entry)
1 0.000 0.000 0.006 0.006 feedparser.py:1(<module>)
1 0.000 0.000 0.006 0.006 common.py:1(<module>)
776 0.006 0.000 0.006 0.000 {method 'read' of '_io.BufferedReader' objects}
1 0.000 0.000 0.006 0.006 common.py:8(pyparsing_common)
1 0.000 0.000 0.006 0.006 py3k.py:1(<module>)
101 0.001 0.000 0.006 0.000 artist.py:139(<listcomp>)
4000 0.003 0.000 0.005 0.000 artist.py:1448(aliased_name)
1133 0.001 0.000 0.005 0.000 <frozen importlib._bootstrap>:391(cached)
1 0.001 0.001 0.005 0.005 mathtext.py:1(<module>)
1 0.000 0.000 0.005 0.005 valuerep.py:76(<dictcomp>)
1 0.000 0.000 0.005 0.005 _pickle.py:1(<module>)
1 0.000 0.000 0.005 0.005 _policybase.py:1(<module>)
64128 0.005 0.000 0.005 0.000 {built-in method builtins.abs}
1 0.000 0.000 0.005 0.005 spines.py:1(<module>)
602 0.001 0.000 0.005 0.000 <frozen importlib._bootstrap_external>:510(_get_cached)
531 0.005 0.000 0.005 0.000 {built-in method io.open_code}
1 0.000 0.000 0.005 0.005 artist.py:1(<module>)
41 0.002 0.000 0.005 0.000 enum.py:180(__new__)
1 0.000 0.000 0.005 0.005 _geometric_slerp.py:1(<module>)
1 0.000 0.000 0.005 0.005 cm.py:39(_gen_cmap_registry)
19668 0.004 0.000 0.005 0.000 inspect.py:277(isfunction)
1117 0.002 0.000 0.005 0.000 functools.py:35(update_wrapper)
17 0.000 0.000 0.005 0.000 rcsetup.py:710(validate_cycler)
1 0.000 0.000 0.005 0.005 _codata.py:1(<module>)
1 0.000 0.000 0.004 0.004 index_tricks.py:1(<module>)
11 0.000 0.000 0.004 0.000 core.py:1076(parse_string)
4 0.000 0.000 0.004 0.001 utils.py:1(<module>)
1 0.000 0.000 0.004 0.004 distance.py:1(<module>)
4767 0.003 0.000 0.004 0.000 <frozen importlib._bootstrap_external>:128(<listcomp>)
664 0.000 0.000 0.004 0.000 <frozen importlib._bootstrap>:169(__enter__)
61437 0.004 0.000 0.004 0.000 {method 'append' of 'list' objects}
2184 0.002 0.000 0.004 0.000 inspect.py:653(_findclass)
13 0.000 0.000 0.004 0.000 enum.py:536(_convert_)
1 0.000 0.000 0.004 0.004 iterative.py:1(<module>)
2 0.000 0.000 0.004 0.002 _matfuncs.py:1(<module>)
7 0.000 0.000 0.004 0.001 dataclasses.py:1175(wrap)
7 0.000 0.000 0.004 0.001 dataclasses.py:882(_process_class)
22 0.000 0.000 0.004 0.000 std.py:1164(__str__)
50 0.002 0.000 0.004 0.000 {built-in method builtins.eval}
1 0.000 0.000 0.004 0.004 ssl.py:1(<module>)
1 0.000 0.000 0.004 0.004 pillow_handler.py:1(<module>)
1 0.000 0.000 0.004 0.004 _mathtext.py:1(<module>)
262 0.001 0.000 0.004 0.000 sre_compile.py:560(_compile_info)
1 0.000 0.000 0.004 0.004 category.py:1(<module>)
12513 0.003 0.000 0.004 0.000 sre_parse.py:165(__getitem__)
1223 0.002 0.000 0.004 0.000 <frozen importlib._bootstrap>:179(_get_module_lock)
7810 0.002 0.000 0.004 0.000 sre_parse.py:255(get)
22 0.001 0.000 0.004 0.000 std.py:355(format_meter)
260/11 0.001 0.000 0.003 0.000 core.py:776(_parseNoCache)
47 0.000 0.000 0.003 0.000 __init__.py:1294(_add_data_doc)
63/11 0.000 0.000 0.003 0.000 core.py:3861(parseImpl)
66 0.000 0.000 0.003 0.000 utils.py:333(disp_len)
612 0.003 0.000 0.003 0.000 sre_compile.py:292(_optimize_charset)
43466 0.003 0.000 0.003 0.000 {method 'pop' of 'list' objects}
34 0.001 0.000 0.003 0.000 __init__.py:328(namedtuple)
136 0.001 0.000 0.003 0.000 {built-in method builtins.sum}
9644 0.002 0.000 0.003 0.000 inspect.py:632(_is_wrapper)
4064 0.002 0.000 0.003 0.000 typing.py:986(__setattr__)
942 0.002 0.000 0.003 0.000 typing.py:146(_type_check)
2350/724 0.003 0.000 0.003 0.000 sre_parse.py:175(getwidth)
4 0.002 0.001 0.003 0.001 _codata.py:1503(parse_constants_2002to2014)
66 0.000 0.000 0.003 0.000 utils.py:329(_text_width)
505/243 0.001 0.000 0.003 0.000 {built-in method numpy.core._multiarray_umath.implement_array_function}
32 0.000 0.000 0.003 0.000 colors.py:927(from_list)
1 0.000 0.000 0.003 0.003 scale.py:1(<module>)
39893 0.003 0.000 0.003 0.000 {method 'get' of 'dict' objects}
1 0.000 0.000 0.003 0.003 exceptions.py:1(<module>)
854 0.001 0.000 0.003 0.000 {built-in method builtins.any}
602 0.001 0.000 0.003 0.000 <frozen importlib._bootstrap_external>:1531(_get_spec)
784 0.000 0.000 0.003 0.000 <frozen importlib._bootstrap_external>:159(_path_isfile)
428 0.000 0.000 0.003 0.000 rcsetup.py:310(validate_color)
559 0.000 0.000 0.003 0.000 <frozen importlib._bootstrap>:216(_lock_unlock_module)
1 0.000 0.000 0.003 0.003 _mathtext.py:1882(Parser)
24019 0.003 0.000 0.003 0.000 enum.py:678(__new__)
4942 0.002 0.000 0.003 0.000 tag.py:42(Tag)
1 0.000 0.000 0.003 0.003 dataset.py:1(<module>)
14 0.000 0.000 0.003 0.000 enum.py:483(_create_)
4 0.000 0.000 0.003 0.001 version.py:1(<module>)
843 0.000 0.000 0.003 0.000 <frozen importlib._bootstrap_external>:150(_path_is_mode_type)
9 0.000 0.000 0.003 0.000 core.py:5392(__init__)
1 0.000 0.000 0.003 0.003 _mathtext.py:2467(<lambda>)
1 0.000 0.000 0.003 0.003 _mathtext.py:2467(<listcomp>)
29/8 0.000 0.000 0.003 0.000 core.py:4379(leave_whitespace)
1 0.000 0.000 0.003 0.003 rle_handler.py:1(<module>)
1 0.000 0.000 0.003 0.003 _misc.py:1(<module>)
1 0.000 0.000 0.003 0.003 Image.py:1(<module>)
9664 0.003 0.000 0.003 0.000 sre_parse.py:234(__next)
428 0.000 0.000 0.003 0.000 colors.py:111(is_color_like)
28 0.001 0.000 0.003 0.000 util.py:182(_collapse_string_to_ranges)
1 0.000 0.000 0.003 0.003 defmatrix.py:1(<module>)
8 0.000 0.000 0.003 0.000 core.py:2678(__init__)
137 0.000 0.000 0.003 0.000 rcsetup.py:88(f)
1 0.000 0.000 0.003 0.003 socket.py:1(<module>)
46068 0.003 0.000 0.003 0.000 {built-in method builtins.callable}
1601 0.001 0.000 0.003 0.000 re.py:187(match)
402 0.000 0.000 0.003 0.000 core.py:499(copy)
64 0.000 0.000 0.003 0.000 typing.py:523(Optional)
636/554 0.000 0.000 0.002 0.000 {built-in method builtins.next}
1 0.000 0.000 0.002 0.002 pathlib.py:1(<module>)
1 0.000 0.000 0.002 0.002 _parser.py:1(<module>)
36 0.000 0.000 0.002 0.000 dataclasses.py:412(_create_fn)
2 0.000 0.000 0.002 0.001 core.py:5684(srange)
1 0.000 0.000 0.002 0.002 std.py:560(__new__)
1166 0.000 0.000 0.002 0.000 abc.py:117(__instancecheck__)
1062 0.001 0.000 0.002 0.000 <frozen importlib._bootstrap_external>:132(_path_split)
144 0.001 0.000 0.002 0.000 deprecation.py:133(deprecate)
23891 0.002 0.000 0.002 0.000 {method 'isidentifier' of 'str' objects}
12923 0.002 0.000 0.002 0.000 utils.py:330(<genexpr>)
22 0.000 0.000 0.002 0.000 std.py:348(print_status)
602 0.001 0.000 0.002 0.000 <frozen importlib._bootstrap_external>:721(spec_from_file_location)
1 0.000 0.000 0.002 0.002 _internal.py:1(<module>)
1 0.000 0.000 0.002 0.002 PngImagePlugin.py:1(<module>)
1 0.000 0.000 0.002 0.002 ticker.py:1(<module>)
55/8 0.000 0.000 0.002 0.000 core.py:3635(leave_whitespace)
20 0.000 0.000 0.002 0.000 core.py:4779(parseImpl)
2590 0.002 0.000 0.002 0.000 {built-in method __new__ of type object at 0x95bbc0}
108 0.000 0.000 0.002 0.000 typing.py:1138(__getitem__)
407 0.000 0.000 0.002 0.000 deprecation.py:9(wrap)
1 0.000 0.000 0.002 0.002 std.py:657(get_lock)
1 0.000 0.000 0.002 0.002 std.py:92(__init__)
1 0.000 0.000 0.002 0.002 _dtype_like.py:1(<module>)
1 0.000 0.000 0.002 0.002 std.py:118(create_mp_lock)
402 0.001 0.000 0.002 0.000 copy.py:66(copy)
2 0.000 0.000 0.002 0.001 shape_base.py:1(<module>)
1166 0.000 0.000 0.002 0.000 {built-in method _abc._abc_instancecheck}
1 0.000 0.000 0.002 0.002 filereader.py:897(dcmread)
1 0.000 0.000 0.002 0.002 _pep440.py:1(<module>)
1 0.000 0.000 0.002 0.002 font_manager.py:1(<module>)
1 0.000 0.000 0.002 0.002 filereader.py:738(read_partial)
1223 0.002 0.000 0.002 0.000 <frozen importlib._bootstrap>:100(acquire)
112/55 0.000 0.000 0.002 0.000 core.py:3722(copy)
18 0.000 0.000 0.002 0.000 rcsetup.py:390(validate_font_properties)
11900 0.001 0.000 0.002 0.000 _mathtext.py:2469(<genexpr>)
9 0.000 0.000 0.002 0.000 fontconfig_pattern.py:119(parse)
1 0.000 0.000 0.002 0.002 _array_like.py:1(<module>)
566 0.001 0.000 0.002 0.000 enum.py:89(__setitem__)
239 0.000 0.000 0.002 0.000 rcsetup.py:282(validate_color_for_prop_cycle)
813 0.000 0.000 0.002 0.000 typing.py:515(<genexpr>)
61 0.000 0.000 0.002 0.000 rcsetup.py:107(<listcomp>)
1545/170 0.000 0.000 0.002 0.000 abc.py:121(__subclasscheck__)
1223 0.002 0.000 0.002 0.000 <frozen importlib._bootstrap>:125(release)
476 0.000 0.000 0.002 0.000 typing.py:947(__init__)
1545/170 0.002 0.000 0.002 0.000 {built-in method _abc._abc_subclasscheck}
448 0.000 0.000 0.002 0.000 colors.py:152(to_rgba)
321 0.000 0.000 0.002 0.000 function_base.py:475(add_newdoc)
622 0.000 0.000 0.002 0.000 _inspect.py:96(getargspec)
3 0.000 0.000 0.002 0.001 _add_newdocs.py:1(<module>)
25042 0.002 0.000 0.002 0.000 inspect.py:2680(name)
16/3 0.000 0.000 0.002 0.001 filereader.py:358(read_dataset)
147 0.000 0.000 0.002 0.000 typing.py:1147(copy_with)
24/12 0.001 0.000 0.002 0.000 core.py:4108(parseImpl)
15652 0.002 0.000 0.002 0.000 {method 'rstrip' of 'str' objects}
1 0.000 0.000 0.002 0.002 secrets.py:1(<module>)
1 0.000 0.000 0.002 0.002 pickle.py:1(<module>)
461 0.000 0.000 0.002 0.000 sre_parse.py:97(closegroup)
1 0.000 0.000 0.002 0.002 lapack.py:1(<module>)
982 0.000 0.000 0.002 0.000 <frozen importlib._bootstrap_external>:1356(_path_importer_cache)
3 0.000 0.000 0.002 0.001 patches.py:2165(pprint_styles)
56 0.000 0.000 0.002 0.000 deprecation.py:321(delete_parameter)
6 0.000 0.000 0.002 0.000 _version.py:1(<module>)
20/6 0.000 0.000 0.002 0.000 core.py:4373(parseImpl)
16 0.000 0.000 0.002 0.000 rcsetup.py:618(cycler)
1 0.000 0.000 0.002 0.002 _pep440.py:285(Version)
664 0.000 0.000 0.002 0.000 <frozen importlib._bootstrap>:173(__exit__)
1 0.000 0.000 0.002 0.002 tempfile.py:1(<module>)
11 0.000 0.000 0.002 0.000 decorator.py:177(create)
1 0.000 0.000 0.002 0.002 linalg.py:1(<module>)
94 0.002 0.000 0.002 0.000 {built-in method builtins.compile}
112/55 0.000 0.000 0.002 0.000 core.py:3724(<listcomp>)
1 0.000 0.000 0.002 0.002 core.py:5798(<listcomp>)
3 0.000 0.000 0.002 0.001 patches.py:2169(<listcomp>)
55 0.000 0.000 0.002 0.000 core.py:3643(<listcomp>)
4064 0.001 0.000 0.002 0.000 typing.py:935(_is_dunder)
264/157 0.000 0.000 0.002 0.000 core.py:1857(name)
1 0.000 0.000 0.002 0.002 filereader.py:1(<module>)
4175 0.001 0.000 0.002 0.000 {built-in method builtins.sorted}
213/110 0.000 0.000 0.002 0.000 core.py:1832(default_name)
531 0.000 0.000 0.002 0.000 <frozen importlib._bootstrap_external>:1089(path_stats)
481 0.001 0.000 0.002 0.000 typing.py:206(_collect_type_vars)
1 0.000 0.000 0.001 0.001 cli.py:1(<module>)
22 0.000 0.000 0.001 0.000 utils.py:341(disp_trim)
6741 0.001 0.000 0.001 0.000 {built-in method builtins.setattr}
104 0.000 0.000 0.001 0.000 abc.py:105(__new__)
136/41 0.000 0.000 0.001 0.000 filereader.py:41(data_element_generator)
1 0.000 0.000 0.001 0.001 fromnumeric.py:1(<module>)
9 0.000 0.000 0.001 0.000 decorator.py:200(decorate)
1 0.000 0.000 0.001 0.001 _logsumexp.py:1(<module>)
1 0.000 0.000 0.001 0.001 _fitpack_py.py:1(<module>)
1 0.000 0.000 0.001 0.001 __init__.py:189(_check_versions)
2 0.000 0.000 0.001 0.001 _basic.py:1(<module>)
531 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:585(_classify_pyc)
563 0.001 0.000 0.001 0.000 {method '__exit__' of '_io._IOBase' objects}
1671 0.001 0.000 0.001 0.000 {built-in method builtins.max}
5195 0.001 0.000 0.001 0.000 tag.py:176(__eq__)
34 0.000 0.000 0.001 0.000 <__array_function__ internals>:177(linspace)
1 0.000 0.000 0.001 0.001 axes3d.py:44(Axes3D)
58 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:1587(_fill_cache)
1 0.000 0.000 0.001 0.001 transforms.py:1(<module>)
6196 0.001 0.000 0.001 0.000 {method 'replace' of 'str' objects}
5231 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap>:244(_verbose_message)
1 0.000 0.000 0.001 0.001 pyplot.py:2046(_setup_pyplot_info_docstrings)
1 0.001 0.001 0.001 0.001 block.py:64(set_square)
1 0.000 0.000 0.001 0.001 shutil.py:1(<module>)
1 0.000 0.000 0.001 0.001 numerictypes.py:1(<module>)
41/11 0.000 0.000 0.001 0.000 typing.py:1046(__getitem__)
34 0.001 0.000 0.001 0.000 function_base.py:23(linspace)
3834 0.001 0.000 0.001 0.000 sre_parse.py:173(append)
404 0.000 0.000 0.001 0.000 re.py:202(sub)
8/4 0.000 0.000 0.001 0.000 filereader.py:461(read_sequence)
62 0.000 0.000 0.001 0.000 core.py:1352(__add__)
21/8 0.000 0.000 0.001 0.000 filereader.py:497(read_sequence_item)
1 0.000 0.000 0.001 0.001 header.py:1(<module>)
2 0.001 0.000 0.001 0.001 _util.py:1(<module>)
876 0.000 0.000 0.001 0.000 colors.py:106(_is_nth_color)
1 0.000 0.000 0.001 0.001 helpers.py:648(make_html_tags)
1 0.000 0.000 0.001 0.001 helpers.py:590(_makeTags)
1 0.000 0.000 0.001 0.001 message.py:1(<module>)
58 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:1343(_path_hooks)
4250 0.001 0.000 0.001 0.000 sre_parse.py:250(match)
6 0.000 0.000 0.001 0.000 _threadsafety.py:52(decorator)
63 0.000 0.000 0.001 0.000 colors.py:980(reversed)
1593 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:84(_unpack_uint32)
58 0.001 0.000 0.001 0.000 {built-in method posix.listdir}
6 0.000 0.000 0.001 0.000 _threadsafety.py:41(decorate)
2 0.000 0.000 0.001 0.001 base.py:1(<module>)
1 0.000 0.000 0.001 0.001 _char_codes.py:1(<module>)
159 0.000 0.000 0.001 0.000 colors.py:195(_to_rgba_no_colorcycle)
39 0.000 0.000 0.001 0.000 typing.py:407(__getitem__)
160 0.000 0.000 0.001 0.000 <__array_function__ internals>:177(column_stack)
1 0.001 0.001 0.001 0.001 _codata.py:1514(parse_constants_2018toXXXX)
1 0.000 0.000 0.001 0.001 dates.py:1(<module>)
25/6 0.000 0.000 0.001 0.000 core.py:3816(streamline)
1 0.000 0.000 0.001 0.001 signal.py:1(<module>)
531 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:618(_validate_timestamp_pyc)
63 0.000 0.000 0.001 0.000 core.py:3783(__init__)
200 0.000 0.000 0.001 0.000 uid.py:70(__new__)
39 0.000 0.000 0.001 0.000 typing.py:1223(__getitem__)
1 0.000 0.000 0.001 0.001 encaps.py:1(<module>)
35/5 0.000 0.000 0.001 0.000 core.py:3675(streamline)
1070 0.000 0.000 0.001 0.000 typing.py:137(_type_convert)
13 0.000 0.000 0.001 0.000 enum.py:553(<listcomp>)
39 0.000 0.000 0.001 0.000 typing.py:532(Literal)
1 0.000 0.000 0.001 0.001 _csr.py:1(<module>)
211 0.000 0.000 0.001 0.000 typing.py:267(_remove_dups_flatten)
63 0.000 0.000 0.001 0.000 colors.py:999(<dictcomp>)
618 0.001 0.000 0.001 0.000 _inspect.py:65(getargs)
32 0.000 0.000 0.001 0.000 colors.py:287(to_rgba_array)
879 0.000 0.000 0.001 0.000 sre_compile.py:447(_simple)
2714 0.001 0.000 0.001 0.000 util.py:185(is_consecutive)
1 0.000 0.000 0.001 0.001 ImagePalette.py:1(<module>)
2 0.000 0.000 0.001 0.000 polynomial.py:1(<module>)
1 0.000 0.000 0.001 0.001 defchararray.py:1(<module>)
3745 0.001 0.000 0.001 0.000 inspect.py:191(isclass)
262 0.000 0.000 0.001 0.000 enum.py:986(__and__)
13 0.000 0.000 0.001 0.000 docstring.py:61(<listcomp>)
520 0.001 0.000 0.001 0.000 {method 'sub' of 're.Pattern' objects}
1 0.000 0.000 0.001 0.001 hmac.py:1(<module>)
72/4 0.000 0.000 0.001 0.000 core.py:909(_parseCache)
4138 0.001 0.000 0.001 0.000 sre_parse.py:161(__len__)
10 0.000 0.000 0.001 0.000 core.py:2791(_generateDefaultName)
1 0.000 0.000 0.001 0.001 scimath.py:1(<module>)
2 0.000 0.000 0.001 0.000 function_base.py:1(<module>)
222 0.001 0.000 0.001 0.000 core.py:455(__init__)
234/16 0.000 0.000 0.001 0.000 ast.py:406(visit)
15 0.000 0.000 0.001 0.000 core.py:2792(charsAsStr)
1 0.000 0.000 0.001 0.001 filewriter.py:1(<module>)
1 0.000 0.000 0.001 0.001 npyio.py:1(<module>)
234/16 0.000 0.000 0.001 0.000 ast.py:412(generic_visit)
1347 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap>:404(parent)
1912 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap>:897(__exit__)
41 0.001 0.000 0.001 0.000 enum.py:222(<setcomp>)
22 0.000 0.000 0.001 0.000 std.py:342(fp_write)
4163 0.001 0.000 0.001 0.000 {method 'rpartition' of 'str' objects}
1 0.000 0.000 0.001 0.001 source.py:7(__init__)
160 0.000 0.000 0.001 0.000 shape_base.py:612(column_stack)
14 0.000 0.000 0.001 0.000 core.py:114(doc_note)
188 0.001 0.000 0.001 0.000 colors.py:1001(<listcomp>)
1 0.000 0.000 0.001 0.001 _threadsafety.py:1(<module>)
402 0.000 0.000 0.001 0.000 copy.py:259(_reconstruct)
1 0.000 0.000 0.001 0.001 context.py:70(RLock)
661 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap>:198(cb)
24/7 0.000 0.000 0.001 0.000 core.py:4409(streamline)
661 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap>:71(__init__)
367 0.000 0.000 0.001 0.000 sre_parse.py:433(_uniq)
20 0.000 0.000 0.001 0.000 core.py:4956(parseImpl)
1 0.000 0.000 0.001 0.001 decoder.py:1(<module>)
3627/861 0.001 0.000 0.001 0.000 docstring.py:48(_recursive_subclasses)
1 0.001 0.001 0.001 0.001 helpers.py:692(<dictcomp>)
11 0.000 0.000 0.001 0.000 decorator.py:144(make)
46 0.000 0.000 0.001 0.000 utils.py:143(inner)
117 0.000 0.000 0.001 0.000 inspect.py:3007(replace)
9993 0.001 0.000 0.001 0.000 {built-in method builtins.id}
20 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap>:778(exec_module)
2 0.000 0.000 0.001 0.000 dataclasses.py:1334(make_dataclass)
7 0.000 0.000 0.001 0.000 dataclasses.py:529(_init_fn)
11 0.000 0.000 0.001 0.000 decorator.py:75(__init__)
200 0.000 0.000 0.001 0.000 valuerep.py:255(validate_value)
20 0.001 0.000 0.001 0.000 {built-in method _imp.exec_builtin}
2642 0.001 0.000 0.001 0.000 sre_parse.py:287(tell)
1 0.000 0.000 0.001 0.001 extras.py:1(<module>)
1 0.001 0.001 0.001 0.001 _dicom_dict.py:1(<module>)
24 0.001 0.000 0.001 0.000 {method 'write' of '_io.TextIOWrapper' objects}
5 0.000 0.000 0.001 0.000 dataclasses.py:599(_frozen_get_del_attr)
1 0.000 0.000 0.001 0.001 tz.py:1(<module>)
1 0.000 0.000 0.001 0.001 context.py:1(<module>)
37 0.000 0.000 0.001 0.000 core.py:2984(parseImpl)
8899 0.001 0.000 0.001 0.000 inspect.py:2999(parameters)
61 0.000 0.000 0.001 0.000 core.py:4349(__init__)
32 0.000 0.000 0.001 0.000 __init__.py:620(__init__)
5866 0.001 0.000 0.001 0.000 {method 'group' of 're.Match' objects}
25 0.000 0.000 0.001 0.000 core.py:262(_trim_arity)
7 0.000 0.000 0.001 0.000 dataclasses.py:1157(dataclass)
1 0.000 0.000 0.001 0.001 dviread.py:1(<module>)
60 0.000 0.000 0.001 0.000 __init__.py:738(_open_file_or_url)
34 0.000 0.000 0.001 0.000 contextlib.py:130(__enter__)
1 0.000 0.000 0.001 0.001 filebase.py:1(<module>)
3 0.000 0.000 0.001 0.000 base.py:57(add_plugin)
1 0.000 0.000 0.001 0.001 core.py:400(ParserElement)
3 0.000 0.000 0.001 0.000 <__array_function__ internals>:177(inv)
1 0.000 0.000 0.001 0.001 font_manager.py:1429(_load_fontmanager)
1 0.001 0.001 0.001 0.001 _private_dict.py:1(<module>)
10 0.000 0.000 0.001 0.000 inspect.py:1252(getfullargspec)
1 0.000 0.000 0.001 0.001 datetime.py:1(<module>)
2139 0.001 0.000 0.001 0.000 {method 'match' of 're.Pattern' objects}
2124 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:134(<genexpr>)
3 0.001 0.000 0.001 0.000 linalg.py:476(inv)
32 0.000 0.000 0.001 0.000 _collections_abc.py:986(update)
79 0.000 0.000 0.001 0.000 core.py:3601(__init__)
1 0.000 0.000 0.001 0.001 getlimits.py:158(_register_known_types)
1 0.000 0.000 0.001 0.001 patches.py:2207(BoxStyle)
10/3 0.000 0.000 0.001 0.000 unicode.py:14(__get__)
1 0.000 0.000 0.001 0.001 parse.py:1(<module>)
1 0.000 0.000 0.001 0.001 backend_tools.py:1(<module>)
1 0.000 0.000 0.001 0.001 __init__.py:445(StrFormatStyle)
1 0.000 0.000 0.001 0.001 _lil.py:1(<module>)
612 0.001 0.000 0.001 0.000 sre_compile.py:265(_compile_charset)
176 0.000 0.000 0.001 0.000 valuerep.py:134(validate_length_and_regex)
66 0.000 0.000 0.001 0.000 typing.py:664(__init__)
1 0.000 0.000 0.001 0.001 std.py:846(__init__)
21 0.000 0.000 0.001 0.000 core.py:595(set_parse_action)
2184 0.001 0.000 0.001 0.000 inspect.py:199(ismethod)
17 0.000 0.000 0.001 0.000 textwrap.py:422(dedent)
12 0.000 0.000 0.001 0.000 __init__.py:1783(_define_aliases)
1912 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap>:893(__enter__)
520 0.000 0.000 0.001 0.000 sre_parse.py:356(_escape)
1 0.000 0.000 0.001 0.001 dataset.py:224(Dataset)
367 0.001 0.000 0.001 0.000 {built-in method fromkeys}
8750 0.001 0.000 0.001 0.000 {built-in method sys.getrecursionlimit}
58 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:1628(path_hook_for_FileFinder)
12857 0.001 0.000 0.001 0.000 {built-in method unicodedata.east_asian_width}
1 0.000 0.000 0.001 0.001 decorator.py:1(<module>)
242 0.000 0.000 0.001 0.000 typing.py:1143(<genexpr>)
461 0.000 0.000 0.001 0.000 sre_parse.py:85(opengroup)
39 0.000 0.000 0.001 0.000 typing.py:1194(__getitem__)
6169 0.001 0.000 0.001 0.000 {method 'strip' of 'str' objects}
1746 0.001 0.000 0.001 0.000 {method 'update' of 'dict' objects}
1 0.000 0.000 0.001 0.001 string.py:1(<module>)
673 0.001 0.000 0.001 0.000 enum.py:470(__setattr__)
1 0.000 0.000 0.001 0.001 ntpath.py:1(<module>)
41 0.000 0.000 0.001 0.000 enum.py:165(__prepare__)
1 0.000 0.000 0.001 0.001 font_manager.py:1010(json_load)
18 0.000 0.000 0.001 0.000 core.py:4889(parseImpl)
21 0.000 0.000 0.001 0.000 core.py:675(<listcomp>)
6 0.000 0.000 0.001 0.000 getlimits.py:34(__init__)
1 0.000 0.000 0.001 0.001 afm.py:1(<module>)
334 0.000 0.000 0.001 0.000 dataset.py:2107(__setattr__)
1 0.000 0.000 0.001 0.001 unicode.py:80(alphanums)
29 0.000 0.000 0.001 0.000 deprecation.py:262(rename_parameter)
250 0.000 0.000 0.001 0.000 typing.py:253(_deduplicate)
1 0.000 0.000 0.001 0.001 util.py:27(<dictcomp>)
1 0.000 0.000 0.001 0.001 __init__.py:274(load)
50 0.000 0.000 0.001 0.000 traceback.py:301(line)
4 0.000 0.000 0.001 0.000 warnings.py:130(filterwarnings)
1 0.001 0.001 0.001 0.001 axis3d.py:35(Axis)
2 0.000 0.000 0.001 0.000 __init__.py:299(loads)
1 0.000 0.000 0.001 0.001 std.py:1(<module>)
1 0.000 0.000 0.001 0.001 _fitpack_impl.py:1(<module>)
1 0.000 0.000 0.001 0.001 values.py:1(<module>)
1 0.000 0.000 0.001 0.001 twodim_base.py:1(<module>)
2 0.000 0.000 0.001 0.000 decoder.py:332(decode)
1916 0.001 0.000 0.001 0.000 sre_parse.py:112(__init__)
31 0.000 0.000 0.001 0.000 _base.py:68(__set_name__)
1 0.000 0.000 0.001 0.001 jsonrep.py:1(<module>)
1 0.000 0.000 0.001 0.001 add_newdocs.py:1(<module>)
8/4 0.000 0.000 0.001 0.000 functools.py:961(__get__)
4471 0.001 0.000 0.001 0.000 artist.py:1456(<genexpr>)
1 0.000 0.000 0.001 0.001 _plotutils.py:1(<module>)
1 0.000 0.000 0.001 0.001 _compressed.py:1(<module>)
1 0.000 0.000 0.001 0.001 string.py:69(__init_subclass__)
2 0.000 0.000 0.001 0.000 decoder.py:343(raw_decode)
1 0.000 0.000 0.001 0.001 blas.py:1(<module>)
9 0.000 0.000 0.001 0.000 patches.py:2268(__init_subclass__)
4 0.000 0.000 0.001 0.000 core.py:2973(re_match)
25 0.000 0.000 0.001 0.000 core.py:5368(__init__)
1 0.000 0.000 0.001 0.001 synchronize.py:1(<module>)
25 0.000 0.000 0.001 0.000 typing.py:1208(__getitem_inner__)
17 0.000 0.000 0.001 0.000 ast.py:33(parse)
4 0.000 0.000 0.001 0.000 core.py:2961(re)
12/5 0.000 0.000 0.001 0.000 core.py:4092(streamline)
1 0.000 0.000 0.001 0.001 unicode.py:70(alphas)
2991 0.001 0.000 0.001 0.000 {method 'endswith' of 'str' objects}
1 0.000 0.000 0.001 0.001 _base.py:541(_AxesBase)
1 0.000 0.000 0.001 0.001 table.py:237(Table)
531 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:542(_check_name_wrapper)
1 0.000 0.000 0.000 0.000 scanner.py:1(<module>)
1 0.000 0.000 0.000 0.000 valuerep.py:617(TM)
1 0.000 0.000 0.000 0.000 decimal.py:1(<module>)
2 0.000 0.000 0.000 0.000 unicode.py:55(_chars_for_ranges)
321 0.000 0.000 0.000 0.000 function_base.py:461(_add_docstring)
24 0.000 0.000 0.000 0.000 typing.py:1323(__class_getitem__)
1 0.000 0.000 0.000 0.000 arpack.py:1(<module>)
1 0.000 0.000 0.000 0.000 GimpGradientFile.py:1(<module>)
1 0.000 0.000 0.000 0.000 _expm_multiply.py:1(<module>)
1 0.000 0.000 0.000 0.000 linsolve.py:1(<module>)
7 0.000 0.000 0.000 0.000 dataclasses.py:588(_repr_fn)
18 0.000 0.000 0.000 0.000 dataset.py:368(__init__)
1 0.000 0.000 0.000 0.000 __init__.py:330(<listcomp>)
264 0.000 0.000 0.000 0.000 sre_parse.py:225(__init__)
1 0.000 0.000 0.000 0.000 type_check.py:1(<module>)
6597 0.000 0.000 0.000 0.000 {built-in method builtins.ord}
11 0.000 0.000 0.000 0.000 typing.py:1239(copy_with)
12 0.000 0.000 0.000 0.000 core.py:5585(__init__)
1 0.000 0.000 0.000 0.000 _enums.py:1(<module>)
29 0.000 0.000 0.000 0.000 __init__.py:2071(getLogger)
7 0.000 0.000 0.000 0.000 dataclasses.py:624(_cmp_fn)
630 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:826(find_spec)
1 0.000 0.000 0.000 0.000 traceback.py:216(extract_stack)
853/670 0.000 0.000 0.000 0.000 typing.py:1037(__hash__)
10 0.000 0.000 0.000 0.000 extras.py:234(__init__)
2 0.000 0.000 0.000 0.000 matfuncs.py:1(<module>)
1 0.000 0.000 0.000 0.000 _text_helpers.py:1(<module>)
124 0.000 0.000 0.000 0.000 ast.py:422(visit_Constant)
176 0.000 0.000 0.000 0.000 valuerep.py:105(validate_regex)
1 0.000 0.000 0.000 0.000 traceback.py:338(extract)
10 0.000 0.000 0.000 0.000 extras.py:238(getdoc)
2 0.000 0.000 0.000 0.000 charset.py:1(<module>)
38 0.000 0.000 0.000 0.000 getlimits.py:111(_float_to_str)
1 0.000 0.000 0.000 0.000 _add_docstring.py:1(<module>)
3 0.000 0.000 0.000 0.000 typing.py:2267(__new__)
1 0.000 0.000 0.000 0.000 bz2.py:1(<module>)
653 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:357(__init__)
1 0.000 0.000 0.000 0.000 __init__.py:412(PercentStyle)
35 0.000 0.000 0.000 0.000 core.py:2315(__init__)
3796 0.000 0.000 0.000 0.000 {built-in method _imp.acquire_lock}
1985 0.000 0.000 0.000 0.000 {built-in method posix.fspath}
436 0.000 0.000 0.000 0.000 function_base.py:346(iterable)
1 0.000 0.000 0.000 0.000 entities.py:1(<module>)
284/252 0.000 0.000 0.000 0.000 sre_compile.py:485(_get_literal_prefix)
1 0.000 0.000 0.000 0.000 unicode.py:1(<module>)
20 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:770(create_module)
1 0.000 0.000 0.000 0.000 _add_docstring.py:27(_parse_docstrings)
2 0.000 0.000 0.000 0.000 linecache.py:26(getline)
106 0.000 0.000 0.000 0.000 font_manager.py:968(_json_decode)
2 0.000 0.000 0.000 0.000 linecache.py:36(getlines)
1 0.000 0.000 0.000 0.000 _methods.py:1(<module>)
1 0.000 0.000 0.000 0.000 linecache.py:80(updatecache)
146/39 0.000 0.000 0.000 0.000 core.py:1862(__str__)
475 0.000 0.000 0.000 0.000 __init__.py:653(__getitem__)
3 0.000 0.000 0.000 0.000 typing.py:2247(_make_nmtuple)
1 0.000 0.000 0.000 0.000 _parseaddr.py:1(<module>)
36 0.000 0.000 0.000 0.000 inspect.py:3199(__str__)
33 0.000 0.000 0.000 0.000 {built-in method io.open}
1 0.000 0.000 0.000 0.000 _type_aliases.py:1(<module>)
650 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:746(find_spec)
144 0.000 0.000 0.000 0.000 typing.py:1284(__hash__)
34 0.000 0.000 0.000 0.000 <__array_function__ internals>:177(any)
660 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:180(_path_isabs)
58 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1494(__init__)
1 0.000 0.000 0.000 0.000 fileutil.py:1(<module>)
3796 0.000 0.000 0.000 0.000 {built-in method _imp.release_lock}
566 0.000 0.000 0.000 0.000 enum.py:44(_is_private)
20 0.000 0.000 0.000 0.000 {built-in method _imp.create_builtin}
6029 0.000 0.000 0.000 0.000 inspect.py:2692(kind)
1 0.000 0.000 0.000 0.000 gridspec.py:1(<module>)
58 0.000 0.000 0.000 0.000 <frozen zipimport>:64(__init__)
140 0.000 0.000 0.000 0.000 _internal.py:815(_ufunc_doc_signature_formatter)
1084 0.000 0.000 0.000 0.000 functools.py:65(wraps)
1 0.000 0.000 0.000 0.000 fontconfig_pattern.py:62(__init__)
1452 0.000 0.000 0.000 0.000 sre_parse.py:82(groups)
82 0.000 0.000 0.000 0.000 __init__.py:1804(make_alias)
30 0.000 0.000 0.000 0.000 pathlib.py:1023(glob)
1 0.000 0.000 0.000 0.000 _cm_listed.py:1(<module>)
1 0.000 0.000 0.000 0.000 arrayprint.py:1(<module>)
1 0.000 0.000 0.000 0.000 _bsplines.py:1(<module>)
1 0.000 0.000 0.000 0.000 pylibjpeg_handler.py:1(<module>)
1 0.000 0.000 0.000 0.000 _pocketfft.py:1(<module>)
1 0.000 0.000 0.000 0.000 rrule.py:1(<module>)
1 0.000 0.000 0.000 0.000 pickle.py:197(<listcomp>)
3 0.000 0.000 0.000 0.000 <decorator-gen-7>:1(_held_figure)
29 0.000 0.000 0.000 0.000 __init__.py:1315(getLogger)
61 0.000 0.000 0.000 0.000 sre_compile.py:435(_mk_bitmap)
24 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:55(add_newdoc_for_scalar_type)
1 0.000 0.000 0.000 0.000 figure.py:181(FigureBase)
1 0.000 0.000 0.000 0.000 six.py:1(<module>)
1 0.000 0.000 0.000 0.000 _rbfinterp.py:1(<module>)
113 0.000 0.000 0.000 0.000 typing.py:1234(<genexpr>)
1 0.000 0.000 0.000 0.000 TiffTags.py:1(<module>)
25 0.000 0.000 0.000 0.000 typing.py:1188(copy_with)
1 0.000 0.000 0.000 0.000 path.py:1(<module>)
1 0.000 0.000 0.000 0.000 uuid.py:1(<module>)
147 0.000 0.000 0.000 0.000 sre_parse.py:868(_parse_flags)
5 0.000 0.000 0.000 0.000 core.py:1392(__radd__)
104 0.000 0.000 0.000 0.000 {built-in method _abc._abc_init}
319/244 0.000 0.000 0.000 0.000 typing.py:1247(__hash__)
1 0.000 0.000 0.000 0.000 {method 'readlines' of '_io._IOBase' objects}
96 0.000 0.000 0.000 0.000 enum.py:579(_get_mixins_)
2449 0.000 0.000 0.000 0.000 {method '__exit__' of '_thread.lock' objects}
34 0.000 0.000 0.000 0.000 fromnumeric.py:2305(any)
531 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:48(_new_module)
30 0.000 0.000 0.000 0.000 typing.py:1083(copy_with)
161 0.000 0.000 0.000 0.000 <__array_function__ internals>:177(concatenate)
38 0.000 0.000 0.000 0.000 fromnumeric.py:69(_wrapreduction)
1 0.000 0.000 0.000 0.000 pyplot.py:2027(get_plot_commands)
31 0.000 0.000 0.000 0.000 _base.py:53(__init__)
2 0.000 0.000 0.000 0.000 unicode.py:63(<listcomp>)
2466 0.000 0.000 0.000 0.000 {built-in method _thread.get_ident}
1 0.000 0.000 0.000 0.000 filereader.py:593(_read_file_meta_info)
1481/1061 0.000 0.000 0.000 0.000 {built-in method builtins.hash}
1 0.000 0.000 0.000 0.000 _ccallback.py:1(<module>)
1350 0.000 0.000 0.000 0.000 typing.py:1031(__eq__)
4 0.000 0.000 0.000 0.000 core.py:1437(__mul__)
1 0.000 0.000 0.000 0.000 tricontour.py:1(<module>)
60 0.000 0.000 0.000 0.000 deprecation.py:192(finalize)
18 0.000 0.000 0.000 0.000 arrayprint.py:1575(_array_str_implementation)
1 0.000 0.000 0.000 0.000 selectors.py:1(<module>)
1 0.000 0.000 0.000 0.000 dataelem.py:92(DataElement)
1 0.000 0.000 0.000 0.000 random.py:1(<module>)
50 0.000 0.000 0.000 0.000 core.py:130(get_object_signature)
1 0.000 0.000 0.000 0.000 markers.py:1(<module>)
1 0.000 0.000 0.000 0.000 _validation.py:1(<module>)
1 0.000 0.000 0.000 0.000 artist.py:1321(ArtistInspector)
1 0.000 0.000 0.000 0.000 request.py:939(AbstractBasicAuthHandler)
1 0.000 0.000 0.000 0.000 _scalars.py:1(<module>)
18 0.000 0.000 0.000 0.000 arrayprint.py:506(wrapper)
82 0.000 0.000 0.000 0.000 core.py:2266(__init__)
277 0.000 0.000 0.000 0.000 results.py:136(__new__)
198 0.000 0.000 0.000 0.000 pyplot.py:88(_copy_docstring_and_deprecators)
38 0.000 0.000 0.000 0.000 inspect.py:1964(_signature_bound_method)
1 0.000 0.000 0.000 0.000 tag.py:1(<module>)
1 0.000 0.000 0.000 0.000 valuerep.py:484(DT)
23 0.000 0.000 0.000 0.000 overrides.py:200(decorator)
16 0.000 0.000 0.000 0.000 core.py:1526(__or__)
1331 0.000 0.000 0.000 0.000 {built-in method _thread.allocate_lock}
1 0.000 0.000 0.000 0.000 widgets.py:2758(RectangleSelector)
2 0.000 0.000 0.000 0.000 decorator.py:215(decorator)
1 0.000 0.000 0.000 0.000 utils.py:282(_screen_shape_linux)
1 0.000 0.000 0.000 0.000 encoder.py:1(<module>)
402 0.000 0.000 0.000 0.000 {method '__reduce_ex__' of 'object' objects}
1 0.000 0.000 0.000 0.000 _ellip_harm.py:1(<module>)
1 0.000 0.000 0.000 0.000 threading.py:1(<module>)
2304 0.000 0.000 0.000 0.000 util.py:28(<genexpr>)
18 0.000 0.000 0.000 0.000 arrayprint.py:1568(_guarded_repr_or_str)
138 0.000 0.000 0.000 0.000 pyplot.py:2039(<genexpr>)
10 0.000 0.000 0.000 0.000 rcsetup.py:269(validate_color_or_inherit)
901 0.000 0.000 0.000 0.000 {method 'extend' of 'list' objects}
5 0.000 0.000 0.000 0.000 deprecation.py:421(make_keyword_only)
12/2 0.000 0.000 0.000 0.000 core.py:1503(makeOptionalList)
2 0.000 0.000 0.000 0.000 std.py:1279(close)
105 0.000 0.000 0.000 0.000 __init__.py:269(wrapper)
1 0.000 0.000 0.000 0.000 patches.py:4149(FancyArrowPatch)
75 0.000 0.000 0.000 0.000 rcsetup.py:91(<listcomp>)
4 0.000 0.000 0.000 0.000 iterative.py:120(combine)
18 0.000 0.000 0.000 0.000 contextlib.py:252(contextmanager)
41 0.000 0.000 0.000 0.000 enum.py:626(_find_new_)
1 0.000 0.000 0.000 0.000 multival.py:1(<module>)
1644 0.000 0.000 0.000 0.000 {method 'find' of 'bytearray' objects}
1 0.000 0.000 0.000 0.000 _spherical_voronoi.py:1(<module>)
28 0.000 0.000 0.000 0.000 core.py:2915(__init__)
5 0.000 0.000 0.000 0.000 dataclasses.py:843(_hash_add)
229 0.000 0.000 0.000 0.000 sre_compile.py:516(_get_charset_prefix)
1 0.000 0.000 0.000 0.000 lzma.py:1(<module>)
622 0.000 0.000 0.000 0.000 _inspect.py:13(ismethod)
15 0.000 0.000 0.000 0.000 deprecation.py:247(__set_name__)
1863 0.000 0.000 0.000 0.000 typing.py:1273(<genexpr>)
1 0.000 0.000 0.000 0.000 _matfuncs_sqrtm.py:1(<module>)
899 0.000 0.000 0.000 0.000 inspect.py:2406(<lambda>)
1 0.000 0.000 0.000 0.000 markers.py:146(MarkerStyle)
321 0.000 0.000 0.000 0.000 function_base.py:443(_needs_add_docstring)
1 0.000 0.000 0.000 0.000 _encoded_words.py:1(<module>)
1769 0.000 0.000 0.000 0.000 {method 'setdefault' of 'dict' objects}
5 0.000 0.000 0.000 0.000 dataclasses.py:638(_hash_fn)
26 0.000 0.000 0.000 0.000 core.py:6753(__init__)
16 0.000 0.000 0.000 0.000 core.py:4084(__init__)
1 0.000 0.000 0.000 0.000 __init__.py:6(HTTPStatus)
1145 0.000 0.000 0.000 0.000 {method 'rfind' of 'str' objects}
565 0.000 0.000 0.000 0.000 enum.py:22(_is_dunder)
52 0.000 0.000 0.000 0.000 core.py:887(__init__)
24 0.000 0.000 0.000 0.000 core.py:3903(_generateDefaultName)
1 0.000 0.000 0.000 0.000 valuerep.py:1299(PersonName)
425 0.000 0.000 0.000 0.000 enum.py:12(_is_descriptor)
35 0.000 0.000 0.000 0.000 transforms.py:1332(__init_subclass__)
128 0.000 0.000 0.000 0.000 rcsetup.py:66(__call__)
2009 0.000 0.000 0.000 0.000 typing.py:1022(<genexpr>)
96 0.000 0.000 0.000 0.000 enum.py:590(_find_data_type)
1 0.000 0.000 0.000 0.000 error.py:1(<module>)
1 0.000 0.000 0.000 0.000 lgmres.py:1(<module>)
26 0.000 0.000 0.000 0.000 core.py:6758(getdoc)
6 0.000 0.000 0.000 0.000 colors.py:1479(make_norm_from_scale)
767 0.000 0.000 0.000 0.000 __init__.py:879(<lambda>)
664 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:165(__init__)
27 0.000 0.000 0.000 0.000 pathlib.py:569(_parse_args)
2046 0.000 0.000 0.000 0.000 {method 'add' of 'set' objects}
1 0.000 0.000 0.000 0.000 _onenormest.py:1(<module>)
19 0.000 0.000 0.000 0.000 pathlib.py:589(_from_parts)
262 0.000 0.000 0.000 0.000 {built-in method _sre.compile}
566 0.000 0.000 0.000 0.000 enum.py:33(_is_sunder)
624 0.000 0.000 0.000 0.000 typing.py:1242(__eq__)
19 0.000 0.000 0.000 0.000 path.py:99(__init__)
37 0.000 0.000 0.000 0.000 rcsetup.py:438(_validate_linestyle)
35 0.000 0.000 0.000 0.000 numeric.py:149(ones)
1 0.000 0.000 0.000 0.000 widgets.py:2079(SpanSelector)
33 0.000 0.000 0.000 0.000 functools.py:518(decorating_function)
49 0.000 0.000 0.000 0.000 core.py:2333(_generateDefaultName)
34 0.000 0.000 0.000 0.000 {method 'any' of 'numpy.generic' objects}
136 0.000 0.000 0.000 0.000 inspect.py:2714(__str__)
125 0.000 0.000 0.000 0.000 posixpath.py:71(join)
16 0.000 0.000 0.000 0.000 filereader.py:287(_is_implicit_vr)
1 0.000 0.000 0.000 0.000 gdcm.py:1(<module>)
524 0.000 0.000 0.000 0.000 sre_compile.py:619(isstring)
731 0.000 0.000 0.000 0.000 rcsetup.py:180(validator)
531 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1040(__init__)
1 0.000 0.000 0.000 0.000 nanfunctions.py:1(<module>)
1 0.000 0.000 0.000 0.000 base.py:26(Encoder)
1 0.000 0.000 0.000 0.000 sequence.py:1(<module>)
1 0.000 0.000 0.000 0.000 _color_data.py:1(<module>)
1 0.000 0.000 0.000 0.000 backend_bases.py:2876(NavigationToolbar2)
14 0.000 0.000 0.000 0.000 pathlib.py:957(__new__)
2502 0.000 0.000 0.000 0.000 {built-in method builtins.chr}
1 0.000 0.000 0.000 0.000 _fitpack2.py:1(<module>)
1 0.000 0.000 0.000 0.000 patches.py:3859(FancyBboxPatch)
1 0.000 0.000 0.000 0.000 message.py:105(Message)
34 0.000 0.000 0.000 0.000 posixpath.py:228(expanduser)
14 0.000 0.000 0.000 0.000 re.py:222(split)
1594 0.000 0.000 0.000 0.000 {built-in method from_bytes}
26 0.000 0.000 0.000 0.000 {method 'decode' of 'bytes' objects}
61 0.000 0.000 0.000 0.000 sre_compile.py:437(<listcomp>)
262 0.000 0.000 0.000 0.000 sre_parse.py:928(fix_flags)
1 0.000 0.000 0.000 0.000 __init__.py:895(<dictcomp>)
1 0.000 0.000 0.000 0.000 filebase.py:169(DicomFileLike)
2 0.000 0.000 0.000 0.000 _rgi.py:212(__init__)
1 0.000 0.000 0.000 0.000 _flinalg_py.py:1(<module>)
48 0.000 0.000 0.000 0.000 traceback.py:288(__getitem__)
2 0.000 0.000 0.000 0.000 __init__.py:462(_get_config_or_cache_dir)
1 0.000 0.000 0.000 0.000 rcsetup.py:1244(<dictcomp>)
148 0.000 0.000 0.000 0.000 {built-in method builtins.all}
1 0.000 0.000 0.000 0.000 _arrays.py:1(<module>)
1 0.000 0.000 0.000 0.000 testing.py:1(<module>)
1 0.000 0.000 0.000 0.000 _monitor.py:30(__init__)
630 0.000 0.000 0.000 0.000 {built-in method _imp.is_frozen}
2 0.000 0.000 0.000 0.000 errors.py:1(<module>)
85 0.000 0.000 0.000 0.000 core.py:3904(<genexpr>)
1 0.000 0.000 0.000 0.000 __init__.py:71(search_function)
1 0.000 0.000 0.000 0.000 colorbar.py:289(Colorbar)
1 0.000 0.000 0.000 0.000 _exceptions.py:1(<module>)
1 0.000 0.000 0.000 0.000 _decomp_schur.py:1(<module>)
622 0.000 0.000 0.000 0.000 _inspect.py:26(isfunction)
640 0.000 0.000 0.000 0.000 ast.py:247(iter_fields)
112 0.000 0.000 0.000 0.000 sre_parse.py:296(_class_escape)
1 0.000 0.000 0.000 0.000 patches.py:4505(ConnectionPatch)
1 0.000 0.000 0.000 0.000 mlab.py:1(<module>)
27 0.000 0.000 0.000 0.000 artist.py:23(allow_rasterization)
1 0.000 0.000 0.000 0.000 ctypeslib.py:1(<module>)
131 0.000 0.000 0.000 0.000 core.py:1915(__eq__)
93 0.000 0.000 0.000 0.000 typing.py:1053(<genexpr>)
618 0.000 0.000 0.000 0.000 _inspect.py:41(iscode)
1 0.000 0.000 0.000 0.000 retry.py:1(<module>)
334 0.000 0.000 0.000 0.000 datadict.py:498(repeater_has_keyword)
23 0.000 0.000 0.000 0.000 core.py:4948(__init__)
29 0.000 0.000 0.000 0.000 pathlib.py:438(_select_from)
1 0.000 0.000 0.000 0.000 relativedelta.py:1(<module>)
16 0.000 0.000 0.000 0.000 {built-in method _functools.reduce}
1 0.000 0.000 0.000 0.000 __init__.py:327(<listcomp>)
316 0.000 0.000 0.000 0.000 {method 'replace' of 'code' objects}
5 0.000 0.000 0.000 0.000 getlimits.py:457(__new__)
25 0.000 0.000 0.000 0.000 std.py:104(acquire)
30 0.000 0.000 0.000 0.000 pathlib.py:56(parse_parts)
890 0.000 0.000 0.000 0.000 sre_parse.py:169(__setitem__)
1 0.000 0.000 0.000 0.000 testing.py:15(pyparsing_test)
1 0.000 0.000 0.000 0.000 helpers.py:14(delimited_list)
520 0.000 0.000 0.000 0.000 {built-in method numpy.asanyarray}
1 0.000 0.000 0.000 0.000 jsonrep.py:84(JsonDataElementConverter)
2 0.000 0.000 0.000 0.000 pathlib.py:1064(resolve)
34 0.000 0.000 0.000 0.000 _methods.py:54(_any)
117 0.000 0.000 0.000 0.000 re.py:330(filter)
1 0.000 0.000 0.000 0.000 triinterpolate.py:1(<module>)
38 0.000 0.000 0.000 0.000 {method 'reduce' of 'numpy.ufunc' objects}
1 0.000 0.000 0.000 0.000 shlex.py:1(<module>)
1 0.000 0.000 0.000 0.000 _globals.py:1(<module>)
26 0.000 0.000 0.000 0.000 deprecation.py:368(<listcomp>)
22 0.000 0.000 0.000 0.000 std.py:1460(format_dict)
1 0.000 0.000 0.000 0.000 encoders.py:1(<module>)
42 0.000 0.000 0.000 0.000 core.py:287(wrapper)
32 0.000 0.000 0.000 0.000 rcsetup.py:700(<genexpr>)
858 0.000 0.000 0.000 0.000 {method 'pop' of 'dict' objects}
1 0.000 0.000 0.000 0.000 getlimits.py:1(<module>)
402 0.000 0.000 0.000 0.000 copyreg.py:100(__newobj__)
59 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:164(_path_isdir)
1 0.000 0.000 0.000 0.000 calendar.py:1(<module>)
1 0.000 0.000 0.000 0.000 core.py:693(add_condition)
1 0.000 0.000 0.000 0.000 results.py:1(<module>)
1 0.000 0.000 0.000 0.000 multival.py:17(MultiValue)
1 0.000 0.000 0.000 0.000 sequence.py:23(Sequence)
25 0.000 0.000 0.000 0.000 dataclasses.py:723(_get_field)
692 0.000 0.000 0.000 0.000 {built-in method builtins.iter}
46 0.000 0.000 0.000 0.000 _inspect.py:140(formatargspec)
1 0.000 0.000 0.000 0.000 legend_handler.py:1(<module>)
1 0.000 0.000 0.000 0.000 core.py:322(condition_as_parse_action)
1 0.000 0.000 0.000 0.000 helpers.py:1061(<listcomp>)
1 0.000 0.000 0.000 0.000 dviread.py:177(Dvi)
12 0.000 0.000 0.000 0.000 datetime.py:461(__new__)
21 0.000 0.000 0.000 0.000 {built-in method now}
1 0.000 0.000 0.000 0.000 synchronize.py:186(__init__)
1 0.000 0.000 0.000 0.000 scale.py:617(_get_scale_docs)
1 0.000 0.000 0.000 0.000 synchronize.py:50(__init__)
100 0.000 0.000 0.000 0.000 codecs.py:319(decode)
1 0.000 0.000 0.000 0.000 lines.py:198(Line2D)
43 0.000 0.000 0.000 0.000 std.py:288(format_interval)
1 0.000 0.000 0.000 0.000 isoparser.py:1(<module>)
16 0.000 0.000 0.000 0.000 cycler.py:415(cycler)
126 0.000 0.000 0.000 0.000 colors.py:858(__init__)
1 0.000 0.000 0.000 0.000 mathtext.py:35(__getattr__)
39 0.000 0.000 0.000 0.000 typing.py:284(_flatten_literal_params)
1 0.000 0.000 0.000 0.000 TiffTags.py:386(_populate)
517 0.000 0.000 0.000 0.000 sre_compile.py:81(_combine_flags)
44 0.000 0.000 0.000 0.000 utils.py:222(_is_ascii)
1 0.000 0.000 0.000 0.000 threading.py:916(start)
1 0.000 0.000 0.000 0.000 _interface.py:1(<module>)
1 0.000 0.000 0.000 0.000 numbers.py:1(<module>)
262 0.000 0.000 0.000 0.000 sre_parse.py:76(__init__)
10 0.000 0.000 0.000 0.000 version.py:42(parse)
1 0.000 0.000 0.000 0.000 mathtext.py:37(<dictcomp>)
16 0.000 0.000 0.000 0.000 abc.py:110(register)
93 0.000 0.000 0.000 0.000 {built-in method posix.getcwd}
12 0.000 0.000 0.000 0.000 typing.py:801(__init__)
1 0.000 0.000 0.000 0.000 unicode.py:118(pyparsing_unicode)
61 0.000 0.000 0.000 0.000 deprecation.py:159(_deprecated_property)
2 0.000 0.000 0.000 0.000 getlimits.py:490(_init)
1501 0.000 0.000 0.000 0.000 {method 'lower' of 'str' objects}
231 0.000 0.000 0.000 0.000 rcsetup.py:140(validate_bool)
121 0.000 0.000 0.000 0.000 std.py:233(__call__)
17 0.000 0.000 0.000 0.000 cycler.py:364(by_key)
1 0.000 0.000 0.000 0.000 valuerep.py:807(DSfloat)
1 0.000 0.000 0.000 0.000 pathlib.py:368(_make_selector)
1 0.000 0.000 0.000 0.000 widgets.py:3355(PolygonSelector)
1 0.000 0.000 0.000 0.000 hashlib.py:1(<module>)
35 0.000 0.000 0.000 0.000 <__array_function__ internals>:177(copyto)
57 0.000 0.000 0.000 0.000 pathlib.py:621(__str__)
1 0.000 0.000 0.000 0.000 __init__.py:530(matplotlib_fname)
10 0.000 0.000 0.000 0.000 version.py:261(__init__)
1 0.000 0.000 0.000 0.000 pathlib.py:434(__init__)
978 0.000 0.000 0.000 0.000 {built-in method builtins.issubclass}
1 0.000 0.000 0.000 0.000 arraysetops.py:1(<module>)
407 0.000 0.000 0.000 0.000 socket.py:88(<lambda>)
408 0.000 0.000 0.000 0.000 socket.py:93(<lambda>)
16 0.000 0.000 0.000 0.000 {built-in method _abc._abc_register}
34 0.000 0.000 0.000 0.000 contextlib.py:139(__exit__)
1 0.000 0.000 0.000 0.000 pathlib.py:260(compile_pattern)
44 0.000 0.000 0.000 0.000 pathlib.py:631(__fspath__)
1702 0.000 0.000 0.000 0.000 {method 'isupper' of 'str' objects}
304 0.000 0.000 0.000 0.000 rcsetup.py:790(_convert_validator_spec)
1 0.000 0.000 0.000 0.000 testing.py:124(TestParseResultsAsserts)
406 0.000 0.000 0.000 0.000 socket.py:83(<lambda>)
48 0.000 0.000 0.000 0.000 inspect.py:2696(replace)
14 0.000 0.000 0.000 0.000 core.py:8101(__init__)
1 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1254(__iter__)
1 0.000 0.000 0.000 0.000 isoparser.py:42(isoparser)
405 0.000 0.000 0.000 0.000 socket.py:78(<lambda>)
1 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1240(_recalculate)
1 0.000 0.000 0.000 0.000 __init__.py:712(copy)
16 0.000 0.000 0.000 0.000 cycler.py:474(_cycler)
2 0.000 0.000 0.000 0.000 misc.py:1(<module>)
1 0.000 0.000 0.000 0.000 valuerep.py:293(VR)
2 0.000 0.000 0.000 0.000 posixpath.py:391(realpath)
1 0.000 0.000 0.000 0.000 _subplots.py:7(SubplotBase)
20 0.000 0.000 0.000 0.000 colors.py:1080(reversed)
1 0.000 0.000 0.000 0.000 _nested_sequence.py:1(<module>)
851 0.000 0.000 0.000 0.000 {method '__subclasses__' of 'type' objects}
1 0.000 0.000 0.000 0.000 __init__.py:713(<dictcomp>)
10 0.000 0.000 0.000 0.000 core.py:4147(_generateDefaultName)
2 0.000 0.000 0.000 0.000 source.py:77(_update_geometry)
40 0.000 0.000 0.000 0.000 colors.py:1040(__init__)
21 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:421(spec_from_loader)
1 0.000 0.000 0.000 0.000 patches.py:3096(ArrowStyle)
1 0.000 0.000 0.000 0.000 pylibjpeg.py:1(<module>)
117 0.000 0.000 0.000 0.000 sre_parse.py:1066(expand_template)
14 0.000 0.000 0.000 0.000 hashlib.py:126(__get_openssl_constructor)
1 0.000 0.000 0.000 0.000 rotation.py:1(<module>)
1 0.000 0.000 0.000 0.000 ctypeslib.py:363(_get_scalar_type_map)
4 0.000 0.000 0.000 0.000 __init__.py:551(gen_candidates)
14 0.000 0.000 0.000 0.000 core.py:8106(getdoc)
1 0.000 0.000 0.000 0.000 common.py:422(<listcomp>)
23 0.000 0.000 0.000 0.000 deprecation.py:144(finalize)
310/309 0.000 0.000 0.000 0.000 {built-in method builtins.repr}
1 0.000 0.000 0.000 0.000 ctypeslib.py:374(<dictcomp>)
1 0.000 0.000 0.000 0.000 ssl.py:183(_TLSAlertType)
1 0.000 0.000 0.000 0.000 patches.py:26(Patch)
1 0.000 0.000 0.000 0.000 offsetbox.py:690(TextArea)
1 0.000 0.000 0.000 0.000 mathtext.py:384(MathTextParser)
1 0.000 0.000 0.000 0.000 stride_tricks.py:1(<module>)
1 0.000 0.000 0.000 0.000 process.py:1(<module>)
1 0.000 0.000 0.000 0.000 _parser.py:58(_timelex)
1 0.000 0.000 0.000 0.000 rcsetup.py:97(<listcomp>)
32 0.000 0.000 0.000 0.000 colors.py:369(<setcomp>)
11 0.000 0.000 0.000 0.000 textwrap.py:473(indent)
5 0.000 0.000 0.000 0.000 {built-in method numpy.zeros}
41 0.000 0.000 0.000 0.000 sre_parse.py:268(getuntil)
8 0.000 0.000 0.000 0.000 core.py:1663(__call__)
1 0.000 0.000 0.000 0.000 collections.py:27(Collection)
42 0.000 0.000 0.000 0.000 results.py:533(copy)
1 0.000 0.000 0.000 0.000 gdcm_handler.py:1(<module>)
16 0.000 0.000 0.000 0.000 cycler.py:206(_from_iter)
432 0.000 0.000 0.000 0.000 colors.py:226(<genexpr>)
111 0.000 0.000 0.000 0.000 {built-in method _imp.is_builtin}
36 0.000 0.000 0.000 0.000 core.py:4148(<genexpr>)
145 0.000 0.000 0.000 0.000 inspect.py:850(getmodule)
531 0.000 0.000 0.000 0.000 {built-in method _imp._fix_co_filename}
22 0.000 0.000 0.000 0.000 std.py:188(__format__)
6 0.000 0.000 0.000 0.000 numeric.py:2517(extend_all)
316 0.000 0.000 0.000 0.000 overrides.py:128(array_function_dispatch)
3 0.000 0.000 0.000 0.000 pathlib.py:995(home)