-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathclient_profile.txt
More file actions
1310 lines (1308 loc) · 102 KB
/
client_profile.txt
File metadata and controls
1310 lines (1308 loc) · 102 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
275998695 function calls (275995567 primitive calls) in 345.054 seconds
Ordered by: cumulative time
ncalls tottime percall cumtime percall filename:lineno(function)
158/1 0.006 0.000 345.054 345.054 {built-in method builtins.exec}
1 0.001 0.001 345.054 345.054 wod_client.py:1(<module>)
1 5.460 5.460 324.101 324.101 wod_client.py:367(run_game)
8321 0.347 0.000 301.778 0.036 wod_client.py:781(draw)
8321 32.339 0.004 173.920 0.021 wod_client.py:1010(draw_vision)
8326 52.029 0.006 105.569 0.013 wod_client.py:170(marching_squares_poly)
129646836 45.239 0.000 63.938 0.000 wod_client.py:74(interp)
8321 1.439 0.000 54.230 0.007 wod_client.py:987(draw_border)
8321 37.104 0.004 51.840 0.006 wod_client.py:91(marching_squares)
14774247 36.499 0.000 36.499 0.000 {built-in method pygame.draw.polygon}
8323 0.072 0.000 32.035 0.004 simple_socket.py:41(rcv)
16645 31.938 0.002 31.938 0.002 {method 'recv' of '_socket.socket' objects}
8321 0.659 0.000 30.774 0.004 wod_client.py:817(update_draw_info)
25288 22.846 0.001 22.846 0.001 {method 'blit' of 'pygame.surface.Surface' objects}
4 19.674 4.918 19.674 4.918 {built-in method builtins.input}
53257102 9.650 0.000 9.650 0.000 {built-in method builtins.min}
54496733 9.263 0.000 9.263 0.000 {built-in method builtins.max}
8321 7.081 0.001 7.087 0.001 wod_client.py:837(create_fog_surface)
8321 6.979 0.001 6.987 0.001 wod_client.py:824(create_dynamic_surface)
8321 6.196 0.001 6.196 0.001 {built-in method pygame.display.flip}
8321 5.715 0.001 5.715 0.001 {method 'tick' of 'pygame.time.Clock' objects}
2 0.000 0.000 4.274 2.137 wod_client.py:281(__init__)
17971552 3.609 0.000 3.609 0.000 {method 'append' of 'list' objects}
8321 1.988 0.000 1.988 0.000 {method 'fill' of 'pygame.surface.Surface' objects}
16644 1.823 0.000 1.823 0.000 {built-in method numpy.array}
8322 1.420 0.000 1.420 0.000 {orjson.loads}
8321 0.064 0.000 1.222 0.000 wod_client.py:432(handle_events)
971235 1.194 0.000 1.194 0.000 {built-in method pygame.draw.line}
8321 0.076 0.000 0.944 0.000 simple_socket.py:29(send)
1 0.834 0.834 0.900 0.900 {built-in method pygame.base.init}
16642 0.850 0.000 0.850 0.000 {method 'sendall' of '_socket.socket' objects}
8321 0.087 0.000 0.657 0.000 wod_client.py:850(draw_cities)
8321 0.374 0.000 0.639 0.000 wod_client.py:958(draw_troop_paths)
43409 0.227 0.000 0.570 0.000 wod_client.py:865(draw_city)
19 0.001 0.000 0.539 0.028 __init__.py:1(<module>)
2681794 0.477 0.000 0.477 0.000 {built-in method builtins.abs}
8321 0.259 0.000 0.452 0.000 wod_client.py:893(draw_troops)
216/13 0.001 0.000 0.352 0.027 <frozen importlib._bootstrap>:1360(_find_and_load)
212/9 0.001 0.000 0.351 0.039 <frozen importlib._bootstrap>:1308(_find_and_load_unlocked)
204/9 0.001 0.000 0.348 0.039 <frozen importlib._bootstrap>:914(_load_unlocked)
150/9 0.001 0.000 0.347 0.039 <frozen importlib._bootstrap_external>:753(exec_module)
633/18 0.000 0.000 0.341 0.019 <frozen importlib._bootstrap>:483(_call_with_frames_removed)
8321 0.177 0.000 0.177 0.000 {built-in method pygame.event.get}
887397/887274 0.165 0.000 0.165 0.000 {built-in method builtins.len}
645528 0.147 0.000 0.147 0.000 {method 'get' of 'dict' objects}
528/62 0.001 0.000 0.146 0.002 {built-in method builtins.__import__}
162/35 0.000 0.000 0.140 0.004 <frozen importlib._bootstrap>:1401(_handle_fromlist)
206/198 0.000 0.000 0.102 0.001 <frozen importlib._bootstrap>:809(module_from_spec)
39/34 0.000 0.000 0.096 0.003 <frozen importlib._bootstrap_external>:1051(create_module)
39/34 0.090 0.002 0.095 0.003 {built-in method _imp.create_dynamic}
150 0.002 0.000 0.094 0.001 <frozen importlib._bootstrap_external>:826(get_code)
66071 0.083 0.000 0.083 0.000 {built-in method pygame.draw.circle}
1 0.057 0.057 0.076 0.076 {built-in method pygame.display.set_mode}
1 0.000 0.000 0.070 0.070 __config__.py:1(<module>)
65971 0.067 0.000 0.067 0.000 {built-in method pygame.draw.rect}
1 0.000 0.000 0.065 0.065 freetype.py:1(<module>)
150 0.001 0.000 0.064 0.000 <frozen importlib._bootstrap_external>:947(get_data)
1 0.054 0.054 0.054 0.054 {built-in method pygame.base.quit}
1 0.000 0.000 0.054 0.054 wod_client.py:253(marching_squares_layers)
150 0.051 0.000 0.051 0.000 {built-in method _io.open_code}
214 0.002 0.000 0.050 0.000 <frozen importlib._bootstrap>:1243(_find_spec)
199 0.000 0.000 0.046 0.000 <frozen importlib._bootstrap_external>:1284(find_spec)
199 0.001 0.000 0.046 0.000 <frozen importlib._bootstrap_external>:1255(_get_spec)
368 0.003 0.000 0.042 0.000 <frozen importlib._bootstrap_external>:1357(find_spec)
1 0.000 0.000 0.041 0.041 _arraypad_impl.py:1(<module>)
1 0.000 0.000 0.041 0.041 _index_tricks_impl.py:1(<module>)
1 0.000 0.000 0.035 0.035 defmatrix.py:1(<module>)
8321 0.035 0.000 0.035 0.000 {orjson.dumps}
1 0.000 0.000 0.033 0.033 _linalg.py:1(<module>)
1 0.000 0.000 0.032 0.032 sysfont.py:427(SysFont)
2 0.000 0.000 0.029 0.014 readers.py:1(<module>)
325 0.001 0.000 0.028 0.000 wod_client.py:1030(draw_pause_text)
2 0.000 0.000 0.027 0.014 pkgdata.py:55(getResource)
786 0.000 0.000 0.027 0.000 <frozen importlib._bootstrap_external>:145(_path_stat)
786 0.027 0.000 0.027 0.000 {built-in method nt.stat}
1 0.000 0.000 0.026 0.026 pkgdata.py:1(<module>)
1 0.000 0.000 0.024 0.024 _common.py:1(<module>)
39/37 0.000 0.000 0.022 0.001 <frozen importlib._bootstrap_external>:1059(exec_module)
39/37 0.006 0.000 0.022 0.001 {built-in method _imp.exec_dynamic}
325 0.022 0.000 0.022 0.000 {method 'render' of 'pygame.font.Font' objects}
1 0.000 0.000 0.021 0.021 sysfont.py:343(initsysfonts)
1 0.001 0.001 0.021 0.021 sysfont.py:52(initsysfonts_win32)
2 0.000 0.000 0.019 0.009 pkgdata.py:27(resource_exists)
150 0.002 0.000 0.019 0.000 <frozen importlib._bootstrap_external>:509(_compile_bytecode)
1 0.000 0.000 0.019 0.019 _debug.py:1(<module>)
4 0.000 0.000 0.019 0.005 _common.py:33(wrapper)
4 0.000 0.000 0.019 0.005 _common.py:51(files)
4 0.000 0.000 0.019 0.005 _common.py:108(from_package)
1 0.000 0.000 0.018 0.018 multiarray.py:1(<module>)
154/148 0.000 0.000 0.017 0.000 <frozen importlib._bootstrap_external>:401(_check_name_wrapper)
59872 0.017 0.000 0.017 0.000 {built-in method builtins.isinstance}
4 0.000 0.000 0.017 0.004 _adapters.py:28(get_resource_reader)
4 0.000 0.000 0.017 0.004 _adapters.py:149(_native)
4 0.000 0.000 0.017 0.004 _adapters.py:144(_reader)
4 0.000 0.000 0.017 0.004 <frozen importlib._bootstrap_external>:956(get_resource_reader)
150 0.016 0.000 0.016 0.000 {built-in method marshal.loads}
1707 0.010 0.000 0.015 0.000 <frozen importlib._bootstrap_external>:101(_path_join)
1 0.000 0.000 0.015 0.015 traceback.py:1(<module>)
344/340 0.005 0.000 0.015 0.000 {built-in method builtins.__build_class__}
1 0.000 0.000 0.014 0.014 _add_newdocs.py:1(<module>)
350 0.001 0.000 0.014 0.000 function_base.py:490(add_newdoc)
1 0.000 0.000 0.013 0.013 tempfile.py:1(<module>)
373 0.007 0.000 0.013 0.000 inspect.py:790(cleandoc)
1 0.000 0.000 0.013 0.013 einsumfunc.py:1(<module>)
1 0.000 0.000 0.012 0.012 shutil.py:1(<module>)
350 0.000 0.000 0.012 0.000 function_base.py:474(_add_docstring)
1 0.000 0.000 0.012 0.012 numeric.py:1(<module>)
170/153 0.000 0.000 0.012 0.000 typing.py:396(inner)
1 0.003 0.003 0.011 0.011 sysfont.py:372(font_constructor)
8323 0.010 0.000 0.010 0.000 {method 'decode' of 'bytes' objects}
167 0.010 0.000 0.010 0.000 {built-in method nt._path_exists}
743 0.003 0.000 0.010 0.000 <frozen importlib._bootstrap>:304(acquire)
531 0.001 0.000 0.010 0.000 <frozen importlib._bootstrap>:466(_lock_unlock_module)
150 0.009 0.000 0.009 0.000 {method 'read' of '_io.BufferedReader' objects}
5398 0.009 0.000 0.009 0.000 {method 'insert' of 'list' objects}
250 0.000 0.000 0.009 0.000 <frozen importlib._bootstrap_external>:155(_path_is_mode_type)
264 0.001 0.000 0.009 0.000 overrides.py:145(decorator)
232 0.000 0.000 0.008 0.000 <frozen importlib._bootstrap_external>:164(_path_isfile)
8321 0.008 0.000 0.008 0.000 {method 'encode' of 'str' objects}
2 0.000 0.000 0.008 0.004 pkgdata.py:31(resource_stream)
3 0.008 0.003 0.008 0.003 {built-in method _io.open}
1 0.000 0.000 0.008 0.008 sprite.py:1(<module>)
2 0.000 0.000 0.008 0.004 __init__.py:763(open)
6 0.000 0.000 0.008 0.001 dataclasses.py:1431(wrap)
6 0.000 0.000 0.008 0.001 dataclasses.py:986(_process_class)
1 0.000 0.000 0.008 0.008 _char_codes.py:1(<module>)
50 0.000 0.000 0.008 0.000 typing.py:570(__getitem__)
1 0.000 0.000 0.007 0.007 _array_like.py:1(<module>)
1 0.000 0.000 0.007 0.007 _colorize.py:1(<module>)
1 0.000 0.000 0.007 0.007 shape_base.py:1(<module>)
139 0.001 0.000 0.007 0.000 typing.py:1341(__init__)
50 0.001 0.000 0.007 0.000 typing.py:749(Literal)
302 0.001 0.000 0.006 0.000 <frozen importlib._bootstrap_external>:239(cache_from_source)
23 0.000 0.000 0.006 0.000 __init__.py:330(_compile)
8321 0.006 0.000 0.006 0.000 wod_client.py:930(draw_city_paths)
1 0.000 0.000 0.006 0.006 fromnumeric.py:1(<module>)
21 0.000 0.000 0.006 0.000 __init__.py:287(compile)
1 0.000 0.000 0.006 0.006 _internal.py:1(<module>)
206 0.001 0.000 0.006 0.000 <frozen importlib._bootstrap>:736(_init_module_attrs)
1 0.000 0.000 0.006 0.006 simple_socket.py:1(<module>)
22 0.000 0.000 0.006 0.000 _compiler.py:757(compile)
1 0.000 0.000 0.005 0.005 _npyio_impl.py:1(<module>)
150 0.000 0.000 0.005 0.000 <frozen importlib._bootstrap_external>:966(path_stats)
212 0.000 0.000 0.005 0.000 <frozen importlib._bootstrap>:419(__enter__)
53 0.000 0.000 0.004 0.000 _add_newdocs.py:3381(_array_method_doc)
149 0.002 0.000 0.004 0.000 typing.py:260(_collect_type_parameters)
6 0.000 0.000 0.004 0.001 dataclasses.py:478(add_fns_to_class)
1 0.000 0.000 0.004 0.004 socket.py:1(<module>)
743 0.001 0.000 0.004 0.000 <frozen importlib._bootstrap>:162(__enter__)
343 0.000 0.000 0.004 0.000 <frozen importlib._bootstrap>:635(cached)
1 0.000 0.000 0.004 0.004 _dtype_like.py:1(<module>)
1 0.000 0.000 0.004 0.004 platform.py:1(<module>)
191 0.000 0.000 0.004 0.000 <frozen importlib._bootstrap_external>:369(_get_cached)
1 0.000 0.000 0.004 0.004 bz2.py:1(<module>)
1 0.000 0.000 0.004 0.004 _methods.py:1(<module>)
1 0.000 0.000 0.004 0.004 numerictypes.py:1(<module>)
166 0.001 0.000 0.004 0.000 sysfont.py:94(_parse_font_entry_win)
2964 0.002 0.000 0.004 0.000 {method 'join' of 'str' objects}
8322 0.004 0.000 0.004 0.000 {method 'join' of 'bytes' objects}
23 0.000 0.000 0.003 0.000 overrides.py:184(decorator)
22 0.000 0.000 0.003 0.000 _parser.py:963(parse)
743 0.001 0.000 0.003 0.000 <frozen importlib._bootstrap>:124(setdefault)
2 0.000 0.000 0.003 0.002 typing.py:1(<module>)
1 0.000 0.000 0.003 0.003 _polynomial_impl.py:1(<module>)
58/22 0.000 0.000 0.003 0.000 _parser.py:452(_parse_sub)
70 0.000 0.000 0.003 0.000 typing.py:1370(__getitem__)
150 0.003 0.000 0.003 0.000 {method '__exit__' of '_io._IOBase' objects}
18 0.001 0.000 0.003 0.000 <frozen importlib._bootstrap_external>:1408(_fill_cache)
66/22 0.001 0.000 0.003 0.000 _parser.py:512(_parse)
1365/1322 0.002 0.000 0.003 0.000 {built-in method __new__ of type object at 0x00007FF81EC24D90}
229 0.001 0.000 0.003 0.000 overrides.py:86(verify_matching_signatures)
156 0.003 0.000 0.003 0.000 {built-in method winreg.EnumValue}
743 0.002 0.000 0.003 0.000 <frozen importlib._bootstrap>:372(release)
1 0.000 0.000 0.003 0.003 pickle.py:1(<module>)
1 0.000 0.000 0.003 0.003 sysfont.py:1(<module>)
29 0.000 0.000 0.003 0.000 inspect.py:3319(signature)
29 0.000 0.000 0.003 0.000 inspect.py:3032(from_callable)
166 0.000 0.000 0.002 0.000 sysfont.py:39(_simplename)
39/29 0.000 0.000 0.002 0.000 inspect.py:2413(_signature_from_callable)
420 0.000 0.000 0.002 0.000 <frozen importlib._bootstrap_external>:1233(_path_importer_cache)
192 0.000 0.000 0.002 0.000 <frozen importlib._bootstrap_external>:1352(_get_spec)
9150/9145 0.002 0.000 0.002 0.000 {built-in method builtins.getattr}
16 0.001 0.000 0.002 0.000 __init__.py:361(namedtuple)
18 0.002 0.000 0.002 0.000 {built-in method nt.listdir}
1 0.000 0.000 0.002 0.002 decoder.py:1(<module>)
18 0.000 0.000 0.002 0.000 <frozen importlib._bootstrap_external>:1220(_path_hooks)
61 0.000 0.000 0.002 0.000 <frozen abc>:105(__new__)
1 0.000 0.000 0.002 0.002 format.py:1(<module>)
22 0.000 0.000 0.002 0.000 _compiler.py:590(_code)
1 0.000 0.000 0.002 0.002 _globals.py:1(<module>)
8 0.000 0.000 0.002 0.000 typing.py:2965(__new__)
2 0.000 0.000 0.002 0.001 __init__.py:314(lazy_import)
1229 0.001 0.000 0.002 0.000 typing.py:1286(__setattr__)
192 0.001 0.000 0.002 0.000 <frozen importlib._bootstrap_external>:560(spec_from_file_location)
743 0.001 0.000 0.002 0.000 <frozen importlib._bootstrap>:429(_get_module_lock)
296 0.001 0.000 0.002 0.000 functools.py:35(update_wrapper)
301 0.001 0.000 0.002 0.000 wod_client.py:611(handle_mouse_motion)
458 0.000 0.000 0.002 0.000 _inspect.py:97(getargspec)
1 0.000 0.000 0.002 0.002 textwrap.py:1(<module>)
1 0.000 0.000 0.002 0.002 _function_base_impl.py:1(<module>)
1 0.000 0.000 0.002 0.002 textwrap.py:17(TextWrapper)
1 0.000 0.000 0.002 0.002 uuid.py:1(<module>)
29 0.000 0.000 0.002 0.000 inspect.py:2307(_signature_from_function)
9114 0.002 0.000 0.002 0.000 {method 'lstrip' of 'str' objects}
2013 0.001 0.000 0.002 0.000 sysfont.py:42(<genexpr>)
70 0.000 0.000 0.002 0.000 typing.py:1492(copy_with)
1 0.000 0.000 0.002 0.002 _add_newdocs_scalars.py:1(<module>)
4 0.000 0.000 0.002 0.000 enum.py:880(_convert_)
7 0.000 0.000 0.002 0.000 __init__.py:188(_safe_realpath)
302 0.001 0.000 0.002 0.000 <frozen importlib._bootstrap_external>:137(_path_split)
2 0.000 0.000 0.002 0.001 <frozen importlib.util>:256(exec_module)
7 0.000 0.000 0.002 0.000 <frozen ntpath>:661(realpath)
90 0.001 0.000 0.002 0.000 typing.py:1727(__hash__)
1 0.000 0.000 0.002 0.002 _type_check_impl.py:1(<module>)
7392 0.002 0.000 0.002 0.000 {method 'endswith' of 'str' objects}
113/22 0.001 0.000 0.002 0.000 _compiler.py:39(_compile)
2 0.000 0.000 0.001 0.001 glob.py:1(<module>)
1833 0.001 0.000 0.001 0.000 typing.py:1026(_is_unpacked_typevartuple)
284 0.001 0.000 0.001 0.000 typing.py:184(_type_check)
6904 0.001 0.000 0.001 0.000 {method 'startswith' of 'str' objects}
5864 0.001 0.000 0.001 0.000 {method 'rstrip' of 'str' objects}
1 0.000 0.000 0.001 0.001 _data_classes.py:1(<module>)
190 0.001 0.000 0.001 0.000 wod_client.py:623(extend_troop_path)
16 0.001 0.000 0.001 0.000 {built-in method nt._getfinalpathname}
1 0.000 0.000 0.001 0.001 random.py:1(<module>)
1 0.000 0.000 0.001 0.001 warnings.py:1(<module>)
53 0.001 0.000 0.001 0.000 textwrap.py:416(dedent)
175 0.000 0.000 0.001 0.000 typing.py:1225(__init__)
1 0.000 0.000 0.001 0.001 difflib.py:1(<module>)
1 0.000 0.000 0.001 0.001 simple_socket.py:22(connect)
1 0.000 0.000 0.001 0.001 _twodim_base_impl.py:1(<module>)
6 0.001 0.000 0.001 0.000 {built-in method builtins.print}
210 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:190(_path_abspath)
2/1 0.000 0.000 0.001 0.001 __init__.py:634(get_config_var)
21 0.000 0.000 0.001 0.000 typing.py:1977(__new__)
5/1 0.000 0.000 0.001 0.001 __init__.py:594(get_config_vars)
10 0.000 0.000 0.001 0.000 enum.py:480(__new__)
1 0.000 0.000 0.001 0.001 __init__.py:509(_init_config_vars)
1 0.000 0.000 0.001 0.001 _format_impl.py:1(<module>)
16 0.001 0.000 0.001 0.000 {built-in method builtins.eval}
1 0.000 0.000 0.001 0.001 overrides.py:1(<module>)
212 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap>:423(__exit__)
1 0.000 0.000 0.001 0.001 lzma.py:1(<module>)
1 0.000 0.000 0.001 0.001 <frozen importlib._bootstrap>:1174(exec_module)
743 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap>:74(__new__)
1484 0.001 0.000 0.001 0.000 typing.py:1212(_is_dunder)
1 0.000 0.000 0.001 0.001 _os.py:1(<module>)
5224 0.001 0.000 0.001 0.000 typing.py:1717(<genexpr>)
70 0.000 0.000 0.001 0.000 typing.py:1401(_determine_new_args)
1 0.000 0.000 0.001 0.001 <frozen posixpath>:1(<module>)
1 0.000 0.000 0.001 0.001 codeop.py:1(<module>)
210 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:177(_path_isabs)
8 0.000 0.000 0.001 0.000 typing.py:2934(_make_nmtuple)
1 0.000 0.000 0.001 0.001 scimath.py:1(<module>)
18 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:1449(path_hook_for_FileFinder)
1 0.000 0.000 0.001 0.001 _arraysetops_impl.py:1(<module>)
3 0.000 0.000 0.001 0.000 <frozen importlib.util>:69(find_spec)
18 0.000 0.000 0.001 0.000 <frozen zipimport>:67(__init__)
18/14 0.000 0.000 0.001 0.000 annotationlib.py:697(call_annotate_function)
458 0.001 0.000 0.001 0.000 _inspect.py:66(getargs)
1 0.000 0.000 0.001 0.001 __init__.py:395(_init_non_posix)
1 0.000 0.000 0.001 0.001 printoptions.py:1(<module>)
761 0.001 0.000 0.001 0.000 {method 'split' of 'str' objects}
3165 0.001 0.000 0.001 0.000 {built-in method builtins.hasattr}
1 0.000 0.000 0.001 0.001 platform.py:1261(python_version)
1 0.001 0.001 0.001 0.001 socket.py:224(__init__)
1 0.000 0.000 0.001 0.001 platform.py:1145(_sys_version)
156 0.000 0.000 0.001 0.000 <frozen ntpath>:243(splitext)
27 0.000 0.000 0.001 0.000 _add_newdocs_scalars.py:76(add_newdoc_for_scalar_type)
150 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:424(_classify_pyc)
150 0.000 0.000 0.001 0.000 <frozen ntpath>:261(dirname)
2131 0.001 0.000 0.001 0.000 {built-in method builtins.setattr}
5 0.000 0.000 0.001 0.000 enum.py:1740(convert_class)
70 0.000 0.000 0.001 0.000 typing.py:1430(_make_substitution)
743 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap>:82(remove)
99/37 0.000 0.000 0.001 0.000 annotationlib.py:907(get_annotations)
153 0.000 0.000 0.001 0.000 <frozen ntpath>:222(split)
743 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap>:79(__init__)
1 0.000 0.000 0.001 0.001 scanner.py:1(<module>)
214 0.000 0.000 0.001 0.000 __init__.py:101(find_spec)
1 0.000 0.000 0.001 0.001 array_utils.py:1(<module>)
214 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap>:985(find_spec)
450 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:89(_unpack_uint32)
17 0.000 0.000 0.001 0.000 typing.py:1113(_generic_class_getitem)
150 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:457(_validate_timestamp_pyc)
4 0.001 0.000 0.001 0.000 {built-in method winreg.OpenKey}
34 0.000 0.000 0.001 0.000 enum.py:239(__set_name__)
20 0.000 0.000 0.001 0.000 typing.py:2128(__init_subclass__)
2969 0.001 0.000 0.001 0.000 {method 'lower' of 'str' objects}
18 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:169(_path_isdir)
743 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap>:173(__exit__)
9 0.000 0.000 0.001 0.000 dataclasses.py:541(__annotate__)
157 0.000 0.000 0.001 0.000 <frozen ntpath>:99(join)
3 0.000 0.000 0.001 0.000 _py_warnings.py:254(filterwarnings)
1289 0.001 0.000 0.001 0.000 {method 'rpartition' of 'str' objects}
906 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:139(<genexpr>)
25 0.000 0.000 0.001 0.000 dtypes.py:30(_add_dtype_helper)
156 0.000 0.000 0.001 0.000 <frozen genericpath>:157(_splitext)
1 0.000 0.000 0.001 0.001 encoder.py:1(<module>)
56 0.000 0.000 0.000 0.000 _compiler.py:248(_optimize_charset)
1492 0.000 0.000 0.000 0.000 {method '__enter__' of '_thread.RLock' objects}
373 0.000 0.000 0.000 0.000 {method 'expandtabs' of 'str' objects}
36 0.000 0.000 0.000 0.000 typing.py:1541(__init__)
255 0.000 0.000 0.000 0.000 typing.py:1276(__getattr__)
5 0.000 0.000 0.000 0.000 inspect.py:3255(__str__)
5 0.000 0.000 0.000 0.000 inspect.py:3258(format)
69 0.000 0.000 0.000 0.000 enum.py:342(__setitem__)
783 0.000 0.000 0.000 0.000 _parser.py:261(get)
827 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:1225(__enter__)
17/9 0.000 0.000 0.000 0.000 annotationlib.py:1114(_get_and_call_annotate)
827 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:1229(__exit__)
22 0.000 0.000 0.000 0.000 _compiler.py:525(_compile_info)
1019 0.000 0.000 0.000 0.000 typing.py:1355(__eq__)
1907 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:494(_verbose_message)
211 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:448(cb)
1 0.000 0.000 0.000 0.000 _nanfunctions_impl.py:1(<module>)
214 0.000 0.000 0.000 0.000 {built-in method _imp.is_builtin}
50 0.000 0.000 0.000 0.000 typing.py:365(_flatten_literal_params)
20 0.000 0.000 0.000 0.000 {method '__init_subclass__' of 'object' objects}
125 0.000 0.000 0.000 0.000 inspect.py:2680(__init__)
713 0.000 0.000 0.000 0.000 _parser.py:168(__getitem__)
1452 0.000 0.000 0.000 0.000 {method 'pop' of 'list' objects}
104 0.000 0.000 0.000 0.000 typing.py:1037(_typevar_subst)
1492 0.000 0.000 0.000 0.000 {method '__exit__' of '_thread.RLock' objects}
49 0.000 0.000 0.000 0.000 dataclasses.py:825(_get_field)
1 0.000 0.000 0.000 0.000 _shape_base_impl.py:1(<module>)
200 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:1131(find_spec)
1 0.000 0.000 0.000 0.000 contextlib.py:1(<module>)
2403 0.000 0.000 0.000 0.000 {method 'isspace' of 'str' objects}
348 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:648(parent)
18 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1331(__init__)
1 0.000 0.000 0.000 0.000 arrayprint.py:1(<module>)
45 0.000 0.000 0.000 0.000 inspect.py:2770(_format)
350 0.000 0.000 0.000 0.000 function_base.py:456(_needs_add_docstring)
1781 0.000 0.000 0.000 0.000 {built-in method _imp.acquire_lock}
1 0.000 0.000 0.000 0.000 _type_aliases.py:1(<module>)
1486 0.000 0.000 0.000 0.000 {built-in method _thread.get_ident}
1 0.000 0.000 0.000 0.000 {method 'connect' of '_socket.socket' objects}
363 0.000 0.000 0.000 0.000 {method 'format' of 'str' objects}
1853 0.000 0.000 0.000 0.000 {method 'isalnum' of 'str' objects}
1781 0.000 0.000 0.000 0.000 {built-in method _imp.release_lock}
1 0.000 0.000 0.000 0.000 threading.py:1(<module>)
14 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:1000(exec_module)
211 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:232(__init__)
61 0.000 0.000 0.000 0.000 {built-in method _abc._abc_init}
458 0.000 0.000 0.000 0.000 <string>:1(<lambda>)
210 0.000 0.000 0.000 0.000 {built-in method nt._path_splitroot}
1 0.000 0.000 0.000 0.000 _scimath_impl.py:1(<module>)
103/73 0.000 0.000 0.000 0.000 annotationlib.py:1131(_get_dunder_annotations)
557/537 0.000 0.000 0.000 0.000 typing.py:1361(__hash__)
1072 0.000 0.000 0.000 0.000 {method 'rfind' of 'str' objects}
4 0.000 0.000 0.000 0.000 {built-in method nt._path_isfile}
2 0.000 0.000 0.000 0.000 typing.py:3139(__new__)
851 0.000 0.000 0.000 0.000 {method 'remove' of 'list' objects}
14 0.000 0.000 0.000 0.000 {built-in method _imp.exec_builtin}
169 0.000 0.000 0.000 0.000 {method 'extend' of 'list' objects}
1 0.000 0.000 0.000 0.000 _nbit_base.py:1(<module>)
24 0.000 0.000 0.000 0.000 typing.py:1174(_generic_init_subclass)
1 0.000 0.000 0.000 0.000 _adapters.py:1(<module>)
34 0.000 0.000 0.000 0.000 inspect.py:2972(__init__)
343/1 0.000 0.000 0.000 0.000 __config__.py:19(_cleanup)
913 0.000 0.000 0.000 0.000 {method 'add' of 'set' objects}
2 0.000 0.000 0.000 0.000 __init__.py:685(is_file)
21 0.000 0.000 0.000 0.000 typing.py:1996(__init__)
50 0.000 0.000 0.000 0.000 inspect.py:1339(formatannotation)
1 0.000 0.000 0.000 0.000 _ufunclike_impl.py:1(<module>)
150 0.000 0.000 0.000 0.000 enum.py:677(__call__)
1 0.000 0.000 0.000 0.000 _nested_sequence.py:1(<module>)
1 0.000 0.000 0.000 0.000 numbers.py:1(<module>)
458 0.000 0.000 0.000 0.000 _inspect.py:13(ismethod)
1 0.000 0.000 0.000 0.000 _distributor_init.py:1(<module>)
6 0.000 0.000 0.000 0.000 dataclasses.py:670(_init_fn)
1914 0.000 0.000 0.000 0.000 typing.py:1345(<genexpr>)
126/47 0.000 0.000 0.000 0.000 _parser.py:178(getwidth)
368 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:67(_relax_case)
14 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:992(create_module)
1016 0.000 0.000 0.000 0.000 {built-in method nt.fspath}
1736 0.000 0.000 0.000 0.000 typing.py:777(<genexpr>)
743 0.000 0.000 0.000 0.000 {built-in method _weakref._remove_dead_weakref}
945 0.000 0.000 0.000 0.000 _parser.py:240(__next)
1 0.000 0.000 0.000 0.000 _py_warnings.py:1(<module>)
1 0.000 0.000 0.000 0.000 abc.py:1(<module>)
167 0.000 0.000 0.000 0.000 sysfont.py:45(_addfont)
1 0.000 0.000 0.000 0.000 fnmatch.py:1(<module>)
371 0.000 0.000 0.000 0.000 typing.py:175(_type_convert)
1 0.000 0.000 0.000 0.000 __init__.py:175(CompressionParameter)
153 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:48(_new_module)
307 0.000 0.000 0.000 0.000 {method 'replace' of 'str' objects}
479 0.000 0.000 0.000 0.000 {built-in method nt._path_splitroot_ex}
34 0.000 0.000 0.000 0.000 enum.py:1041(_add_member_)
458 0.000 0.000 0.000 0.000 _inspect.py:26(isfunction)
17 0.000 0.000 0.000 0.000 typing.py:1842(_get_protocol_attrs)
150 0.000 0.000 0.000 0.000 {built-in method _imp._fix_co_filename}
4 0.000 0.000 0.000 0.000 readers.py:23(__init__)
14 0.000 0.000 0.000 0.000 {built-in method _imp.create_builtin}
1 0.000 0.000 0.000 0.000 simple_socket.py:58(close)
8 0.000 0.000 0.000 0.000 typing.py:385(decorator)
458 0.000 0.000 0.000 0.000 _inspect.py:41(iscode)
1 0.000 0.000 0.000 0.000 _iotools.py:1(<module>)
1 0.000 0.000 0.000 0.000 constants.py:1(<module>)
1 0.000 0.000 0.000 0.000 socket.py:507(close)
21 0.000 0.000 0.000 0.000 enum.py:1594(__and__)
1 0.000 0.000 0.000 0.000 <frozen ntpath>:605(_getfinalpathname_nonstrict)
16 0.000 0.000 0.000 0.000 _colorize.py:115(__annotate__)
450 0.000 0.000 0.000 0.000 {built-in method from_bytes}
1 0.000 0.000 0.000 0.000 socket.py:503(_real_close)
1047 0.000 0.000 0.000 0.000 {method 'isupper' of 'str' objects}
1 0.000 0.000 0.000 0.000 function_base.py:1(<module>)
1 0.000 0.000 0.000 0.000 typing.py:2912(<generic parameters of SupportsAbs>)
36 0.000 0.000 0.000 0.000 dataclasses.py:446(add_fn)
1 0.000 0.000 0.000 0.000 _stride_tricks_impl.py:1(<module>)
1 0.000 0.000 0.000 0.000 {function socket.close at 0x0000020BB67C56F0}
1 0.000 0.000 0.000 0.000 _adapters.py:40(CompatibilityFiles)
96 0.000 0.000 0.000 0.000 {built-in method fromkeys}
69 0.000 0.000 0.000 0.000 {built-in method builtins.locals}
743 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:158(__init__)
375 0.000 0.000 0.000 0.000 {built-in method numpy._core._multiarray_umath.add_docstring}
397 0.000 0.000 0.000 0.000 {method 'update' of 'dict' objects}
234 0.000 0.000 0.000 0.000 socket.py:81(<lambda>)
1 0.000 0.000 0.000 0.000 datetime.py:1(<module>)
93 0.000 0.000 0.000 0.000 enum.py:811(__setattr__)
235 0.000 0.000 0.000 0.000 socket.py:86(<lambda>)
237 0.000 0.000 0.000 0.000 socket.py:96(<lambda>)
236 0.000 0.000 0.000 0.000 socket.py:91(<lambda>)
15 0.000 0.000 0.000 0.000 inspect.py:1910(_signature_get_user_defined_method)
2 0.000 0.000 0.000 0.000 __init__.py:183(sub)
1 0.000 0.000 0.000 0.000 struct.py:1(<module>)
1 0.000 0.000 0.000 0.000 _histograms_impl.py:1(<module>)
50 0.000 0.000 0.000 0.000 typing.py:351(_deduplicate)
1 0.000 0.000 0.000 0.000 _exceptions.py:1(<module>)
5 0.000 0.000 0.000 0.000 enum.py:466(__prepare__)
6 0.000 0.000 0.000 0.000 dataclasses.py:728(_frozen_get_del_attr)
1 0.000 0.000 0.000 0.000 {built-in method pygame.display.set_caption}
8 0.000 0.000 0.000 0.000 typing.py:380(_tp_cache)
150 0.000 0.000 0.000 0.000 {method '__enter__' of '_io._IOBase' objects}
14 0.000 0.000 0.000 0.000 functools.py:593(decorating_function)
24 0.000 0.000 0.000 0.000 {method '__typing_subst__' of 'typing.TypeVar' objects}
1 0.000 0.000 0.000 0.000 typing.py:2923(<generic parameters of SupportsRound>)
647/627 0.000 0.000 0.000 0.000 {built-in method builtins.hash}
4 0.000 0.000 0.000 0.000 functools.py:922(register)
21 0.000 0.000 0.000 0.000 _parser.py:98(closegroup)
4 0.000 0.000 0.000 0.000 __init__.py:381(parent)
65 0.000 0.000 0.000 0.000 _parser.py:312(_class_escape)
1 0.000 0.000 0.000 0.000 records.py:1(<module>)
3 0.000 0.000 0.000 0.000 __init__.py:501(get_path)
1 0.000 0.000 0.000 0.000 mixins.py:1(<module>)
150 0.000 0.000 0.000 0.000 enum.py:1146(__new__)
1 0.000 0.000 0.000 0.000 getlimits.py:1(<module>)
242 0.000 0.000 0.000 0.000 {method 'pop' of 'dict' objects}
3 0.000 0.000 0.000 0.000 __init__.py:489(get_paths)
1 0.000 0.000 0.000 0.000 _endian.py:1(<module>)
1 0.000 0.000 0.000 0.000 exceptions.py:1(<module>)
413 0.000 0.000 0.000 0.000 {method 'partition' of 'str' objects}
3 0.000 0.000 0.000 0.000 __init__.py:271(_expand_vars)
419 0.000 0.000 0.000 0.000 _parser.py:256(match)
1 0.000 0.000 0.000 0.000 heapq.py:1(<module>)
56 0.000 0.000 0.000 0.000 _compiler.py:221(_compile_charset)
1 0.000 0.000 0.000 0.000 cursors.py:1(<module>)
218 0.000 0.000 0.000 0.000 _parser.py:176(append)
200 0.000 0.000 0.000 0.000 {built-in method _imp.find_frozen}
49 0.000 0.000 0.000 0.000 inspect.py:663(unwrap)
8 0.000 0.000 0.000 0.000 __init__.py:341(drive)
9 0.000 0.000 0.000 0.000 <frozen abc>:110(register)
2 0.000 0.000 0.000 0.000 version.py:1(<module>)
70 0.000 0.000 0.000 0.000 typing.py:341(_unpack_args)
1 0.000 0.000 0.000 0.000 __init__.py:886(blas_fpe_check)
9 0.000 0.000 0.000 0.000 {built-in method _abc._abc_register}
5 0.000 0.000 0.000 0.000 inspect.py:2031(_signature_bound_method)
15 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:665(spec_from_loader)
1 0.000 0.000 0.000 0.000 __init__.py:91(_delvewheel_patch_1_11_2)
4 0.000 0.000 0.000 0.000 enum.py:1583(__or__)
6 0.000 0.000 0.000 0.000 numeric.py:2750(extend_all)
49 0.000 0.000 0.000 0.000 dataclasses.py:751(_is_classvar)
21 0.000 0.000 0.000 0.000 typing.py:3827(__getattr__)
214 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:602(__init__)
4 0.000 0.000 0.000 0.000 functools.py:978(wrapper)
17 0.000 0.000 0.000 0.000 _compiler.py:400(_mk_bitmap)
68 0.000 0.000 0.000 0.000 {built-in method builtins.delattr}
153 0.000 0.000 0.000 0.000 <frozen ntpath>:34(_get_bothseps)
1 0.000 0.000 0.000 0.000 _compat_pickle.py:1(<module>)
236 0.000 0.000 0.000 0.000 _parser.py:164(__len__)
1 0.000 0.000 0.000 0.000 mixins.py:60(NDArrayOperatorsMixin)
1 0.000 0.000 0.000 0.000 __init__.py:222(Strategy)
109 0.000 0.000 0.000 0.000 __init__.py:28(decorator)
61 0.000 0.000 0.000 0.000 {built-in method nt.getcwd}
1 0.000 0.000 0.000 0.000 _streams.py:1(<module>)
29/9 0.000 0.000 0.000 0.000 <frozen abc>:121(__subclasscheck__)
103 0.000 0.000 0.000 0.000 enum.py:77(_is_private)
1 0.000 0.000 0.000 0.000 umath.py:1(<module>)
186 0.000 0.000 0.000 0.000 _parser.py:293(tell)
29/9 0.000 0.000 0.000 0.000 {built-in method _abc._abc_subclasscheck}
264 0.000 0.000 0.000 0.000 overrides.py:108(array_function_dispatch)
1 0.000 0.000 0.000 0.000 bisect.py:1(<module>)
4 0.000 0.000 0.000 0.000 annotationlib.py:452(__getitem__)
48 0.000 0.000 0.000 0.000 _compiler.py:412(_simple)
21 0.000 0.000 0.000 0.000 overrides.py:25(get_array_function_like_doc)
16 0.000 0.000 0.000 0.000 <frozen os>:704(__getitem__)
4 0.000 0.000 0.000 0.000 __init__.py:190(__fspath__)
1 0.000 0.000 0.000 0.000 memmap.py:1(<module>)
2 0.000 0.000 0.000 0.000 wod_client.py:462(handle_mouse_down)
3 0.000 0.000 0.000 0.000 typing.py:1364(__or__)
1 0.000 0.000 0.000 0.000 {built-in method _imp.get_frozen_object}
140 0.000 0.000 0.000 0.000 typing.py:1396(<genexpr>)
110 0.000 0.000 0.000 0.000 enum.py:46(_is_dunder)
44 0.000 0.000 0.000 0.000 _parser.py:449(_uniq)
70 0.000 0.000 0.000 0.000 enum.py:36(_is_descriptor)
14 0.000 0.000 0.000 0.000 annotationlib.py:853(_build_closure)
2 0.000 0.000 0.000 0.000 <frozen os>:1161(add_dll_directory)
292 0.000 0.000 0.000 0.000 {method 'get' of 'mappingproxy' objects}
55 0.000 0.000 0.000 0.000 typing.py:2483(get_origin)
212 0.000 0.000 0.000 0.000 {built-in method _thread.allocate_lock}
4 0.000 0.000 0.000 0.000 __init__.py:251(__str__)
1 0.000 0.000 0.000 0.000 __init__.py:822(_sanity_check)
1 0.000 0.000 0.000 0.000 _utils_impl.py:1(<module>)
2 0.000 0.000 0.000 0.000 __init__.py:114(_getuserbase)
5 0.000 0.000 0.000 0.000 inspect.py:3050(replace)
1 0.000 0.000 0.000 0.000 _zstdfile.py:1(<module>)
2 0.000 0.000 0.000 0.000 wod_client.py:475(handle_left_click)
30/20 0.000 0.000 0.000 0.000 _compiler.py:450(_get_literal_prefix)
2 0.000 0.000 0.000 0.000 typing.py:2327(get_type_hints)
154 0.000 0.000 0.000 0.000 inspect.py:3027(<genexpr>)
1 0.000 0.000 0.000 0.000 _datasource.py:1(<module>)
73 0.000 0.000 0.000 0.000 pickle.py:190(<genexpr>)
6 0.000 0.000 0.000 0.000 {built-in method builtins.sorted}
1 0.000 0.000 0.000 0.000 _scalars.py:1(<module>)
10 0.000 0.000 0.000 0.000 enum.py:928(_get_mixins_)
49 0.000 0.000 0.000 0.000 dataclasses.py:591(_field_init)
75 0.000 0.000 0.000 0.000 enum.py:1576(_get_value)
11 0.000 0.000 0.000 0.000 <frozen _collections_abc>:792(get)
1 0.000 0.000 0.000 0.000 colordict.py:1(<module>)
1 0.000 0.000 0.000 0.000 _ufunc_config.py:1(<module>)
197 0.000 0.000 0.000 0.000 {method 'isidentifier' of 'str' objects}
1 0.000 0.000 0.000 0.000 _ufunc.py:1(<module>)
10 0.000 0.000 0.000 0.000 inspect.py:1725(getattr_static)
6 0.000 0.000 0.000 0.000 uuid.py:178(__init__)
1 0.000 0.000 0.000 0.000 _globals.py:66(_CopyMode)
405 0.000 0.000 0.000 0.000 {built-in method builtins.globals}
2 0.000 0.000 0.000 0.000 {built-in method nt._add_dll_directory}
64 0.000 0.000 0.000 0.000 enum.py:746(__delattr__)
6 0.000 0.000 0.000 0.000 <frozen abc>:146(update_abstractmethods)
2 0.000 0.000 0.000 0.000 enum.py:1446(_missing_)
42 0.000 0.000 0.000 0.000 dataclasses.py:922(_set_new_attribute)
1 0.000 0.000 0.000 0.000 __init__.py:222(is_python_build)
2 0.000 0.000 0.000 0.000 __init__.py:417(__init__)
1 0.000 0.000 0.000 0.000 contextvars.py:1(<module>)
82 0.000 0.000 0.000 0.000 {method '__typing_prepare_subst__' of 'typing.TypeVar' objects}
49 0.000 0.000 0.000 0.000 dataclasses.py:391(field)
103 0.000 0.000 0.000 0.000 enum.py:57(_is_sunder)
1 0.000 0.000 0.000 0.000 threading.py:1393(__init__)
11 0.000 0.000 0.000 0.000 typing.py:2258(runtime_checkable)
2 0.000 0.000 0.000 0.000 _linalg.py:84(__annotate__)
4 0.000 0.000 0.000 0.000 _common.py:80(_)
21 0.000 0.000 0.000 0.000 _parser.py:86(opengroup)
5 0.000 0.000 0.000 0.000 contextlib.py:276(contextmanager)
269 0.000 0.000 0.000 0.000 {built-in method builtins.issubclass}
4 0.000 0.000 0.000 0.000 _py_warnings.py:320(_add_filter)
194 0.000 0.000 0.000 0.000 {method 'find' of 'bytearray' objects}
1 0.000 0.000 0.000 0.000 <frozen os>:44(_get_exports_list)
6 0.000 0.000 0.000 0.000 dataclasses.py:943(_hash_add)
10 0.000 0.000 0.000 0.000 inspect.py:1686(_check_class)
4 0.000 0.000 0.000 0.000 __init__.py:269(_from_parsed_parts)
13 0.000 0.000 0.000 0.000 mixins.py:45(_numeric_methods)
212 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:415(__init__)
1 0.000 0.000 0.000 0.000 __init__.py:346(_reset_cache)
10 0.000 0.000 0.000 0.000 enum.py:969(_find_data_type_)
9 0.000 0.000 0.000 0.000 overrides.py:30(finalize_array_function_like)
2 0.000 0.000 0.000 0.000 numeric.py:170(ones)
1 0.000 0.000 0.000 0.000 typing.py:526(_SpecialForm)
2 0.000 0.000 0.000 0.000 _linalg.py:88(__annotate__)
1 0.000 0.000 0.000 0.000 _colorize.py:242(no_colors)
193 0.000 0.000 0.000 0.000 {method '__contains__' of 'frozenset' objects}
8 0.000 0.000 0.000 0.000 __init__.py:157(with_segments)
4 0.000 0.000 0.000 0.000 __init__.py:71(import_module)
140 0.000 0.000 0.000 0.000 typing.py:1716(_value_and_type_iter)
112 0.000 0.000 0.000 0.000 typing.py:1721(__eq__)
6 0.000 0.000 0.000 0.000 dataclasses.py:415(_fields_in_init_order)
1 0.000 0.000 0.000 0.000 _array_api_info.py:1(<module>)
4 0.000 0.000 0.000 0.000 __init__.py:603(PYFUNCTYPE)
152 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:750(create_module)
8 0.000 0.000 0.000 0.000 __init__.py:281(_parse_path)
14 0.000 0.000 0.000 0.000 annotationlib.py:652(__init__)
17 0.000 0.000 0.000 0.000 <frozen os>:778(encodekey)
1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects}
1 0.000 0.000 0.000 0.000 __init__.py:209(DecompressionParameter)
6 0.000 0.000 0.000 0.000 cursors.py:171(__init__)
90 0.000 0.000 0.000 0.000 _parser.py:83(groups)
12 0.000 0.000 0.000 0.000 __init__.py:135(__init__)
4 0.000 0.000 0.000 0.000 annotationlib.py:404(__convert_to_ast_getitem)
1 0.000 0.000 0.000 0.000 __config__.py:14(DisplayModes)
1 0.000 0.000 0.000 0.000 <frozen ntpath>:563(_readlink_deep)
8 0.000 0.000 0.000 0.000 _colorize.py:127(__post_init__)
4 0.000 0.000 0.000 0.000 _colorize.py:140(no_colors)
22 0.000 0.000 0.000 0.000 _parser.py:231(__init__)
9 0.000 0.000 0.000 0.000 {method 'sort' of 'list' objects}
109 0.000 0.000 0.000 0.000 __init__.py:17(set_module)
9 0.000 0.000 0.000 0.000 <frozen ntpath>:50(normcase)
1 0.000 0.000 0.000 0.000 numerictypes.py:626(_register_types)
153 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:917(__init__)
2 0.000 0.000 0.000 0.000 __init__.py:76(CFUNCTYPE)
2 0.000 0.000 0.000 0.000 {built-in method builtins.dir}
2 0.000 0.000 0.000 0.000 __init__.py:271(POINTER)
21 0.000 0.000 0.000 0.000 _parser.py:372(_escape)
23 0.000 0.000 0.000 0.000 {built-in method _struct.calcsize}
1 0.000 0.000 0.000 0.000 __init__.py:538(__getattr__)
236 0.000 0.000 0.000 0.000 {built-in method builtins.ord}
1 0.000 0.000 0.000 0.000 {built-in method nt._path_isdir}
14 0.000 0.000 0.000 0.000 __init__.py:148(_check_size)
222 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:656(has_location)
7 0.000 0.000 0.000 0.000 enum.py:1436(_iter_member_by_def_)
14 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:504(_requires_builtin_wrapper)
1 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:18(numeric_type_aliases)
26 0.000 0.000 0.000 0.000 <frozen ntpath>:343(expanduser)
2 0.000 0.000 0.000 0.000 functools.py:875(singledispatch)
2 0.000 0.000 0.000 0.000 {built-in method nt.putenv}
2 0.000 0.000 0.000 0.000 typing.py:564(__getitem__)
1 0.000 0.000 0.000 0.000 _asarray.py:1(<module>)
4 0.000 0.000 0.000 0.000 functools.py:893(dispatch)
4 0.000 0.000 0.000 0.000 <frozen _collections_abc>:799(__contains__)
1 0.000 0.000 0.000 0.000 _dtype.py:1(<module>)
19 0.000 0.000 0.000 0.000 _compiler.py:481(_get_charset_prefix)
1 0.000 0.000 0.000 0.000 __future__.py:1(<module>)
5 0.000 0.000 0.000 0.000 enum.py:996(_find_new_)
1 0.000 0.000 0.000 0.000 random.py:119(__init__)
63 0.000 0.000 0.000 0.000 inspect.py:267(isfunction)
4 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:1386(_gcd_import)
55 0.000 0.000 0.000 0.000 dataclasses.py:733(<genexpr>)
4 0.000 0.000 0.000 0.000 __init__.py:164(joinpath)
4 0.000 0.000 0.000 0.000 annotationlib.py:361(__convert_to_ast)
1 0.000 0.000 0.000 0.000 _version.py:1(<module>)
14 0.000 0.000 0.000 0.000 inspect.py:1712(_shadowed_dict)
4 0.000 0.000 0.000 0.000 __init__.py:276(_from_parsed_string)
110 0.000 0.000 0.000 0.000 {method 'items' of 'dict' objects}
6 0.000 0.000 0.000 0.000 reprlib.py:12(decorating_function)
2 0.000 0.000 0.000 0.000 typing.py:743(Optional)
8 0.000 0.000 0.000 0.000 __init__.py:330(_raw_path)
2 0.000 0.000 0.000 0.000 _linalg.py:100(__annotate__)
51 0.000 0.000 0.000 0.000 _parser.py:172(__setitem__)
16 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:19(type_aliases_gen)
86 0.000 0.000 0.000 0.000 {method 'strip' of 'str' objects}
1 0.000 0.000 0.000 0.000 _data_classes.py:5(__annotate__)
1 0.000 0.000 0.000 0.000 _py_warnings.py:294(simplefilter)
2 0.000 0.000 0.000 0.000 wod_client.py:680(handle_key_down)
1 0.000 0.000 0.000 0.000 pickle.py:1250(_Unpickler)
1 0.000 0.000 0.000 0.000 _arrayterator_impl.py:1(<module>)
34 0.000 0.000 0.000 0.000 typing.py:1127(<genexpr>)
1 0.000 0.000 0.000 0.000 random.py:128(seed)
1 0.000 0.000 0.000 0.000 _dtype_ctypes.py:1(<module>)
91 0.000 0.000 0.000 0.000 {method 'setdefault' of 'dict' objects}
144 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1337(<genexpr>)
22 0.000 0.000 0.000 0.000 {built-in method _sre.compile}
1 0.000 0.000 0.000 0.000 __init__.py:621(Path)
120 0.000 0.000 0.000 0.000 _parser.py:113(__init__)
91 0.000 0.000 0.000 0.000 <frozen abc>:7(abstractmethod)
46 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:89(<genexpr>)
44 0.000 0.000 0.000 0.000 _compiler.py:587(isstring)
24 0.000 0.000 0.000 0.000 numerictypes.py:594(_scalar_type_key)
93 0.000 0.000 0.000 0.000 {built-in method builtins.repr}
1 0.000 0.000 0.000 0.000 {built-in method nt.readlink}
1 0.000 0.000 0.000 0.000 __init__.py:199(_Extra)
68 0.000 0.000 0.000 0.000 {built-in method sys.intern}
150 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:942(get_filename)
49 0.000 0.000 0.000 0.000 dataclasses.py:579(_field_assign)
24 0.000 0.000 0.000 0.000 __init__.py:254(_subst_vars)
1 0.000 0.000 0.000 0.000 _pytesttester.py:1(<module>)
1 0.000 0.000 0.000 0.000 typing.py:1540(_SpecialGenericAlias)
1 0.000 0.000 0.000 0.000 wod_client.py:276(Game)
170 0.000 0.000 0.000 0.000 inspect.py:2733(name)
1 0.000 0.000 0.000 0.000 multiarray.py:81(_override___module__)
37 0.000 0.000 0.000 0.000 {built-in method nt._path_normpath}
2 0.000 0.000 0.000 0.000 {method 'sub' of 're.Pattern' objects}
2 0.000 0.000 0.000 0.000 __init__.py:125(joinuser)
2 0.000 0.000 0.000 0.000 {built-in method winreg.QueryInfoKey}
1 0.000 0.000 0.000 0.000 threading.py:880(__init__)
1 0.000 0.000 0.000 0.000 <frozen os>:712(__setitem__)
1 0.000 0.000 0.000 0.000 typing.py:1315(_GenericAlias)
1 0.000 0.000 0.000 0.000 typing.py:1632(_CallableType)
1 0.000 0.000 0.000 0.000 _shape.py:1(<module>)
4 0.000 0.000 0.000 0.000 _adapters.py:163(wrap_spec)
2 0.000 0.000 0.000 0.000 _linalg.py:92(__annotate__)
2 0.000 0.000 0.000 0.000 arrayprint.py:577(decorating_function)
1 0.000 0.000 0.000 0.000 typing.py:3493(IO)
10 0.000 0.000 0.000 0.000 annotationlib.py:895(get_annotate_from_class_namespace)
2 0.000 0.000 0.000 0.000 wod_client.py:493(find_troop_at_click)
1 0.000 0.000 0.000 0.000 typing.py:1665(_TupleType)
2 0.000 0.000 0.000 0.000 _linalg.py:96(__annotate__)
68 0.000 0.000 0.000 0.000 __init__.py:435(<genexpr>)
1 0.000 0.000 0.000 0.000 getlimits.py:60(finfo)
6 0.000 0.000 0.000 0.000 dataclasses.py:424(_tuple_str)
1 0.000 0.000 0.000 0.000 sprite.py:362(AbstractGroup)
1 0.000 0.000 0.000 0.000 _polynomial_impl.py:1093(poly1d)
1 0.000 0.000 0.000 0.000 _iotools.py:452(StringConverter)
1 0.000 0.000 0.000 0.000 __init__.py:78(PurePath)
1 0.000 0.000 0.000 0.000 sprite.py:727(LayeredUpdates)
1 0.000 0.000 0.000 0.000 _colorize.py:16(ANSIColors)
1 0.000 0.000 0.000 0.000 _string_helpers.py:1(<module>)
49 0.000 0.000 0.000 0.000 dataclasses.py:651(_init_param)
5 0.000 0.000 0.000 0.000 inspect.py:2057(_signature_is_builtin)
4 0.000 0.000 0.000 0.000 annotationlib.py:662(__missing__)
1 0.000 0.000 0.000 0.000 {function Random.seed at 0x0000020B9DBEC9E0}
11 0.000 0.000 0.000 0.000 wod_client.py:737(get_zoom)
40 0.000 0.000 0.000 0.000 typing.py:2133(<genexpr>)
1 0.000 0.000 0.000 0.000 _nbit.py:1(<module>)
4 0.000 0.000 0.000 0.000 annotationlib.py:430(__make_new)
1 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:54(_get_platform_and_machine)
1 0.000 0.000 0.000 0.000 uuid.py:114(UUID)
1 0.000 0.000 0.000 0.000 typing.py:1601(__init__)
34 0.000 0.000 0.000 0.000 enum.py:68(_is_internal_class)
1 0.000 0.000 0.000 0.000 __init__.py:204(Path)
7 0.000 0.000 0.000 0.000 enum.py:1426(_iter_member_by_value_)
7 0.000 0.000 0.000 0.000 <frozen ntpath>:80(isabs)
14 0.000 0.000 0.000 0.000 annotationlib.py:673(transmogrify)
1 0.000 0.000 0.000 0.000 numbers.py:57(Complex)
1 0.000 0.000 0.000 0.000 __init__.py:1384(ZipFile)
2 0.000 0.000 0.000 0.000 <frozen ntpath>:529(abspath)
10 0.000 0.000 0.000 0.000 typing.py:1517(__mro_entries__)
14 0.000 0.000 0.000 0.000 functools.py:553(lru_cache)
2 0.000 0.000 0.000 0.000 wod_client.py:695(submit_paths)
1 0.000 0.000 0.000 0.000 functools.py:726(cache)
2 0.000 0.000 0.000 0.000 {built-in method numpy.empty}
5 0.000 0.000 0.000 0.000 enum.py:918(_check_for_existing_members_)
4 0.000 0.000 0.000 0.000 _parser.py:274(getuntil)
18 0.000 0.000 0.000 0.000 <frozen os>:772(check_str)
4 0.000 0.000 0.000 0.000 <frozen _collections_abc>:473(__new__)
145 0.000 0.000 0.000 0.000 inspect.py:2745(kind)
1 0.000 0.000 0.000 0.000 _common.py:19(package_to_anchor)
1 0.000 0.000 0.000 0.000 sprite.py:97(Sprite)
1 0.000 0.000 0.000 0.000 defmatrix.py:73(matrix)
12 0.000 0.000 0.000 0.000 __init__.py:632(__new__)
49 0.000 0.000 0.000 0.000 dataclasses.py:756(_is_initvar)
1 0.000 0.000 0.000 0.000 tempfile.py:706(SpooledTemporaryFile)
9 0.000 0.000 0.000 0.000 {built-in method _winapi.LCMapStringEx}
1 0.000 0.000 0.000 0.000 threading.py:630(set)
3 0.000 0.000 0.000 0.000 <frozen _collections_abc>:955(clear)
1 0.000 0.000 0.000 0.000 _functional.py:1(<module>)
22 0.000 0.000 0.000 0.000 _parser.py:947(fix_flags)
1 0.000 0.000 0.000 0.000 _internal.py:253(_missing_ctypes)
1 0.000 0.000 0.000 0.000 {built-in method nt.unsetenv}
79 0.000 0.000 0.000 0.000 {built-in method builtins.callable}
1 0.000 0.000 0.000 0.000 _inspect.py:1(<module>)
12 0.000 0.000 0.000 0.000 typing.py:310(_check_generic_specialization)
2 0.000 0.000 0.000 0.000 wod_client.py:550(start_troop_path)
69 0.000 0.000 0.000 0.000 __init__.py:108(<lambda>)
1 0.000 0.000 0.000 0.000 numbers.py:172(Real)
1 0.000 0.000 0.000 0.000 {method 'dot' of 'numpy.ndarray' objects}
1 0.000 0.000 0.000 0.000 bz2.py:26(BZ2File)
2 0.000 0.000 0.000 0.000 __init__.py:436(_load_library)
49 0.000 0.000 0.000 0.000 dataclasses.py:294(__init__)
1 0.000 0.000 0.000 0.000 wod_client.py:52(__init__)
1 0.000 0.000 0.000 0.000 __init__.py:101(CompleteDirs)
49 0.000 0.000 0.000 0.000 {built-in method builtins.id}
16 0.000 0.000 0.000 0.000 functools.py:65(wraps)
1 0.000 0.000 0.000 0.000 socket.py:218(socket)
1 0.000 0.000 0.000 0.000 <frozen ntpath>:254(basename)
6 0.000 0.000 0.000 0.000 typing.py:3116(_get_typeddict_qualifiers)
1 0.000 0.000 0.000 0.000 _array_utils_impl.py:1(<module>)
1 0.000 0.000 0.000 0.000 pickle.py:418(_Pickler)
1 0.000 0.000 0.000 0.000 numbers.py:328(Integral)
1 0.000 0.000 0.000 0.000 _zstdfile.py:20(ZstdFile)
3 0.000 0.000 0.000 0.000 getlimits.py:412(__init__)
1 0.000 0.000 0.000 0.000 __init__.py:481(__getattr__)
1 0.000 0.000 0.000 0.000 __init__.py:423(ZipInfo)
12 0.000 0.000 0.000 0.000 {method 'setter' of 'property' objects}
4 0.000 0.000 0.000 0.000 weakref.py:325(__getitem__)
1 0.000 0.000 0.000 0.000 {method 'setsockopt' of '_socket.socket' objects}
6 0.000 0.000 0.000 0.000 copyreg.py:12(pickle)
1 0.000 0.000 0.000 0.000 _colorize.py:210(Theme)
1 0.000 0.000 0.000 0.000 sysfont.py:272(create_aliases)
1 0.000 0.000 0.000 0.000 __init__.py:903(hugepage_setup)
49 0.000 0.000 0.000 0.000 _compiler.py:442(_get_iscased)
77 0.000 0.000 0.000 0.000 {built-in method _sre.unicode_iscased}
5 0.000 0.000 0.000 0.000 inspect.py:2404(_descriptor_get)
86 0.000 0.000 0.000 0.000 _compat_pickle.py:166(<genexpr>)
8 0.000 0.000 0.000 0.000 annotationlib.py:335(__init__)
4 0.000 0.000 0.000 0.000 _py_warnings.py:111(_get_filters)
1 0.000 0.000 0.000 0.000 traceback.py:1004(TracebackException)
1 0.000 0.000 0.000 0.000 {method 'match' of 're.Pattern' objects}
11 0.000 0.000 0.000 0.000 enum.py:187(__get__)
3 0.000 0.000 0.000 0.000 __init__.py:263(_extend_dict)
8 0.000 0.000 0.000 0.000 __init__.py:261(_format_parsed_parts)
6 0.000 0.000 0.000 0.000 _nbit_base.py:57(__init_subclass__)
1 0.000 0.000 0.000 0.000 lzma.py:38(LZMAFile)
1 0.000 0.000 0.000 0.000 _ufunc_config.py:488(__exit__)
39 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1040(__init__)
1 0.000 0.000 0.000 0.000 random.py:103(Random)
1 0.000 0.000 0.000 0.000 threading.py:869(Thread)
22 0.000 0.000 0.000 0.000 _type_aliases.py:128(<lambda>)
22 0.000 0.000 0.000 0.000 _parser.py:77(__init__)
4 0.000 0.000 0.000 0.000 _adapters.py:12(__init__)
1 0.000 0.000 0.000 0.000 _ufunc_config.py:472(__enter__)
49 0.000 0.000 0.000 0.000 {built-in method sys.getrecursionlimit}
1 0.000 0.000 0.000 0.000 sprite.py:1060(LayeredDirty)
10 0.000 0.000 0.000 0.000 typing.py:1136(<genexpr>)
1 0.000 0.000 0.000 0.000 contextlib.py:17(AbstractContextManager)
3 0.000 0.000 0.000 0.000 weakref.py:397(popitem)
1 0.000 0.000 0.000 0.000 wod_client.py:61(calculate_size)
65 0.000 0.000 0.000 0.000 {built-in method _sre.unicode_tolower}
1 0.000 0.000 0.000 0.000 _expired_attrs_2_0.py:1(<module>)
5 0.000 0.000 0.000 0.000 inspect.py:2071(_signature_is_functionlike)
4 0.000 0.000 0.000 0.000 typing.py:2458(_strip_annotations)
1 0.000 0.000 0.000 0.000 glob.py:524(_StringGlobber)
1 0.000 0.000 0.000 0.000 readers.py:64(MultiplexedPath)
40 0.000 0.000 0.000 0.000 _compiler.py:33(_combine_flags)
1 0.000 0.000 0.000 0.000 abc.py:62(Traversable)
2 0.000 0.000 0.000 0.000 <string>:2(__init__)
1 0.000 0.000 0.000 0.000 platform.py:938(uname_result)
1 0.000 0.000 0.000 0.000 __init__.py:488(__getitem__)
17 0.000 0.000 0.000 0.000 {method 'translate' of 'bytearray' objects}
2 0.000 0.000 0.000 0.000 __init__.py:322(get_default_scheme)
20 0.000 0.000 0.000 0.000 mixins.py:17(_binary_method)
4 0.000 0.000 0.000 0.000 _parser.py:265(getwhile)
1 0.000 0.000 0.000 0.000 __init__.py:947(ZipExtFile)
42 0.000 0.000 0.000 0.000 _compat_pickle.py:164(<genexpr>)
1 0.000 0.000 0.000 0.000 {built-in method _ctypes.LoadLibrary}
42 0.000 0.000 0.000 0.000 dataclasses.py:419(<genexpr>)
1 0.000 0.000 0.000 0.000 __init__.py:160(py_object)
1 0.000 0.000 0.000 0.000 _index_tricks_impl.py:325(AxisConcatenator)
6 0.000 0.000 0.000 0.000 _exceptions.py:16(_display_as_base)
49 0.000 0.000 0.000 0.000 dataclasses.py:762(_is_kw_only)
4 0.000 0.000 0.000 0.000 inspect.py:1343(repl)
30 0.000 0.000 0.000 0.000 cursors.py:200(<genexpr>)
5 0.000 0.000 0.000 0.000 enum.py:334(__init__)
1 0.000 0.000 0.000 0.000 threading.py:602(__init__)
17 0.000 0.000 0.000 0.000 typing.py:529(__init__)
23 0.000 0.000 0.000 0.000 overrides.py:180(array_function_from_dispatcher)
55 0.000 0.000 0.000 0.000 dataclasses.py:1169(<genexpr>)
1 0.000 0.000 0.000 0.000 abc.py:16(ResourceReader)
6 0.000 0.000 0.000 0.000 dataclasses.py:536(_make_annotate_function)
15 0.000 0.000 0.000 0.000 inspect.py:184(isclass)
14 0.000 0.000 0.000 0.000 mixins.py:27(_reflected_binary_method)
1 0.000 0.000 0.000 0.000 typing.py:3606(TextIO)
1 0.000 0.000 0.000 0.000 typing.py:31(SequenceLike)
1 0.000 0.000 0.000 0.000 readers.py:38(ZipReader)
1 0.000 0.000 0.000 0.000 <string>:1(__create_fn__)
16 0.000 0.000 0.000 0.000 {method 'items' of 'mappingproxy' objects}
42 0.000 0.000 0.000 0.000 dataclasses.py:1233(<genexpr>)
1 0.000 0.000 0.000 0.000 memmap.py:23(memmap)
4 0.000 0.000 0.000 0.000 typing.py:433(_eval_type)
31 0.000 0.000 0.000 0.000 enum.py:903(<lambda>)
38 0.000 0.000 0.000 0.000 {built-in method _ctypes.sizeof}
1 0.000 0.000 0.000 0.000 __init__.py:305(escape)
2 0.000 0.000 0.000 0.000 <frozen importlib.util>:249(__init__)
1 0.000 0.000 0.000 0.000 threading.py:438(notify_all)
2 0.000 0.000 0.000 0.000 __init__.py:310(get_preferred_scheme)
1 0.000 0.000 0.000 0.000 decoder.py:292(__init__)
1 0.000 0.000 0.000 0.000 difflib.py:44(SequenceMatcher)
2 0.000 0.000 0.000 0.000 {built-in method nt._getfullpathname}
22 0.000 0.000 0.000 0.000 {method 'values' of 'dict' objects}
1 0.000 0.000 0.000 0.000 functools.py:931(<lambda>)
1 0.000 0.000 0.000 0.000 {method 'reset' of '_contextvars.ContextVar' objects}
4 0.000 0.000 0.000 0.000 annotationlib.py:424(__get_ast)
1 0.000 0.000 0.000 0.000 _internal.py:262(_ctypes)
1 0.000 0.000 0.000 0.000 npyio.py:1(<module>)
3 0.000 0.000 0.000 0.000 {method 'popitem' of 'dict' objects}
17 0.000 0.000 0.000 0.000 {method 'upper' of 'str' objects}
7 0.000 0.000 0.000 0.000 enum.py:114(_iter_bits_lsb)
1 0.000 0.000 0.000 0.000 tempfile.py:885(TemporaryDirectory)
5 0.000 0.000 0.000 0.000 enum.py:947(_find_data_repr_)
4 0.000 0.000 0.000 0.000 _parser.py:304(checkgroupname)
1 0.000 0.000 0.000 0.000 __init__.py:534(LibraryLoader)
13 0.000 0.000 0.000 0.000 mixins.py:37(_inplace_binary_method)
1 0.000 0.000 0.000 0.000 simple_socket.py:63(Server)
8 0.000 0.000 0.000 0.000 functools.py:1095(__init__)
1 0.000 0.000 0.000 0.000 _nested_sequence.py:13(_NestedSequence)
1 0.000 0.000 0.000 0.000 readers.py:137(NamespaceReader)
1 0.000 0.000 0.000 0.000 __init__.py:83(InitializedState)
16 0.000 0.000 0.000 0.000 typing.py:2974(<genexpr>)
1 0.000 0.000 0.000 0.000 socket.py:683(SocketIO)
1 0.000 0.000 0.000 0.000 stride_tricks.py:1(<module>)
1 0.000 0.000 0.000 0.000 traceback.py:434(StackSummary)
1 0.000 0.000 0.000 0.000 _colorize.py:115(ThemeSection)
1 0.000 0.000 0.000 0.000 {built-in method math.exp}
4 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:1290(_sanity_check)
1 0.000 0.000 0.000 0.000 glob.py:337(_GlobberBase)
4 0.000 0.000 0.000 0.000 annotationlib.py:683(create_unique_name)
4 0.000 0.000 0.000 0.000 warnings.py:80(__enter__)
6 0.000 0.000 0.000 0.000 functools.py:916(_is_valid_dispatch_type)
2 0.000 0.000 0.000 0.000 wod_client.py:574(remove_existing_troop_path)
5 0.000 0.000 0.000 0.000 typing.py:1033(_is_typevar_like)
4 0.000 0.000 0.000 0.000 threading.py:126(RLock)
2 0.000 0.000 0.000 0.000 _dtype_like.py:35(__annotate__)
2 0.000 0.000 0.000 0.000 wod_client.py:600(handle_mouse_up)
1 0.000 0.000 0.000 0.000 difflib.py:1682(HtmlDiff)
1 0.000 0.000 0.000 0.000 contextlib.py:41(AbstractAsyncContextManager)
10 0.000 0.000 0.000 0.000 {method 'values' of 'mappingproxy' objects}
34 0.000 0.000 0.000 0.000 enum.py:236(__init__)
1 0.000 0.000 0.000 0.000 _os.py:314(_PathInfoBase)
1 0.000 0.000 0.000 0.000 _os.py:394(_WindowsPathInfo)
1 0.000 0.000 0.000 0.000 _npyio_impl.py:115(NpzFile)
1 0.000 0.000 0.000 0.000 weakref.py:334(__setitem__)
19 0.000 0.000 0.000 0.000 dataclasses.py:420(<genexpr>)
1 0.000 0.000 0.000 0.000 sprite.py:267(DirtySprite)
1 0.000 0.000 0.000 0.000 typing.py:2912(SupportsAbs)
1 0.000 0.000 0.000 0.000 getlimits.py:354(iinfo)
5 0.000 0.000 0.000 0.000 inspect.py:196(ismethoddescriptor)
1 0.000 0.000 0.000 0.000 wod_client.py:709(handle_paused_key_down)
1 0.000 0.000 0.000 0.000 typing.py:2868(SupportsFloat)
1 0.000 0.000 0.000 0.000 threading.py:146(_RLock)
4 0.000 0.000 0.000 0.000 dataclasses.py:336(__set_name__)
1 0.000 0.000 0.000 0.000 typing.py:1215(_BaseGenericAlias)
1 0.000 0.000 0.000 0.000 typing.py:3423(NewType)
1 0.000 0.000 0.000 0.000 <frozen os>:1134(__subclasshook__)
1 0.000 0.000 0.000 0.000 threading.py:290(__init__)
8 0.000 0.000 0.000 0.000 typing.py:3109(_namedtuple_mro_entries)
1 0.000 0.000 0.000 0.000 traceback.py:278(FrameSummary)
1 0.000 0.000 0.000 0.000 _datasource.py:195(DataSource)
16 0.000 0.000 0.000 0.000 enum.py:90(_is_single_bit)
2 0.000 0.000 0.000 0.000 __init__.py:421(_FuncPtr)
1 0.000 0.000 0.000 0.000 _version.py:13(NumpyVersion)
32 0.000 0.000 0.000 0.000 {built-in method builtins.chr}
1 0.000 0.000 0.000 0.000 encoder.py:74(JSONEncoder)
1 0.000 0.000 0.000 0.000 _iotools.py:133(LineSplitter)
1 0.000 0.000 0.000 0.000 inspect.py:1693(_shadowed_dict_from_weakref_mro_tuple)
1 0.000 0.000 0.000 0.000 _py_warnings.py:67(_GlobalContext)
1 0.000 0.000 0.000 0.000 contextlib.py:472(_BaseExitStack)
1 0.000 0.000 0.000 0.000 records.py:279(recarray)
2 0.000 0.000 0.000 0.000 _dtype_like.py:29(__annotate__)
18 0.000 0.000 0.000 0.000 enum.py:781(<genexpr>)
1 0.000 0.000 0.000 0.000 difflib.py:724(Differ)
1 0.000 0.000 0.000 0.000 _exceptions.py:108(_ArrayMemoryError)
1 0.000 0.000 0.000 0.000 _iotools.py:229(NameValidator)
2 0.000 0.000 0.000 0.000 weakref.py:309(__init__)
1 0.000 0.000 0.000 0.000 sprite.py:1398(GroupSingle)
7 0.000 0.000 0.000 0.000 typing.py:2709(final)
1 0.000 0.000 0.000 0.000 threading.py:1054(_set_native_id)
1 0.000 0.000 0.000 0.000 threading.py:685(Barrier)
1 0.000 0.000 0.000 0.000 threading.py:313(__enter__)
14 0.000 0.000 0.000 0.000 {method 'islower' of 'str' objects}
1 0.000 0.000 0.000 0.000 {built-in method numpy._core._multiarray_umath._make_extobj}
11 0.000 0.000 0.000 0.000 enum.py:1324(value)
1 0.000 0.000 0.000 0.000 version.py:33(SoftwareVersion)
4 0.000 0.000 0.000 0.000 warnings.py:84(__exit__)
1 0.000 0.000 0.000 0.000 _linalg.py:92(QRResult)
1 0.000 0.000 0.000 0.000 glob.py:7(Translator)
1 0.000 0.000 0.000 0.000 threading.py:591(Event)
1 0.000 0.000 0.000 0.000 _arrayterator_impl.py:16(Arrayterator)
1 0.000 0.000 0.000 0.000 __init__.py:1292(_ZipWriteFile)
2 0.000 0.000 0.000 0.000 {built-in method math.log}
12 0.000 0.000 0.000 0.000 {method 'keys' of 'dict' objects}
6 0.000 0.000 0.000 0.000 dataclasses.py:1414(dataclass)
4 0.000 0.000 0.000 0.000 _adapters.py:16(__getattr__)
12 0.000 0.000 0.000 0.000 {method 'removeprefix' of 'str' objects}
8 0.000 0.000 0.000 0.000 {built-in method sys._getframemodulename}
1 0.000 0.000 0.000 0.000 {built-in method pygame.event.set_allowed}
2 0.000 0.000 0.000 0.000 {built-in method pygame.base.get_sdl_version}
1 0.000 0.000 0.000 0.000 _colorize.py:174(Syntax)
1 0.000 0.000 0.000 0.000 threading.py:408(notify)
2 0.000 0.000 0.000 0.000 <frozen importlib.util>:238(__check_eager_loader)
2 0.000 0.000 0.000 0.000 version.py:41(__new__)
1 0.000 0.000 0.000 0.000 typing.py:3592(BinaryIO)
1 0.000 0.000 0.000 0.000 contextlib.py:631(AsyncExitStack)
1 0.000 0.000 0.000 0.000 _function_base_impl.py:2267(vectorize)
1 0.000 0.000 0.000 0.000 _colorize.py:157(Argparse)
1 0.000 0.000 0.000 0.000 platform.py:882(_Processor)
1 0.000 0.000 0.000 0.000 arrayprint.py:1392(DatetimeFormat)
4 0.000 0.000 0.000 0.000 __init__.py:604(CFunctionType)
5 0.000 0.000 0.000 0.000 _pytesttester.py:75(__init__)
1 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:1106(_resolve_filename)
5 0.000 0.000 0.000 0.000 inspect.py:432(isbuiltin)
13 0.000 0.000 0.000 0.000 typing.py:501(__init_subclass__)
10 0.000 0.000 0.000 0.000 __future__.py:83(__init__)
1 0.000 0.000 0.000 0.000 _streams.py:33(DecompressReader)
1 0.000 0.000 0.000 0.000 numbers.py:292(Rational)
2 0.000 0.000 0.000 0.000 {built-in method math.sqrt}
1 0.000 0.000 0.000 0.000 {built-in method _sysconfig.config_vars}
12 0.000 0.000 0.000 0.000 <frozen _collections_abc>:439(__subclasshook__)
6 0.000 0.000 0.000 0.000 dataclasses.py:437(__init__)
32 0.000 0.000 0.000 0.000 inspect.py:2737(default)
1 0.000 0.000 0.000 0.000 typing.py:2857(SupportsInt)
1 0.000 0.000 0.000 0.000 _dtype_like.py:35(_DTypeDict)
2 0.000 0.000 0.000 0.000 _arraysetops_impl.py:419(__annotate__)
1 0.000 0.000 0.000 0.000 {built-in method pygame.display.Info}
1 0.000 0.000 0.000 0.000 _colorize.py:189(Traceback)
1 0.000 0.000 0.000 0.000 abc.py:153(TraversableResources)
1 0.000 0.000 0.000 0.000 _index_tricks_impl.py:549(__init__)
1 0.000 0.000 0.000 0.000 __init__.py:396(CDLL)
1 0.000 0.000 0.000 0.000 _adapters.py:46(SpecPath)
14 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:1017(is_package)
1 0.000 0.000 0.000 0.000 _compiler.py:421(_generate_overlap_table)
4 0.000 0.000 0.000 0.000 dataclasses.py:705(<genexpr>)
4 0.000 0.000 0.000 0.000 typing.py:3152(<genexpr>)
1 0.000 0.000 0.000 0.000 _globals.py:53(__new__)
1 0.000 0.000 0.000 0.000 _exceptions.py:67(_UFuncCastingError)
1 0.000 0.000 0.000 0.000 arrayprint.py:1455(StructuredVoidFormat)
1 0.000 0.000 0.000 0.000 _index_tricks_impl.py:266(__init__)
1 0.000 0.000 0.000 0.000 simple_socket.py:7(Client)
5 0.000 0.000 0.000 0.000 constants.py:17(__init__)
4 0.000 0.000 0.000 0.000 enum.py:789(__members__)
1 0.000 0.000 0.000 0.000 typing.py:3660(_IdentityCallable)
4 0.000 0.000 0.000 0.000 contextlib.py:444(__init__)
1 0.000 0.000 0.000 0.000 tempfile.py:433(_TemporaryFileCloser)
5 0.000 0.000 0.000 0.000 enum.py:1724(_simple_enum)
1 0.000 0.000 0.000 0.000 _weakrefset.py:45(add)
1 0.000 0.000 0.000 0.000 _weakrefset.py:12(__init__)
1 0.000 0.000 0.000 0.000 tempfile.py:132(_RandomNameSequence)
1 0.000 0.000 0.000 0.000 _os.py:487(DirEntryInfo)