-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest.log
1771 lines (1764 loc) · 130 KB
/
test.log
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
('1.0', 'MDSplus')
running test
running egg_info
writing MDSplus.egg-info/PKG-INFO
writing top-level names to MDSplus.egg-info/top_level.txt
writing dependency_links to MDSplus.egg-info/dependency_links.txt
writing manifest file 'MDSplus.egg-info/SOURCES.txt'
running build_ext
runTest (tests.treeUnitTest.treeTests) ... FAIL
basicBinaryOperators (tests.dataUnitTest.dataTests) ... ok
mathFunctions (tests.dataUnitTest.dataTests) ... ok
tdiFunctions (tests.dataUnitTest.dataTests) ... ok
cleanup (tests.cleanup) ... ok
======================================================================
FAIL: runTest (tests.treeUnitTest.treeTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/home/twf/mdsplus-tdishr/mdsobjects/python/tests/treeUnitTest.py", line 240, in runTest
self.setDefault()
File "/home/twf/mdsplus-tdishr/mdsobjects/python/tests/treeUnitTest.py", line 105, in setDefault
self.assertEqual(str(self.pytree2.getDefault()),'\\PYTREESUB::IP')
AssertionError: '\\PYTREE::TOP' != '\\PYTREESUB::IP'
----------------------------------------------------------------------
Ran 5 tests in 14.204s
FAILED (failures=1)
Creating trees in /tmp/tmpDQIRhY
/tmp/tmpDQIRhY
292997 function calls (281298 primitive calls) in 16.477 CPU seconds
Ordered by: internal time
ncalls tottime percall cumtime percall filename:lineno(function)
882 5.558 0.006 5.559 0.006 tree.py:165(__init__)
1 4.167 4.167 4.167 4.167 tree.py:309(createPulse)
2 1.399 0.699 1.400 0.700 tree.py:718(write)
10 1.177 0.118 1.180 0.118 tree.py:260(addDevice)
1206 0.771 0.001 0.771 0.001 {built-in method search}
1 0.692 0.692 0.692 0.692 tree.py:624(setCurrent)
882 0.247 0.000 1.251 0.001 builtin.py:79(evaluate)
15475 0.112 0.000 0.264 0.000 {hasattr}
65/25 0.109 0.002 1.218 0.049 {__import__}
13241/4525 0.100 0.000 0.100 0.000 data.py:1803(__getattr__)
1 0.094 0.094 0.137 0.137 __init__.py:29(_addDocs)
1539 0.088 0.000 0.088 0.000 {posix.stat}
7220 0.075 0.000 0.076 0.000 __init__.py:488(cast)
938/895 0.074 0.000 0.514 0.001 data.py:1878(_getDescriptor)
4993 0.065 0.000 0.067 0.000 data.py:1066(__getattr__)
1277 0.044 0.000 0.179 0.000 data.py:1077(_getDescriptor)
444 0.040 0.000 0.099 0.000 data.py:1559(_getDescriptor)
7800/7733 0.040 0.000 0.040 0.000 {_ctypes.pointer}
4244 0.040 0.000 0.059 0.000 posixpath.py:59(join)
102 0.039 0.000 0.039 0.000 {posix.listdir}
17763 0.038 0.000 0.038 0.000 {isinstance}
85 0.035 0.000 0.035 0.000 {method 'read' of 'file' objects}
589 0.031 0.000 0.074 0.000 data.py:1165(_dataFromDescriptor)
310 0.029 0.000 0.054 0.000 data.py:1588(_dataFromDescriptor)
4912/4904 0.028 0.000 0.029 0.000 data.py:169(__setattr__)
512 0.027 0.000 0.136 0.000 pkg_resources.py:1680(find_on_path)
2261 0.026 0.000 0.040 0.000 data.py:1049(__new__)
570/567 0.025 0.000 0.143 0.000 posixpath.py:354(realpath)
1799/881 0.023 0.000 0.165 0.000 data.py:128(_getValue)
2441 0.022 0.000 0.022 0.000 {posix.lstat}
308 0.022 0.000 0.400 0.001 {eval}
456 0.020 0.000 0.043 0.000 builtin.py:120(getDoc)
1 0.019 0.019 0.021 0.021 tdiparsetab.py:4(<module>)
363 0.019 0.000 0.019 0.000 {imp.find_module}
13985 0.018 0.000 0.018 0.000 {method 'startswith' of 'str' objects}
881 0.018 0.000 0.199 0.000 data.py:242(_getValue)
1631 0.018 0.000 0.021 0.000 data.py:1059(__init__)
528 0.016 0.000 0.030 0.000 text_file.py:162(readline)
897 0.016 0.000 0.016 0.000 {numpy.core.multiarray.array}
1 0.016 0.016 0.018 0.018 builtins_to_be_completed.py:1(<module>)
14745 0.016 0.000 0.016 0.000 {method 'endswith' of 'str' objects}
87 0.015 0.000 0.015 0.000 {open}
2839/2838 0.014 0.000 0.150 0.000 data.py:205(_descrWithUnitsAndError)
162/50 0.014 0.000 0.043 0.001 sre_parse.py:385(_parse)
2440 0.014 0.000 0.045 0.000 posixpath.py:129(islink)
888 0.013 0.000 0.082 0.000 builtin.py:47(__init__)
242 0.013 0.000 0.018 0.000 function_base.py:2897(add_newdoc)
3754 0.013 0.000 0.013 0.000 {built-in method match}
639 0.013 0.000 0.022 0.000 posixpath.py:311(normpath)
1107 0.013 0.000 0.017 0.000 threading.py:136(release)
4 0.012 0.003 0.295 0.074 __init__.py:2(<module>)
11334/11175 0.012 0.000 0.013 0.000 {len}
1107 0.012 0.000 0.018 0.000 threading.py:116(acquire)
14 0.012 0.001 0.015 0.001 data.py:1997(__new__)
456 0.012 0.000 0.095 0.000 {map}
11065 0.012 0.000 0.012 0.000 {method 'append' of 'list' objects}
1107 0.011 0.000 0.030 0.000 tree.py:565(lock)
374/95 0.011 0.000 0.115 0.001 tree.py:789(__getattr__)
973 0.011 0.000 0.018 0.000 tree.py:605(restoreContext)
2671 0.011 0.000 0.038 0.000 data.py:105(makeData)
1 0.011 0.011 0.023 0.023 sysconfig.py:231(parse_config_h)
1107 0.010 0.000 0.028 0.000 tree.py:697(unlock)
2910 0.010 0.000 0.010 0.000 {method 'split' of 'str' objects}
4000 0.010 0.000 0.010 0.000 {issubclass}
1 0.010 0.010 0.012 0.012 numeric.py:1(<module>)
294/49 0.009 0.000 0.028 0.001 sre_compile.py:38(_compile)
88 0.009 0.000 0.009 0.000 {method 'close' of 'file' objects}
377 0.009 0.000 0.021 0.000 pkg_resources.py:478(add)
150 0.009 0.000 0.011 0.000 pkg_resources.py:2582(_get_mro)
449/443 0.009 0.000 0.019 0.000 data.py:387(bool)
849 0.009 0.000 0.010 0.000 {built-in method sub}
1751 0.009 0.000 0.011 0.000 sre_parse.py:188(__next)
1776 0.009 0.000 0.009 0.000 data.py:1456(__getattr__)
5 0.008 0.002 0.008 0.002 {_ctypes.dlopen}
77 0.008 0.000 0.018 0.000 tree.py:280(addNode)
308 0.008 0.000 0.702 0.002 dataUnitTest.py:38(doit)
881 0.008 0.000 0.012 0.000 data.py:252(__del__)
1 0.008 0.008 0.081 0.081 builtin_set.py:1(<module>)
7744 0.008 0.000 0.008 0.000 {method 'lower' of 'str' objects}
6466 0.008 0.000 0.020 0.000 pkg_resources.py:1825(_normalize_cached)
376 0.008 0.000 0.042 0.000 pkg_resources.py:2062(from_location)
404 0.008 0.000 0.013 0.000 builtin.py:168(getCCodeName)
1 0.007 0.007 0.042 0.042 sysconfig.py:266(parse_makefile)
3019 0.007 0.000 0.007 0.000 {_ctypes.POINTER}
1 0.007 0.007 0.741 0.741 dataUnitTest.py:37(basicBinaryOperators)
3191 0.007 0.000 0.007 0.000 {built-in method __new__ of type object at 0x6cdf2e0}
1 0.007 0.007 1.120 1.120 treeUnitTest.py:1(<module>)
331 0.007 0.000 0.371 0.001 data.py:419(__eq__)
1542 0.007 0.000 0.010 0.000 pkg_resources.py:2106(key)
167 0.007 0.000 0.107 0.001 pkg_resources.py:2265(insert_on)
1 0.007 0.007 0.009 0.009 polynomial.py:42(<module>)
1 0.007 0.007 0.012 0.012 config.py:5(<module>)
1 0.006 0.006 0.014 0.014 __init__.py:38(<module>)
363 0.006 0.000 0.117 0.000 pkgutil.py:176(find_module)
2435 0.006 0.000 0.009 0.000 stat.py:55(S_ISLNK)
2389 0.006 0.000 0.006 0.000 {range}
792 0.006 0.000 0.048 0.000 pkg_resources.py:2169(_get_metadata)
630 0.006 0.000 0.017 0.000 data.py:1438(__init__)
1119 0.006 0.000 0.009 0.000 pkg_resources.py:2206(__getattr__)
882 0.006 0.000 0.006 0.000 data.py:233(__init__)
376 0.006 0.000 0.025 0.000 pkg_resources.py:2048(__init__)
888/885 0.006 0.000 0.008 0.000 builtin.py:34(__new__)
977 0.006 0.000 0.007 0.000 tree.py:591(_setActiveTree)
1 0.006 0.006 0.008 0.008 chebyshev.py:61(<module>)
4 0.006 0.001 0.396 0.099 __init__.py:1(<module>)
1191/660 0.006 0.000 0.013 0.000 pkg_resources.py:1840(yield_lines)
415/173 0.006 0.000 0.007 0.000 sre_parse.py:146(getwidth)
899 0.005 0.000 0.093 0.000 re.py:229(_compile)
794 0.005 0.000 0.076 0.000 genericpath.py:38(isdir)
89 0.005 0.000 0.010 0.000 sre_compile.py:213(_optimize_charset)
444 0.005 0.000 0.005 0.000 _internal.py:267(__init__)
998 0.005 0.000 0.006 0.000 data.py:1838(__setattr__)
1 0.005 0.005 0.142 0.142 __init__.py:102(<module>)
1 0.005 0.005 0.305 0.305 extension.py:1(<module>)
2 0.005 0.002 0.006 0.003 __init__.py:4(<module>)
2475 0.005 0.000 0.005 0.000 {method 'readline' of 'file' objects}
1 0.005 0.005 0.668 0.668 data.py:1(<module>)
3675 0.005 0.000 0.005 0.000 stat.py:24(S_IFMT)
1195 0.005 0.000 0.007 0.000 sre_parse.py:136(__getitem__)
847 0.004 0.000 0.018 0.000 re.py:144(sub)
1 0.004 0.004 0.005 0.005 random.py:40(<module>)
1 0.004 0.004 0.073 0.073 build_ext.py:1(<module>)
1425 0.004 0.000 0.013 0.000 sre_parse.py:207(get)
697 0.004 0.000 0.120 0.000 unittest.py:343(failUnlessEqual)
888 0.004 0.000 0.006 0.000 tree.py:423(getActiveTree)
1 0.004 0.004 0.010 0.010 index_tricks.py:1(<module>)
148 0.004 0.000 0.175 0.001 pkg_resources.py:400(add_entry)
1 0.004 0.004 0.004 0.004 collections.py:1(<module>)
1628 0.004 0.000 0.004 0.000 {method 'join' of 'str' objects}
632 0.004 0.000 0.029 0.000 posixpath.py:340(abspath)
517 0.004 0.000 0.005 0.000 pkgutil.py:358(get_importer)
354 0.004 0.000 0.019 0.000 data.py:992(makeScalar)
1 0.004 0.004 0.006 0.006 io.py:1(<module>)
21 0.004 0.000 0.004 0.000 sre_compile.py:264(_mk_bitmap)
1 0.004 0.004 0.248 0.248 install_scripts.py:1(<module>)
369 0.004 0.000 0.125 0.000 pkg_resources.py:1737(_handle_ns)
186 0.004 0.000 0.004 0.000 {method 'all' of 'numpy.ndarray' objects}
56 0.004 0.000 0.040 0.001 pkg_resources.py:440(iter_entry_points)
4 0.003 0.001 0.003 0.001 {posix.popen}
886 0.003 0.000 0.009 0.000 tree.py:159(__new__)
76/24 0.003 0.000 0.078 0.003 os.py:209(walk)
1371 0.003 0.000 0.005 0.000 string.py:351(find)
2216 0.003 0.000 0.003 0.000 {thread.get_ident}
2215 0.003 0.000 0.003 0.000 threading.py:64(_note)
77 0.003 0.000 0.204 0.003 tree.py:1026(addNode)
517 0.003 0.000 0.016 0.000 genericpath.py:26(isfile)
49 0.003 0.000 0.003 0.000 {dir}
595 0.003 0.000 0.035 0.000 pkg_resources.py:2231(get_entry_map)
1205 0.003 0.000 0.005 0.000 posixpath.py:50(isabs)
2058 0.003 0.000 0.003 0.000 {method 'get' of 'dict' objects}
1199 0.003 0.000 0.005 0.000 string.py:270(rstrip)
23 0.003 0.000 0.023 0.001 tree.py:1639(putData)
437 0.003 0.000 0.004 0.000 genericpath.py:85(_splitext)
166 0.003 0.000 0.248 0.001 pkg_resources.py:2174(activate)
1 0.003 0.003 0.245 0.245 pkg_resources.py:14(<module>)
166 0.003 0.000 0.080 0.000 pkg_resources.py:2317(check_version_conflict)
1 0.003 0.003 0.003 0.003 threadsUnitTest.py:1(<module>)
1 0.003 0.003 0.005 0.005 test.py:1(<module>)
1351 0.003 0.000 0.003 0.000 {getattr}
1881 0.003 0.000 0.003 0.000 {method 'rstrip' of 'str' objects}
1 0.003 0.003 0.009 0.009 ctypeslib.py:51(<module>)
1 0.003 0.003 0.959 0.959 tree.py:1(<module>)
1 0.003 0.003 0.008 0.008 threading.py:1(<module>)
1593 0.003 0.000 0.003 0.000 {built-in method group}
1018 0.003 0.000 0.003 0.000 {built-in method acquire}
1 0.003 0.003 0.003 0.003 builtins_unsupported.py:1(<module>)
1429 0.003 0.000 0.003 0.000 {method 'rfind' of 'str' objects}
772 0.003 0.000 0.003 0.000 pkg_resources.py:465(__iter__)
279 0.003 0.000 0.003 0.000 {method 'decode' of 'str' objects}
166 0.003 0.000 0.100 0.001 pkg_resources.py:1789(fixup_namespace_packages)
1 0.003 0.003 0.026 0.026 core.py:7(<module>)
1 0.003 0.003 0.003 0.003 setup.py:5(getRelease)
180 0.002 0.000 0.012 0.000 pkg_resources.py:2400(parse_requirements)
1 0.002 0.002 0.002 0.002 __init__.py:84(<module>)
1 0.002 0.002 0.012 0.012 install.py:1(<module>)
1 0.002 0.002 0.002 0.002 linalg.py:10(<module>)
773 0.002 0.000 0.003 0.000 stat.py:40(S_ISDIR)
95 0.002 0.000 0.012 0.000 tree.py:778(_getDescriptor)
1 0.002 0.002 0.002 0.002 unittest.py:44(<module>)
1 0.002 0.002 0.007 0.007 depends.py:1(<module>)
340/172 0.002 0.000 0.028 0.000 sdist.py:49(_default_revctrl)
207 0.002 0.000 0.010 0.000 sdist.py:18(find)
1382 0.002 0.000 0.002 0.000 data.py:1072(_getValue)
1 0.002 0.002 0.002 0.002 _datasource.py:33(<module>)
2 0.002 0.001 0.003 0.002 defmatrix.py:1(<module>)
1 0.002 0.002 0.002 0.002 tempfile.py:18(<module>)
374 0.002 0.000 0.009 0.000 pkg_resources.py:1097(safe_version)
226 0.002 0.000 0.011 0.000 genericpath.py:15(exists)
1 0.002 0.002 0.003 0.003 glob.py:1(<module>)
242 0.002 0.000 0.003 0.000 posixpath.py:79(split)
1 0.002 0.002 0.003 0.003 builtin.py:63(loadBuiltins)
1 0.002 0.002 16.483 16.483 {execfile}
1 0.002 0.002 16.481 16.481 setup.py:2(<module>)
1348 0.002 0.000 0.002 0.000 data.py:1459(_getValue)
1 0.002 0.002 0.004 0.004 util.py:4(<module>)
1 0.002 0.002 0.006 0.006 fancy_getopt.py:9(<module>)
96 0.002 0.000 0.009 0.000 data.py:1318(__str__)
1392 0.002 0.000 0.002 0.000 {method 'find' of 'str' objects}
191 0.002 0.000 0.003 0.000 posixpath.py:117(dirname)
1 0.002 0.002 0.003 0.003 __init__.py:15(loadBuiltins)
2 0.002 0.001 1.364 0.682 __init__.py:7(<module>)
133/49 0.002 0.000 0.044 0.001 sre_parse.py:307(_parse_sub)
278 0.002 0.000 0.005 0.000 pkg_resources.py:1218(_fn)
53 0.002 0.000 0.004 0.000 data.py:1764(__init__)
1412 0.002 0.000 0.002 0.000 {method 'strip' of 'str' objects}
127 0.002 0.000 0.471 0.004 data.py:620(execute)
466 0.002 0.000 0.012 0.000 pkg_resources.py:1089(safe_name)
830 0.002 0.000 0.004 0.000 sre_parse.py:201(match)
88 0.002 0.000 0.004 0.000 pkg_resources.py:2483(__init__)
49 0.002 0.000 0.010 0.000 sre_compile.py:367(_compile_info)
1 0.002 0.002 8.456 8.456 treeUnitTest.py:45(editTrees)
2 0.002 0.001 0.034 0.017 builtin_set.py:19(_load_builtins)
86 0.002 0.000 0.017 0.000 pkg_resources.py:1965(parse)
166 0.002 0.000 0.010 0.000 {built-in method fromkeys}
267 0.002 0.000 0.002 0.000 data.py:1103(__int__)
310 0.002 0.000 0.002 0.000 data.py:155(__getattr__)
437 0.002 0.000 0.006 0.000 posixpath.py:94(splitext)
563 0.001 0.000 0.002 0.000 sre_parse.py:144(append)
1 0.001 0.001 0.121 0.121 dataUnitTest.py:406(tdiFunctions)
136 0.001 0.000 0.001 0.000 {posix.access}
130 0.001 0.000 0.079 0.001 tree.py:925(__setattr__)
106 0.001 0.000 0.001 0.000 {zip}
86 0.001 0.000 0.013 0.000 pkg_resources.py:2530(parse)
198 0.001 0.000 0.010 0.000 pkg_resources.py:2602(split_sections)
1017 0.001 0.000 0.001 0.000 {built-in method release}
1 0.001 0.001 0.006 0.006 core.py:21(<module>)
203 0.001 0.000 0.054 0.000 pkg_resources.py:1821(normalize_path)
563 0.001 0.000 0.002 0.000 sre_parse.py:132(__len__)
205 0.001 0.000 0.015 0.000 pkg_resources.py:1153(has_metadata)
1 0.001 0.001 0.274 0.274 dist.py:1(<module>)
205 0.001 0.000 0.010 0.000 pkg_resources.py:1262(_has)
89 0.001 0.000 0.011 0.000 sre_compile.py:184(_compile_charset)
19/15 0.001 0.000 0.007 0.000 data.py:1958(_dataFromDescriptor)
86 0.001 0.000 0.014 0.000 pkg_resources.py:1926(__init__)
624 0.001 0.000 0.001 0.000 {min}
626 0.001 0.000 0.001 0.000 {method 'replace' of 'str' objects}
467 0.001 0.000 0.002 0.000 stat.py:49(S_ISREG)
3 0.001 0.000 0.006 0.002 filelist.py:247(exclude_pattern)
911 0.001 0.000 0.001 0.000 {method 'setdefault' of 'dict' objects}
98 0.001 0.000 0.003 0.000 tree.py:909(__init__)
150 0.001 0.000 0.012 0.000 pkg_resources.py:2589(_find_adapter)
4 0.001 0.000 0.817 0.204 util.py:184(_findSoname_ldconfig)
148 0.001 0.000 0.014 0.000 pkg_resources.py:1647(find_distributions)
1 0.001 0.001 0.007 0.007 filelist.py:65(sort)
2 0.001 0.001 0.004 0.002 function_base.py:1(<module>)
29 0.001 0.000 0.006 0.000 {filter}
1 0.001 0.001 0.086 0.086 __init__.py:81(findall)
1 0.001 0.001 0.004 0.004 numerictypes.py:79(<module>)
174 0.001 0.000 0.002 0.000 pkg_resources.py:2409(scan_list)
16 0.001 0.000 0.003 0.000 tree.py:85(__getattr__)
696 0.001 0.000 0.001 0.000 {method 'upper' of 'str' objects}
1 0.001 0.001 0.001 0.001 filelist.py:5(<module>)
1 0.001 0.001 0.002 0.002 dataUnitTest.py:1(<module>)
49 0.001 0.000 0.086 0.002 sre_compile.py:501(compile)
1132 0.001 0.000 0.001 0.000 {globals}
3 0.001 0.000 0.139 0.046 pkg_resources.py:386(__init__)
123 0.001 0.000 0.002 0.000 sre_compile.py:360(_simple)
1 0.001 0.001 0.089 0.089 add_newdocs.py:9(<module>)
49 0.001 0.000 0.046 0.001 sre_parse.py:669(parse)
499 0.001 0.000 0.001 0.000 pkgutil.py:173(__init__)
1 0.001 0.001 0.001 0.001 errors.py:9(<module>)
174 0.001 0.000 0.001 0.000 string.py:158(convert)
363 0.001 0.000 0.001 0.000 {method 'splitlines' of 'str' objects}
83 0.001 0.000 0.030 0.000 pkg_resources.py:2021(parse_map)
231 0.001 0.000 0.002 0.000 sdist.py:29(joinpath)
1 0.001 0.001 0.004 0.004 egg_info.py:375(write_pkg_info)
1 0.001 0.001 0.002 0.002 decorators.py:15(<module>)
22 0.001 0.000 0.001 0.000 __init__.py:370(__getitem__)
174 0.001 0.000 0.001 0.000 {method 'index' of 'list' objects}
96 0.001 0.000 0.006 0.000 data.py:306(_decompile_units_and_error)
5 0.001 0.000 0.013 0.003 build_py.py:235(find_package_modules)
73 0.001 0.000 0.017 0.000 pkg_resources.py:1274(_get)
1 0.001 0.001 0.002 0.002 lex.py:34(<module>)
1 0.001 0.001 0.001 0.001 arrayprint.py:4(<module>)
95 0.001 0.000 0.001 0.000 {method 'tostring' of 'numpy.generic' objects}
3 0.001 0.000 0.001 0.000 numeric.py:163(extend_all)
1 0.001 0.001 0.002 0.002 sdist.py:3(<module>)
29 0.001 0.000 0.001 0.000 _inspect.py:157(formatargspec)
5 0.001 0.000 0.009 0.002 __init__.py:337(__init__)
1 0.001 0.001 0.002 0.002 yacc.py:62(<module>)
2 0.001 0.000 0.250 0.125 pkg_resources.py:656(subscribe)
62 0.001 0.000 0.009 0.000 pkg_resources.py:2213(from_filename)
1 0.001 0.001 0.003 0.003 __init__.py:43(<module>)
294 0.001 0.000 0.001 0.000 sre_parse.py:96(__init__)
32 0.001 0.000 0.020 0.001 pkg_resources.py:2006(parse_group)
1 0.001 0.001 0.001 0.001 cmd.py:5(<module>)
519 0.001 0.000 0.001 0.000 {built-in method end}
249 0.001 0.000 0.001 0.000 pkg_resources.py:665(_added_new)
1 0.001 0.001 0.006 0.006 install.py:3(<module>)
522 0.001 0.000 0.001 0.000 {method 'capitalize' of 'str' objects}
444 0.001 0.000 0.001 0.000 _internal.py:293(get_data)
5 0.001 0.000 0.001 0.000 {method 'clear' of 'dict' objects}
90 0.001 0.000 0.001 0.000 {method 'sort' of 'list' objects}
59 0.001 0.000 0.001 0.000 {method 'write' of 'file' objects}
2 0.001 0.000 0.001 0.001 fancy_getopt.py:147(_grok_option_table)
40 0.001 0.000 0.001 0.000 re.py:206(escape)
88 0.001 0.000 0.001 0.000 sre_parse.py:263(_escape)
1 0.001 0.001 0.001 0.001 fftpack.py:32(<module>)
73 0.001 0.000 0.018 0.000 pkg_resources.py:1157(get_metadata)
1 0.001 0.001 0.001 0.001 utils.py:3(<module>)
85 0.001 0.000 0.002 0.000 data.py:978(_getDescriptor)
24 0.001 0.000 0.030 0.001 data.py:511(__ne__)
1 0.001 0.001 0.002 0.002 __init__.py:6(<module>)
1 0.001 0.001 0.006 0.006 ConfigParser.py:88(<module>)
1 0.001 0.001 0.009 0.009 dist.py:5(<module>)
1 0.001 0.001 0.003 0.003 arraysetops.py:30(<module>)
22 0.001 0.000 0.027 0.001 data.py:444(__ge__)
91 0.001 0.000 0.002 0.000 tree.py:1735(restoreContext)
22 0.001 0.000 0.029 0.001 data.py:496(__lt__)
22 0.001 0.000 0.027 0.001 data.py:475(__le__)
512 0.001 0.000 0.001 0.000 {chr}
537 0.000 0.000 0.000 0.000 {ord}
86 0.000 0.000 0.103 0.001 data.py:1314(__add__)
22 0.000 0.000 0.026 0.001 data.py:460(__gt__)
122 0.000 0.000 0.001 0.000 posixpath.py:109(basename)
1 0.000 0.000 0.005 0.005 sdist.py:1(<module>)
26 0.000 0.000 0.030 0.001 data.py:506(__mul__)
10 0.000 0.000 1.216 0.122 tree.py:1013(addDevice)
378 0.000 0.000 0.000 0.000 pkg_resources.py:1483(has_metadata)
22 0.000 0.000 0.026 0.001 data.py:412(__div__)
338 0.000 0.000 0.000 0.000 {method 'values' of 'dict' objects}
24 0.000 0.000 0.029 0.001 data.py:407(__and__)
49 0.000 0.000 0.038 0.001 sre_compile.py:486(_code)
29 0.000 0.000 0.001 0.000 _inspect.py:59(getargs)
139 0.000 0.000 0.000 0.000 {repr}
1 0.000 0.000 0.004 0.004 filelist.py:201(include_pattern)
239 0.000 0.000 0.000 0.000 {numpy.lib._compiled_base.add_docstring}
1 0.000 0.000 0.001 0.001 numerictypes.py:274(_add_aliases)
1 0.000 0.000 0.000 0.000 tree.py:751(TreeNode)
22 0.000 0.000 0.028 0.001 data.py:576(__rshift__)
22 0.000 0.000 0.024 0.001 data.py:592(__sub__)
73 0.000 0.000 0.019 0.000 pkg_resources.py:1167(get_metadata_lines)
1 0.000 0.000 0.001 0.001 build_py.py:1(<module>)
22 0.000 0.000 0.032 0.001 data.py:401(__add__)
69 0.000 0.000 0.000 0.000 {posix.getcwd}
1 0.000 0.000 0.001 0.001 util.py:5(<module>)
22 0.000 0.000 0.025 0.001 data.py:491(__lshift__)
172 0.000 0.000 0.030 0.000 sdist.py:43(walk_revctrl)
1 0.000 0.000 0.001 0.001 extras.py:10(<module>)
174 0.000 0.000 0.001 0.000 string.py:248(strip)
83 0.000 0.000 0.117 0.001 test.py:115(<lambda>)
22 0.000 0.000 0.027 0.001 data.py:526(__or__)
224 0.000 0.000 0.000 0.000 pkg_resources.py:1480(__init__)
183 0.000 0.000 0.000 0.000 {method 'tostring' of 'numpy.ndarray' objects}
23 0.000 0.000 0.001 0.000 numerictypes.py:215(bitname)
5 0.000 0.000 0.001 0.000 fnmatch.py:45(filter)
1 0.000 0.000 0.009 0.009 dataUnitTest.py:384(mathFunctions)
1 0.000 0.000 0.045 0.045 type_check.py:3(<module>)
2 0.000 0.000 0.000 0.000 getlimits.py:2(<module>)
98 0.000 0.000 0.000 0.000 sre_compile.py:480(isstring)
25 0.000 0.000 0.001 0.000 __init__.py:363(__getattr__)
1 0.000 0.000 0.001 0.001 builtin.py:1(<module>)
1 0.000 0.000 0.004 0.004 polynomial.py:3(<module>)
15 0.000 0.000 0.000 0.000 utils.py:114(__call__)
1 0.000 0.000 0.032 0.032 compile.py:1(<module>)
1 0.000 0.000 0.000 0.000 polyutils.py:29(<module>)
19 0.000 0.000 0.001 0.000 nosetester.py:138(__init__)
76 0.000 0.000 0.000 0.000 sre_parse.py:78(opengroup)
83 0.000 0.000 0.132 0.002 pkg_resources.py:2675(<lambda>)
66 0.000 0.000 0.006 0.000 glob.py:18(iglob)
1 0.000 0.000 0.002 0.002 utils.py:1(<module>)
29 0.000 0.000 0.001 0.000 pkg_resources.py:1956(require)
1 0.000 0.000 0.000 0.000 tree.py:30(Tree)
152 0.000 0.000 0.000 0.000 pkg_resources.py:1532(__init__)
89 0.000 0.000 0.006 0.000 data.py:958(makeData)
49 0.000 0.000 0.000 0.000 {_sre.compile}
5/4 0.000 0.000 0.028 0.007 pkg_resources.py:1758(declare_namespace)
76 0.000 0.000 0.000 0.000 sre_parse.py:89(closegroup)
171 0.000 0.000 0.000 0.000 {imp.release_lock}
24 0.000 0.000 0.002 0.000 core.py:5675(getdoc)
30 0.000 0.000 0.001 0.000 pkg_resources.py:2155(requires)
75 0.000 0.000 0.000 0.000 _inspect.py:150(strseq)
38 0.000 0.000 0.003 0.000 core.py:128(get_object_signature)
25 0.000 0.000 0.000 0.000 core.py:829(__init__)
171 0.000 0.000 0.000 0.000 {imp.acquire_lock}
38 0.000 0.000 0.001 0.000 _inspect.py:118(getargspec)
1 0.000 0.000 0.000 0.000 _iotools.py:1(<module>)
20 0.000 0.000 0.081 0.004 pkg_resources.py:1946(load)
1 0.000 0.000 0.053 0.053 egg_info.py:331(add_defaults)
20 0.000 0.000 0.018 0.001 data.py:380(__abs__)
10 0.000 0.000 0.008 0.001 data.py:430(__float__)
268 0.000 0.000 0.000 0.000 sre_compile.py:24(_identityfunction)
1 0.000 0.000 0.000 0.000 __init__.py:10(<module>)
17 0.000 0.000 0.000 0.000 sre_parse.py:222(isname)
1 0.000 0.000 0.336 0.336 __init__.py:63(test_all)
50 0.000 0.000 0.001 0.000 sre_parse.py:184(__init__)
1 0.000 0.000 0.000 0.000 install_scripts.py:17(install_scripts)
1 0.000 0.000 0.004 0.004 dist.py:128(__init__)
1 0.000 0.000 0.000 0.000 records.py:36(<module>)
13 0.000 0.000 0.000 0.000 {posix.remove}
1 0.000 0.000 0.000 0.000 install_lib.py:1(<module>)
1 0.000 0.000 0.000 0.000 _endian.py:4(<module>)
14 0.000 0.000 0.001 0.000 unittest.py:663(writeln)
1 0.000 0.000 0.000 0.000 numerictypes.py:415(_set_array_types)
1 0.000 0.000 0.003 0.003 build_ext.py:5(<module>)
211 0.000 0.000 0.000 0.000 posixpath.py:42(normcase)
1 0.000 0.000 0.000 0.000 core.py:736(_DomainCheckInterval)
30 0.000 0.000 0.000 0.000 numerictypes.py:407(_add_array_type)
116 0.000 0.000 0.000 0.000 {method 'extend' of 'list' objects}
1 0.000 0.000 0.014 0.014 _internal.py:4(<module>)
138 0.000 0.000 0.000 0.000 pkg_resources.py:2585(cls)
11 0.000 0.000 0.078 0.007 dist.py:857(get_command_obj)
1 0.000 0.000 0.000 0.000 bdist_egg.py:3(<module>)
30 0.000 0.000 0.002 0.000 pkg_resources.py:506(resolve)
20/13 0.000 0.000 0.000 0.000 data.py:1788(__hasBadTreeReferences__)
9 0.000 0.000 0.000 0.000 tree.py:41(__init__)
18 0.000 0.000 0.000 0.000 core.py:913(__init__)
123 0.000 0.000 0.000 0.000 sre_parse.py:140(__setitem__)
15 0.000 0.000 0.001 0.000 utils.py:158(deprecate)
1 0.000 0.000 4.867 4.867 treeUnitTest.py:87(openTrees)
12 0.000 0.000 0.000 0.000 {method 'flush' of 'file' objects}
4 0.000 0.000 0.826 0.207 data.py:14(_loadLib)
5 0.000 0.000 14.204 2.841 unittest.py:263(run)
3 0.000 0.000 0.001 0.000 tree.py:471(getNode)
154 0.000 0.000 0.000 0.000 {method 'translate' of 'str' objects}
1 0.000 0.000 0.000 0.000 numerictypes.py:258(_add_types)
1 0.000 0.000 0.000 0.000 {method 'readlines' of 'file' objects}
8 0.000 0.000 0.001 0.000 fnmatch.py:81(translate)
66 0.000 0.000 0.000 0.000 numerictypes.py:113(english_lower)
5 0.000 0.000 0.001 0.000 unittest.py:689(startTest)
53 0.000 0.000 0.000 0.000 string.py:482(translate)
1 0.000 0.000 0.000 0.000 defchararray.py:17(<module>)
7 0.000 0.000 0.000 0.000 util.py:16(get_platform)
1 0.000 0.000 0.000 0.000 spawn.py:7(<module>)
18 0.000 0.000 0.000 0.000 numerictypes.py:202(_evalname)
1 0.000 0.000 0.000 0.000 ascii.py:8(<module>)
7 0.000 0.000 0.007 0.001 glob.py:10(glob)
169 0.000 0.000 0.000 0.000 {built-in method start}
70 0.000 0.000 0.000 0.000 {method 'keys' of 'dict' objects}
14 0.000 0.000 0.000 0.000 __init__.py:147(_check_size)
43 0.000 0.000 0.072 0.002 re.py:188(compile)
1 0.000 0.000 0.164 0.164 egg_info.py:167(run)
1 0.000 0.000 0.000 0.000 filelist.py:76(remove_duplicates)
49 0.000 0.000 0.000 0.000 sre_parse.py:73(__init__)
113 0.000 0.000 0.000 0.000 {setattr}
2 0.000 0.000 0.000 0.000 machar.py:4(<module>)
22 0.000 0.000 0.000 0.000 sre_parse.py:231(_class_escape)
3 0.000 0.000 0.000 0.000 __init__.py:480(PYFUNCTYPE)
43 0.000 0.000 0.000 0.000 unittest.py:660(__getattr__)
1 0.000 0.000 16.124 16.124 test.py:83(with_project_on_sys_path)
2 0.000 0.000 0.000 0.000 __init__.py:78(CFUNCTYPE)
87 0.000 0.000 0.000 0.000 pkg_resources.py:2562(_override_setuptools)
125 0.000 0.000 0.000 0.000 glob.py:60(<lambda>)
1 0.000 0.000 0.000 0.000 _import_tools.py:1(<module>)
1 0.000 0.000 0.000 0.000 core.py:2572(MaskedArray)
1 0.000 0.000 0.038 0.038 dist.py:207(__init__)
1 0.000 0.000 0.000 0.000 numerictypes.py:655(_construct_lookups)
1 0.000 0.000 0.000 0.000 egg_info.py:3(<module>)
1 0.000 0.000 0.000 0.000 install_scripts.py:4(<module>)
20 0.000 0.000 0.018 0.001 {abs}
1 0.000 0.000 0.000 0.000 ccompiler.py:4(<module>)
6 0.000 0.000 0.000 0.000 cmd.py:52(__init__)
1 0.000 0.000 0.000 0.000 data.py:141(_Descriptor_a)
6 0.000 0.000 0.005 0.001 glob.py:49(glob1)
1 0.000 0.000 0.003 0.003 dist.py:249(finalize_options)
1 0.000 0.000 0.000 0.000 bdist.py:4(<module>)
1 0.000 0.000 0.000 0.000 shutil.py:5(<module>)
1 0.000 0.000 0.018 0.018 sdist.py:157(add_defaults)
1 0.000 0.000 0.000 0.000 {imp.load_module}
2 0.000 0.000 0.054 0.027 tree.py:979(__setNode)
1 0.000 0.000 0.000 0.000 arrayterator.py:9(<module>)
4 0.000 0.000 0.001 0.000 tree.py:455(getDefault)
1 0.000 0.000 0.000 0.000 build_py.py:3(<module>)
12 0.000 0.000 0.000 0.000 ctypeslib.py:295(prep_simple)
24 0.000 0.000 0.000 0.000 {method 'update' of 'dict' objects}
30 0.000 0.000 0.001 0.000 pkg_resources.py:2143(_dep_map)
1 0.000 0.000 13.330 13.330 treeUnitTest.py:236(runTest)
2 0.000 0.000 0.000 0.000 tree.py:73(close)
88 0.000 0.000 0.000 0.000 {hash}
17 0.000 0.000 0.000 0.000 dist.py:1116(_write_field)
1 0.000 0.000 14.205 14.205 unittest.py:748(run)
2 0.000 0.000 0.001 0.001 tree.py:247(__str__)
7 0.000 0.000 0.084 0.012 dist.py:354(get_command_class)
43 0.000 0.000 0.000 0.000 _inspect.py:161(<lambda>)
8 0.000 0.000 0.000 0.000 log.py:21(_log)
1 0.000 0.000 0.000 0.000 numpytest.py:1(<module>)
1 0.000 0.000 0.001 0.001 dist.py:1083(write_pkg_file)
1 0.000 0.000 0.000 0.000 data.py:258(Data)
3 0.000 0.000 0.000 0.000 {function seed at 0x8f06994}
77 0.000 0.000 0.000 0.000 {method 'remove' of 'list' objects}
32 0.000 0.000 0.000 0.000 fancy_getopt.py:114(get_attr_name)
67 0.000 0.000 0.000 0.000 {method 'items' of 'dict' objects}
4 0.000 0.000 0.780 0.195 re.py:139(search)
3 0.000 0.000 0.000 0.000 {posix.urandom}
38 0.000 0.000 0.000 0.000 _inspect.py:13(ismethod)
93 0.000 0.000 0.000 0.000 {iter}
1 0.000 0.000 0.065 0.065 sysconfig.py:371(_init_posix)
1 0.000 0.000 0.000 0.000 numerictypes.py:315(_add_integer_aliases)
24 0.000 0.000 0.003 0.000 core.py:5671(__init__)
25 0.000 0.000 0.000 0.000 data.py:881(setUnits)
1 0.000 0.000 0.000 0.000 <string>:2(<module>)
87 0.000 0.000 0.000 0.000 sre_parse.py:216(isident)
5 0.000 0.000 0.001 0.000 build_py.py:185(check_package)
18 0.000 0.000 0.000 0.000 cmd.py:104(__getattr__)
9 0.000 0.000 0.000 0.000 filelist.py:49(debug_print)
85 0.000 0.000 0.000 0.000 data.py:969(__init__)
1 0.000 0.000 0.001 0.001 __init__.py:35(cleanup)
6 0.000 0.000 0.007 0.001 data.py:271(value_of)
4 0.000 0.000 0.817 0.204 util.py:208(find_library)
38 0.000 0.000 0.000 0.000 _inspect.py:24(isfunction)
4 0.000 0.000 0.000 0.000 tree.py:57(__init__)
1 0.000 0.000 0.000 0.000 ufunclike.py:4(<module>)
7 0.000 0.000 0.032 0.005 compile.py:10(_mimport)
1 0.000 0.000 0.000 0.000 getopt.py:16(<module>)
1 0.000 0.000 0.154 0.154 egg_info.py:303(run)
1 0.000 0.000 0.000 0.000 defchararray.py:1681(chararray)
1 0.000 0.000 0.000 0.000 memmap.py:1(<module>)
5 0.000 0.000 0.000 0.000 build_py.py:194(check_package)
29 0.000 0.000 0.000 0.000 _inspect.py:37(iscode)
4 0.000 0.000 0.009 0.002 dataUnitTest.py:407(doUnaryArray)
11 0.000 0.000 0.000 0.000 {posix.uname}
55 0.000 0.000 0.000 0.000 {_sre.getlower}
1 0.000 0.000 0.013 0.013 build_py.py:329(get_source_files)
12 0.000 0.000 0.000 0.000 random.py:259(choice)
1 0.000 0.000 0.006 0.006 sysconfig.py:10(<module>)
3 0.000 0.000 0.000 0.000 random.py:99(seed)
1 0.000 0.000 0.001 0.001 tempfile.py:168(_get_default_tempdir)
1 0.000 0.000 0.000 0.000 numerictypes.py:392(_construct_char_code_lookup)
2 0.000 0.000 0.003 0.002 egg_info.py:144(write_file)
1 0.000 0.000 1.473 1.473 unittest.py:561(loadTestsFromName)
21 0.000 0.000 0.000 0.000 dist.py:1124(_encode_field)
1 0.000 0.000 0.000 0.000 scimath.py:16(<module>)
1 0.000 0.000 0.000 0.000 nosetester.py:6(<module>)
1 0.000 0.000 0.000 0.000 fromnumeric.py:2(<module>)
1 0.000 0.000 0.000 0.000 data.py:199(_Descriptor_r)
1 0.000 0.000 0.000 0.000 format.py:136(<module>)
1 0.000 0.000 16.171 16.171 core.py:62(setup)
1 0.000 0.000 0.000 0.000 _inspect.py:6(<module>)
20 0.000 0.000 0.000 0.000 data.py:1194(_scalar_decorator)
12 0.000 0.000 0.000 0.000 pkg_resources.py:1869(_parse_version_parts)
1 0.000 0.000 0.000 0.000 {posix.open}
34 0.000 0.000 0.000 0.000 numerictypes.py:140(english_upper)
5 0.000 0.000 0.000 0.000 build_py.py:151(get_package_dir)
3/1 0.000 0.000 16.125 16.125 dist.py:980(run_command)
8 0.000 0.000 0.000 0.000 {built-in method finditer}
2 0.000 0.000 0.000 0.000 tempfile.py:127(next)
7 0.000 0.000 0.000 0.000 tree.py:1049(addTag)
4 0.000 0.000 0.000 0.000 tree.py:611(setActiveTree)
1 0.000 0.000 0.000 0.000 <string>:6(Chebyshev)
1 0.000 0.000 0.000 0.000 {posix.mkdir}
1 0.000 0.000 0.000 0.000 _internal.py:238(_getintp_ctype)
2 0.000 0.000 0.000 0.000 defmatrix.py:183(matrix)
2 0.000 0.000 0.000 0.000 shape_base.py:1(<module>)
6 0.000 0.000 0.000 0.000 tree.py:203(__setattr__)
3 0.000 0.000 0.000 0.000 pkg_resources.py:1881(parse_version)
1 0.000 0.000 0.000 0.000 helper.py:3(<module>)
19 0.000 0.000 0.000 0.000 data.py:1630(_array_decorator)
1 0.000 0.000 0.000 0.000 __future__.py:48(<module>)
1 0.000 0.000 0.006 0.006 dist.py:496(_parse_command_opts)
6 0.000 0.000 0.000 0.000 core.py:1053(__init__)
8 0.000 0.000 0.000 0.000 core.py:6874(getdoc)
1 0.000 0.000 15.679 15.679 test.py:140(run_tests)
6 0.000 0.000 0.000 0.000 unittest.py:683(getDescription)
1 0.000 0.000 0.000 0.000 extension.py:4(<module>)
1 0.000 0.000 0.001 0.001 __init__.py:71(search_function)
1 0.000 0.000 0.000 0.000 data.py:1275(Complex64)
3 0.000 0.000 0.000 0.000 posixpath.py:377(_resolve_link)
4/1 0.000 0.000 14.204 14.204 unittest.py:455(run)
1 0.000 0.000 0.001 0.001 linecache.py:68(updatecache)
4 0.000 0.000 0.000 0.000 unittest.py:696(addSuccess)
1 0.000 0.000 0.000 0.000 _iotools.py:421(StringConverter)
3 0.000 0.000 0.000 0.000 tree.py:1863(_dataFromDescriptor)
1 0.000 0.000 0.013 0.013 build_py.py:308(find_all_modules)
17 0.000 0.000 0.000 0.000 data.py:895(setError)
19 0.000 0.000 0.000 0.000 glob.py:77(has_magic)
2 0.000 0.000 0.000 0.000 tempfile.py:119(__init__)
1 0.000 0.000 0.000 0.000 stride_tricks.py:7(<module>)
1 0.000 0.000 0.000 0.000 build_ext.py:131(finalize_options)
3 0.000 0.000 0.001 0.000 pkg_resources.py:2125(version)
1 0.000 0.000 0.002 0.002 egg_info.py:406(write_toplevel_names)
1 0.000 0.000 0.000 0.000 data.py:1295(Complex128)
1 0.000 0.000 0.000 0.000 dir_util.py:3(<module>)
6 0.000 0.000 0.066 0.011 builtin_set.py:10(_mimport)
1 0.000 0.000 0.000 0.000 text_file.py:5(<module>)
22 0.000 0.000 0.000 0.000 {_struct.calcsize}
10/8 0.000 0.000 0.003 0.000 cmd.py:115(ensure_finalized)
1 0.000 0.000 0.000 0.000 polytemplate.py:3(<module>)
5 0.000 0.000 0.000 0.000 build_py.py:221(get_package_dir)
4 0.000 0.000 1.133 0.283 __init__.py:17(_mimport)
5 0.000 0.000 0.003 0.001 cmd.py:312(get_finalized_command)
6 0.000 0.000 0.001 0.000 extras.py:244(getdoc)
21 0.000 0.000 0.000 0.000 fancy_getopt.py:472(translate_longopt)
1 0.000 0.000 0.001 0.001 traceback.py:78(extract_tb)
2 0.000 0.000 0.007 0.003 tree.py:1006(__str__)
5 0.000 0.000 0.000 0.000 __init__.py:66(__init__)
4 0.000 0.000 0.006 0.002 filelist.py:329(translate_pattern)
4 0.000 0.000 0.000 0.000 unittest.py:449(addTests)
8 0.000 0.000 0.000 0.000 unittest.py:439(addTest)
1 0.000 0.000 0.001 0.001 egg_info.py:83(finalize_options)
46 0.000 0.000 0.000 0.000 {_ctypes.sizeof}
1 0.000 0.000 0.000 0.000 pkg_resources.py:2639(_initialize)
18 0.000 0.000 0.000 0.000 {numpy.core.multiarray.empty}
21 0.000 0.000 0.000 0.000 string.py:511(replace)
2 0.000 0.000 0.002 0.001 cmd.py:287(set_undefined_options)
2 0.000 0.000 0.966 0.483 treeUnitTest.py:12(_mimport)
7 0.000 0.000 0.002 0.000 filelist.py:307(glob_to_re)
21 0.000 0.000 0.000 0.000 dist.py:119(<lambda>)
1 0.000 0.000 0.000 0.000 install_lib.py:5(<module>)
1 0.000 0.000 0.000 0.000 build.py:3(<module>)
1 0.000 0.000 0.000 0.000 core.py:2753(_update_from)
1 0.000 0.000 0.004 0.004 version.py:27(<module>)
8 0.000 0.000 0.001 0.000 core.py:6870(__init__)
3 0.000 0.000 0.000 0.000 nosetester.py:82(_docmethod)
1 0.000 0.000 0.000 0.000 sre_parse.py:697(parse_template)
38 0.000 0.000 0.000 0.000 {max}
2 0.000 0.000 0.000 0.000 threading.py:181(__init__)
1 0.000 0.000 0.000 0.000 builtin.py:23(Builtin)
3 0.000 0.000 0.001 0.000 egg_info.py:275(append)
6 0.000 0.000 0.000 0.000 unittest.py:96(_strclass)
1 0.000 0.000 0.001 0.001 dist.py:319(find_config_files)
1 0.000 0.000 0.008 0.008 dist.py:410(parse_command_line)
1 0.000 0.000 0.000 0.000 core.py:2624(__new__)
10 0.000 0.000 0.000 0.000 core.py:2381(getdoc)
4 0.000 0.000 0.000 0.000 os.py:510(getenv)
1 0.000 0.000 0.000 0.000 tdilextab.py:2(<module>)
10 0.000 0.000 0.000 0.000 core.py:2375(__init__)
2 0.000 0.000 0.045 0.023 tree.py:747(_tcl)
15 0.000 0.000 0.000 0.000 utils.py:109(__init__)
5 0.000 0.000 14.204 2.841 unittest.py:298(__call__)
19 0.000 0.000 0.000 0.000 {sys._getframe}
1 0.000 0.000 0.000 0.000 threading.py:414(Thread)
5 0.000 0.000 0.000 0.000 __init__.py:347(_FuncPtr)
1 0.000 0.000 0.000 0.000 numerictypes.py:356(_set_up_aliases)
5 0.000 0.000 0.002 0.000 egg_info.py:124(write_or_delete_file)
6 0.000 0.000 0.000 0.000 UserDict.py:57(get)
11 0.000 0.000 0.000 0.000 numerictypes.py:167(english_capitalize)
1 0.000 0.000 0.000 0.000 archive_util.py:4(<module>)
5 0.000 0.000 0.000 0.000 unittest.py:204(__init__)
25 0.000 0.000 0.000 0.000 data.py:293(_setUnits)
2 0.000 0.000 0.000 0.000 fancy_getopt.py:90(_build_index)
1 0.000 0.000 0.000 0.000 builtin_set.py:278(dNA)
3 0.000 0.000 0.000 0.000 {posix.readlink}
1 0.000 0.000 0.000 0.000 twodim_base.py:3(<module>)
1 0.000 0.000 0.000 0.000 builtins_to_be_completed.py:713(DEALLOCATE)
1 0.000 0.000 0.000 0.000 ccompiler.py:21(CCompiler)
1 0.000 0.000 0.001 0.001 dist.py:363(parse_config_files)
3 0.000 0.000 0.002 0.001 egg_info.py:419(write_arg)
2 0.000 0.000 0.000 0.000 dataUnitTest.py:9(_mimport)
1 0.000 0.000 0.000 0.000 install.py:108(install)
1 0.000 0.000 0.000 0.000 data.py:1433(Array)
1 0.000 0.000 0.000 0.000 <string>:6(Polynomial)
1 0.000 0.000 0.000 0.000 pkg_resources.py:2046(Distribution)
2 0.000 0.000 0.000 0.000 builtin.py:10(_mimport)
6 0.000 0.000 0.000 0.000 unittest.py:256(__str__)
16 0.000 0.000 0.000 0.000 {method 'insert' of 'list' objects}
1 0.000 0.000 0.000 0.000 bdist_egg.py:396(write_safety_flag)
1 0.000 0.000 0.001 0.001 unittest.py:149(_exc_info_to_string)
1 0.000 0.000 0.000 0.000 {posix.unlink}
1 0.000 0.000 0.001 0.001 tempfile.py:296(mkdtemp)
1 0.000 0.000 0.000 0.000 tempfile.py:140(_candidate_tempdir_list)
1 0.000 0.000 0.000 0.000 traceback.py:27(format_list)
1 0.000 0.000 0.000 0.000 data.py:37(getStatusMsg)
1 0.000 0.000 0.000 0.000 treeUnitTest.py:34(setUp)
1 0.000 0.000 0.000 0.000 builtin_set.py:108(dAMU)
1 0.000 0.000 14.205 14.205 unittest.py:850(runTests)
1 0.000 0.000 0.000 0.000 tree.py:641(setDefault)
1 0.000 0.000 0.000 0.000 {method 'copy' of 'dict' objects}
1 0.000 0.000 0.006 0.006 egg_info.py:343(prune_file_list)
1 0.000 0.000 0.001 0.001 warnings.py:45(filterwarnings)
1 0.000 0.000 0.000 0.000 {math.exp}
1 0.000 0.000 0.000 0.000 builtin_set.py:234(dK)
1 0.000 0.000 0.000 0.000 build.py:73(finalize_options)
2 0.000 0.000 0.001 0.001 fancy_getopt.py:235(getopt)
3 0.000 0.000 0.000 0.000 sysconfig.py:61(get_python_inc)
3 0.000 0.000 0.000 0.000 index_tricks.py:288(__init__)
1 0.000 0.000 0.000 0.000 build.py:20(build)
3 0.000 0.000 0.000 0.000 getopt.py:52(getopt)
7 0.000 0.000 0.000 0.000 re.py:271(_subx)
10 0.000 0.000 0.000 0.000 sre_compile.py:57(fixup)
7 0.000 0.000 0.000 0.000 re.py:251(_compile_repl)
15 0.000 0.000 0.000 0.000 UserDict.py:69(__contains__)
1 0.000 0.000 0.000 0.000 random.py:71(Random)
1 0.000 0.000 0.000 0.000 {posix.rmdir}
1 0.000 0.000 0.000 0.000 data.py:1760(Compound)
2 0.000 0.000 0.000 0.000 pkg_resources.py:204(get_build_platform)
1 0.000 0.000 0.000 0.000 data.py:122(_Descriptor)
1 0.000 0.000 1.473 1.473 unittest.py:608(loadTestsFromNames)
1 0.000 0.000 0.074 0.074 dist.py:924(reinitialize_command)
7 0.000 0.000 0.000 0.000 log.py:37(info)
1 0.000 0.000 0.000 0.000 data.py:1043(Scalar)
1 0.000 0.000 0.000 0.000 traceback.py:1(<module>)
1 0.000 0.000 0.002 0.002 treeUnitTest.py:102(setDefault)
1 0.000 0.000 0.000 0.000 financial.py:8(<module>)
1 0.000 0.000 0.000 0.000 dataUnitTest.py:524(suite)
1 0.000 0.000 0.001 0.001 unittest.py:712(addFailure)
15 0.000 0.000 0.000 0.000 utils.py:94(_set_function_name)
1 0.000 0.000 0.000 0.000 _internal.py:266(_ctypes)
1 0.000 0.000 0.002 0.002 build_py.py:47(finalize_options)
2 0.000 0.000 0.000 0.000 unittest.py:726(printErrorList)
1 0.000 0.000 1.473 1.473 unittest.py:823(parseArgs)
1 0.000 0.000 0.000 0.000 text_file.py:79(__init__)
1 0.000 0.000 0.000 0.000 dist.py:669(handle_display_options)
1 0.000 0.000 0.000 0.000 threading.py:426(__init__)
1 0.000 0.000 0.000 0.000 log.py:1(<module>)
1 0.000 0.000 0.000 0.000 dist.py:36(Distribution)
1 0.000 0.000 0.000 0.000 tempfile.py:483(SpooledTemporaryFile)
1 0.000 0.000 0.002 0.002 pkg_resources.py:2506(__contains__)
1 0.000 0.000 0.000 0.000 dist.py:194(patch_missing_pkg_info)
6 0.000 0.000 0.001 0.000 extras.py:240(__init__)
1 0.000 0.000 0.000 0.000 builtin_set.py:184(dFARADAY)
3 0.000 0.000 0.000 0.000 {built-in method split}
4/1 0.000 0.000 14.204 14.204 unittest.py:462(__call__)
17 0.000 0.000 0.000 0.000 data.py:323(_setError)
1 0.000 0.000 0.000 0.000 builtin_set.py:85(d2PI)
5 0.000 0.000 0.001 0.000 re.py:134(match)
1 0.000 0.000 0.000 0.000 builtin_set.py:299(dQE)
1 0.000 0.000 0.000 0.000 builtin_set.py:320(dRYDBERG)
1 0.000 0.000 0.002 0.002 pkg_resources.py:2115(parsed_version)
7 0.000 0.000 0.000 0.000 string.py:220(lower)
1 0.000 0.000 0.000 0.000 polynomial.py:890(poly1d)
2 0.000 0.000 0.004 0.002 string.py:148(substitute)
1 0.000 0.000 0.000 0.000 builtin_set.py:94(dA0)
1 0.000 0.000 0.003 0.003 ConfigParser.py:217(RawConfigParser)
1 0.000 0.000 0.000 0.000 bdist_egg.py:42(bdist_egg)
12 0.000 0.000 0.000 0.000 util.py:185(convert_path)
1 0.000 0.000 0.007 0.007 dist.py:541(_parse_command_opts)
1 0.000 0.000 15.678 15.678 unittest.py:799(__init__)
1 0.000 0.000 0.000 0.000 build_ext.py:37(build_ext)
2 0.000 0.000 0.000 0.000 tree.py:67(__del__)
1 0.000 0.000 16.124 16.124 test.py:125(run)
1 0.000 0.000 0.000 0.000 unittest.py:176(TestCase)
1 0.000 0.000 0.001 0.001 tempfile.py:247(gettempdir)
2 0.000 0.000 0.000 0.000 pkg_resources.py:1799(file_ns_handler)
1 0.000 0.000 0.000 0.000 dist.py:1037(DistributionMetadata)
4 0.000 0.000 0.000 0.000 core.py:111(doc_note)
1 0.000 0.000 0.000 0.000 dist.py:803(get_command_packages)
3 0.000 0.000 0.000 0.000 dist.py:14(_get_unpatched)
1 0.000 0.000 0.000 0.000 file_util.py:4(<module>)
1 0.000 0.000 0.000 0.000 cmd.py:17(Command)
1 0.000 0.000 0.000 0.000 _iotools.py:208(NameValidator)
1 0.000 0.000 0.006 0.006 treeUnitTest.py:97(getNode)
5 0.000 0.000 0.000 0.000 dist.py:1119(_write_list)
9 0.000 0.000 0.000 0.000 string.py:308(join)
1 0.000 0.000 0.000 0.000 posixpath.py:248(expanduser)
1 0.000 0.000 0.000 0.000 keyword.py:11(<module>)
1 0.000 0.000 0.154 0.154 egg_info.py:249(find_sources)
1 0.000 0.000 0.000 0.000 ascii.py:41(getregentry)
1 0.000 0.000 0.074 0.074 __init__.py:72(reinitialize_command)
3 0.000 0.000 0.000 0.000 random.py:90(__init__)
1 0.000 0.000 0.002 0.002 dist.py:1072(write_pkg_info)
4 0.000 0.000 0.065 0.016 sysconfig.py:512(get_config_vars)
1 0.000 0.000 0.000 0.000 util.py:252(check_environ)
1 0.000 0.000 0.003 0.003 data.py:612(compile)
1 0.000 0.000 0.000 0.000 builtin_set.py:256(dMP)
1 0.000 0.000 0.002 0.002 egg_info.py:352(write_file)
2 0.000 0.000 0.001 0.000 linecache.py:33(getlines)
1 0.000 0.000 0.000 0.000 {posix.fdopen}
7 0.000 0.000 0.000 0.000 string.py:281(split)
2 0.000 0.000 0.000 0.000 getlimits.py:176(iinfo)
1 0.000 0.000 0.000 0.000 sysconfig.py:45(_python_build)
1 0.000 0.000 0.000 0.000 builtin_set.py:101(dALPHA)
4 0.000 0.000 0.065 0.016 sysconfig.py:605(get_config_var)
1 0.000 0.000 0.000 0.000 getopt.py:145(do_longs)
1 0.000 0.000 0.000 0.000 tree.py:493(getNodeWildIter)
1 0.000 0.000 0.000 0.000 dist.py:816(get_command_class)
1 0.000 0.000 0.000 0.000 numeric.py:1998(seterr)
1 0.000 0.000 0.000 0.000 builtin_set.py:271(dN0)
1 0.000 0.000 0.000 0.000 tree.py:36(_DBI_ITM_INT)
1 0.000 0.000 0.000 0.000 unittest.py:720(printErrors)
1 0.000 0.000 0.000 0.000 builtin_set.py:161(dEV)
1 0.000 0.000 0.000 0.000 builtin_set.py:191(dG)
3 0.000 0.000 0.000 0.000 dataUnitTest.py:34(setUp)
1 0.000 0.000 0.000 0.000 threading.py:744(__init__)
1 0.000 0.000 0.000 0.000 builtin_set.py:220(dHBAR)
1 0.000 0.000 0.000 0.000 builtin_set.py:241(dME)
2 0.000 0.000 0.000 0.000 {numpy.core.umath.seterrobj}
1 0.000 0.000 0.000 0.000 random.py:643(WichmannHill)
1 0.000 0.000 0.001 0.001 dist.py:809(check_packages)
1 0.000 0.000 0.000 0.000 builtin_set.py:306(dRE)
1 0.000 0.000 0.000 0.000 builtin_set.py:198(dGAS)
1 0.000 0.000 0.002 0.002 cmd.py:357(execute)
1 0.000 0.000 0.000 0.000 tree.py:1911(TreeNodeArray)
12 0.000 0.000 0.000 0.000 {method 'random' of '_random.Random' objects}
1 0.000 0.000 0.002 0.002 pkg_resources.py:638(require)
5 0.000 0.000 0.000 0.000 threading.py:59(__init__)
1 0.000 0.000 0.000 0.000 dep_util.py:5(<module>)
1 0.000 0.000 0.000 0.000 traceback.py:148(format_exception_only)
1 0.000 0.000 0.000 0.000 __init__.py:49(normalize_encoding)
1 0.000 0.000 0.002 0.002 egg_info.py:316(write_manifest)
1 0.000 0.000 0.000 0.000 posixpath.py:139(lexists)
1 0.000 0.000 0.008 0.008 dist.py:230(parse_command_line)
1 0.000 0.000 0.000 0.000 builtin_set.py:213(dH)
2 0.000 0.000 0.731 0.366 tree.py:7(_mimport)
1 0.000 0.000 0.000 0.000 debug.py:1(<module>)
5 0.000 0.000 0.000 0.000 unittest.py:161(_is_relevant_tb_level)
3 0.000 0.000 0.000 0.000 fancy_getopt.py:121(_check_alias_dict)
1 0.000 0.000 0.002 0.002 util.py:392(execute)
6 0.000 0.000 0.000 0.000 sysconfig.py:53(get_python_version)
1 0.000 0.000 0.000 0.000 fnmatch.py:11(<module>)
1 0.000 0.000 0.000 0.000 threading.py:101(__init__)
2 0.000 0.000 0.000 0.000 build_py.py:88(__getattr__)
1 0.000 0.000 0.000 0.000 sdist.py:36(sdist)
1 0.000 0.000 0.000 0.000 bdist.py:29(bdist)
1 0.000 0.000 0.000 0.000 pkg_resources.py:843(ResourceManager)
1 0.000 0.000 0.000 0.000 tree.py:2089(Device)
8 0.000 0.000 0.000 0.000 {thread.allocate_lock}
1 0.000 0.000 0.000 0.000 install.py:5(install)
4 0.000 0.000 0.000 0.000 unittest.py:410(__init__)
1 0.000 0.000 0.000 0.000 codecs.py:77(__new__)
1 0.000 0.000 0.000 0.000 builtin_set.py:809(AIMAG)
2 0.000 0.000 0.000 0.000 linecache.py:43(checkcache)
1 0.000 0.000 0.000 0.000 pkg_resources.py:1130(NullProvider)
1 0.000 0.000 0.000 0.000 {posix.putenv}
1 0.000 0.000 0.000 0.000 __init__.py:32(cleanup)
1 0.000 0.000 0.000 0.000 cmd.py:196(debug_print)
1 0.000 0.000 0.000 0.000 dist.py:125(Distribution)
2 0.000 0.000 0.231 0.116 data.py:8(_mimport)
2 0.000 0.000 0.002 0.001 data.py:521(__nonzero__)
4 0.000 0.000 0.000 0.000 {method 'rjust' of 'str' objects}
1 0.000 0.000 0.000 0.000 filelist.py:18(FileList)
1 0.000 0.000 0.000 0.000 tempfile.py:205(_get_candidate_names)
1 0.000 0.000 0.001 0.001 traceback.py:131(format_exception)
1 0.000 0.000 0.000 0.000 build_py.py:51(build_py)
1 0.000 0.000 0.000 0.000 builtin_set.py:357(dTORR)
1 0.000 0.000 0.000 0.000 build_ext.py:103(finalize_options)
2 0.000 0.000 0.000 0.000 dist.py:84(assert_bool)
1 0.000 0.000 0.000 0.000 builtin_set.py:205(dGN)
5 0.000 0.000 0.000 0.000 unittest.py:118(startTest)
1 0.000 0.000 0.000 0.000 cmd.py:361(mkpath)
1 0.000 0.000 0.000 0.000 tree.py:518(getNodeWild)
2 0.000 0.000 0.000 0.000 threading.py:176(Condition)
1 0.000 0.000 0.000 0.000 builtin_set.py:153(dEPSILON0)
1 0.000 0.000 0.000 0.000 builtin_set.py:350(dT0)
1 0.000 0.000 0.000 0.000 build_ext.py:43(run)
1 0.000 0.000 0.000 0.000 build_ext.py:97(initialize_options)
2 0.000 0.000 0.086 0.043 __init__.py:9(_mimport)
1 0.000 0.000 0.000 0.000 build_py.py:19(build_py)
1 0.000 0.000 0.000 0.000 builtin_set.py:122(dC)
1 0.000 0.000 0.000 0.000 __config__.py:3(<module>)
1 0.000 0.000 0.000 0.000 core.py:2777(__array_finalize__)
1 0.000 0.000 0.000 0.000 data.py:2140(_Signal)
1 0.000 0.000 1.473 1.473 unittest.py:846(createTests)
1 0.000 0.000 0.000 0.000 egg_info.py:399(write_requirements)
1 0.000 0.000 0.000 0.000 builtin_set.py:146(dDEGREE)
1 0.000 0.000 0.000 0.000 builtin_set.py:115(dATM)
1 0.000 0.000 0.000 0.000 ConfigParser.py:106(Error)
7 0.000 0.000 0.000 0.000 __future__.py:75(__init__)
1 0.000 0.000 0.000 0.000 builtin_set.py:129(dCAL)
1 0.000 0.000 0.000 0.000 builtin_set.py:285(dP0)
1 0.000 0.000 0.000 0.000 nosetester.py:109(NoseTester)
1 0.000 0.000 0.000 0.000 dist.py:664(Feature)
3 0.000 0.000 0.002 0.001 egg_info.py:416(overwrite_arg)
1 0.000 0.000 0.000 0.000 builtin_set.py:227(dI)
1 0.000 0.000 16.125 16.125 dist.py:969(run_commands)
2 0.000 0.000 0.000 0.000 dist.py:43(assert_string_list)
1 0.000 0.000 0.003 0.003 version.py:63(StrictVersion)
1 0.000 0.000 0.000 0.000 records.py:282(recarray)
1 0.000 0.000 0.000 0.000 numeric.py:2100(geterr)
1 0.000 0.000 0.000 0.000 threading.py:376(set)
1 0.000 0.000 0.000 0.000 sysconfig.py:104(get_python_lib)
1 0.000 0.000 0.000 0.000 unittest.py:676(__init__)
1 0.000 0.000 0.000 0.000 tree.py:51(_DBI_ITM_CHAR)
1 0.000 0.000 0.000 0.000 pkg_resources.py:679(Environment)
3 0.000 0.000 0.000 0.000 {binascii.hexlify}
1 0.000 0.000 0.000 0.000 util.py:570(rfc822_escape)
1 0.000 0.000 0.000 0.000 builtin_set.py:263(dMU0)
4 0.000 0.000 0.000 0.000 sre_parse.py:704(literal)
1 0.000 0.000 0.000 0.000 build_ext.py:278(run)
1 0.000 0.000 0.000 0.000 index_tricks.py:397(RClass)
1 0.000 0.000 0.001 0.001 traceback.py:74(format_tb)
2 0.000 0.000 0.001 0.000 linecache.py:13(getline)
1 0.000 0.000 0.000 0.000 treeUnitTest.py:30(treeTests)
1 0.000 0.000 0.002 0.002 build_py.py:60(finalize_options)
1 0.000 0.000 0.000 0.000 config.py:22(PyPIRCCommand)
1 0.000 0.000 0.000 0.000 sysconfig.py:205(get_config_h_filename)
1 0.000 0.000 0.000 0.000 dist.py:110(check_package_data)
1 0.000 0.000 0.000 0.000 dir_util.py:21(mkpath)
1 0.000 0.000 0.000 0.000 cmd.py:259(_ensure_tested_string)
1 0.000 0.000 0.000 0.000 pkg_resources.py:1923(EntryPoint)
1 0.000 0.000 0.000 0.000 arrayterator.py:17(Arrayterator)
1 0.000 0.000 0.000 0.000 data.py:967(EmptyData)
12 0.000 0.000 0.000 0.000 pkg_resources.py:1676(find_nothing)
1 0.000 0.000 0.000 0.000 builtin_set.py:177(dFALSE)
1 0.000 0.000 0.086 0.086 filelist.py:46(findall)
1 0.000 0.000 0.000 0.000 builtin_set.py:313(dROPRAND)
1 0.000 0.000 0.001 0.001 unittest.py:132(addFailure)
1 0.000 0.000 0.000 0.000 build_ext.py:42(build_ext)
2 0.000 0.000 0.166 0.083 cmd.py:328(run_command)
1 0.000 0.000 0.000 0.000 data.py:230(_Descriptor_xd)
1 0.000 0.000 0.000 0.000 dist.py:1139(get_fullname)
6 0.000 0.000 0.000 0.000 dist.py:623(iter_distribution_names)
2 0.000 0.000 0.000 0.000 fancy_getopt.py:138(set_negative_aliases)
1 0.000 0.000 0.000 0.000 threading.py:96(RLock)
6 0.000 0.000 0.000 0.000 unittest.py:231(shortDescription)
1 0.000 0.000 0.000 0.000 pkgutil.py:235(load_module)
1 0.000 0.000 16.483 16.483 <string>:1(<module>)
1 0.000 0.000 0.000 0.000 builtins_to_be_completed.py:5286(RAMP)
1 0.000 0.000 0.000 0.000 builtin_set.py:397(ABS)
1 0.000 0.000 0.000 0.000 builtin_set.py:2409(EXECUTE)
1 0.000 0.000 0.000 0.000 test.py:60(finalize_options)
1 0.000 0.000 0.000 0.000 sre_parse.py:784(expand_template)
1 0.000 0.000 0.000 0.000 fancy_getopt.py:46(__init__)
1 0.000 0.000 0.000 0.000 data.py:1305(String)
1 0.000 0.000 0.000 0.000 data.py:2262(Apd)
2 0.000 0.000 0.000 0.000 unittest.py:141(wasSuccessful)
1 0.000 0.000 0.000 0.000 yacc.py:1314(Grammar)
1 0.000 0.000 0.000 0.000 threading.py:366(__init__)
1 0.000 0.000 0.000 0.000 builtin_set.py:292(dPI)
1 0.000 0.000 0.000 0.000 fancy_getopt.py:34(FancyGetopt)
1 0.000 0.000 0.000 0.000 egg_info.py:17(egg_info)
1 0.000 0.000 0.000 0.000 builtin_set.py:364(dTRUE)
1 0.000 0.000 0.000 0.000 pkg_resources.py:383(WorkingSet)
1 0.000 0.000 0.000 0.000 unittest.py:164(_count_relevant_tb_levels)
1 0.000 0.000 0.000 0.000 threading.py:272(notify)
1 0.000 0.000 0.000 0.000 data.py:1200(Int8)
5 0.000 0.000 0.000 0.000 {method 'pop' of 'list' objects}
1 0.000 0.000 0.000 0.000 data.py:2225(_Opaque)
1 0.000 0.000 0.000 0.000 builtin_set.py:1603(BUILD_CALL)
6 0.000 0.000 0.000 0.000 {method 'zfill' of 'str' objects}
1 0.000 0.000 0.000 0.000 _datasource.py:146(DataSource)
1 0.000 0.000 0.000 0.000 extras.py:1418(__init__)
3 0.000 0.000 0.000 0.000 __init__.py:481(CFunctionType)
1 0.000 0.000 0.000 0.000 ctypeslib.py:144(_ndptr)
1 0.000 0.000 0.000 0.000 egg_info.py:426(write_entries)
1 0.000 0.000 0.000 0.000 text_file.py:13(TextFile)
1 0.000 0.000 0.000 0.000 extension.py:26(Extension)
2 0.000 0.000 0.000 0.000 getlimits.py:22(finfo)
1 0.000 0.000 0.000 0.000 tempfile.py:357(_TemporaryFileWrapper)
1 0.000 0.000 0.000 0.000 pkg_resources.py:1832(_set_parent_ns)
1 0.000 0.000 0.000 0.000 getopt.py:167(long_has_args)
1 0.000 0.000 0.000 0.000 yacc.py:1939(LRGeneratedTable)
2 0.000 0.000 0.000 0.000 {sys.exc_info}
6 0.000 0.000 0.000 0.000 core.py:776(__init__)
1 0.000 0.000 0.000 0.000 builtin_set.py:1216(ASIND)
1 0.000 0.000 0.000 0.000 yacc.py:2762(ParserReflect)
1 0.000 0.000 0.000 0.000 builtin_set.py:761(ADJUSTR)
2 0.000 0.000 0.000 0.000 filelist.py:62(extend)
1 0.000 0.000 0.000 0.000 lex.py:114(Lexer)
1 0.000 0.000 0.001 0.001 ConfigParser.py:513(ConfigParser)
1 0.000 0.000 0.000 0.000 _import_tools.py:6(PackageLoader)
1 0.000 0.000 0.000 0.000 builtin_set.py:2484(METHOD_OF)
1 0.000 0.000 0.000 0.000 numeric.py:2385(_setdef)
1 0.000 0.000 0.000 0.000 unittest.py:307(_exc_info)
1 0.000 0.000 0.000 0.000 unittest.py:668(_TextTestResult)
2 0.000 0.000 0.000 0.000 dist.py:275(get_option_dict)
1 0.000 0.000 0.000 0.000 warnings.py:67(simplefilter)
1 0.000 0.000 0.000 0.000 builtin_set.py:1809(BUILD_FUNCTION)
1 0.000 0.000 0.000 0.000 index_tricks.py:490(__init__)
1 0.000 0.000 0.000 0.000 threadsUnitTest.py:7(threadJob)
1 0.000 0.000 0.000 0.000 pkg_resources.py:60(get_supported_platform)
1 0.000 0.000 0.000 0.000 builtin_set.py:2258(BYTE)
1 0.000 0.000 0.000 0.000 build_py.py:216(initialize_options)
1 0.000 0.000 0.000 0.000 unittest.py:740(__init__)
1 0.000 0.000 0.000 0.000 builtin_set.py:1529(BTEST)
1 0.000 0.000 0.000 0.000 yacc.py:191(YaccProduction)
1 0.000 0.000 0.000 0.000 unittest.py:101(TestResult)
1 0.000 0.000 0.000 0.000 build_ext.py:342(check_extensions_list)
5 0.000 0.000 0.000 0.000 core.py:2388(__get__)
1 0.000 0.000 0.000 0.000 build_ext.py:108(initialize_options)
2 0.000 0.000 0.000 0.000 machar.py:15(MachAr)
1 0.000 0.000 0.000 0.000 yacc.py:239(LRParser)
1 0.000 0.000 0.000 0.000 egg_info.py:391(warn_depends_obsolete)
1 0.000 0.000 0.000 0.000 utils.py:977(SafeEval)
2 0.000 0.000 0.000 0.000 {math.log}
3 0.000 0.000 0.000 0.000 core.py:744(__init__)
1 0.000 0.000 0.000 0.000 pkg_resources.py:2482(Requirement)
1 0.000 0.000 0.000 0.000 cmd.py:272(ensure_dirname)
1 0.000 0.000 0.000 0.000 extras.py:1488(__init__)
1 0.000 0.000 0.000 0.000 data.py:1256(Uint64)
1 0.000 0.000 0.048 0.048 tree.py:1742(setCompressOnPut)
1 0.000 0.000 0.000 0.000 sdist.py:126(sdist)
1 0.000 0.000 0.000 0.000 install_lib.py:23(install_lib)
1 0.000 0.000 0.000 0.000 threading.py:179(_Condition)
1 0.000 0.000 0.000 0.000 sysconfig.py:222(get_makefile_filename)
1 0.000 0.000 0.001 0.001 version.py:228(LooseVersion)