File: escript.supp

package info (click to toggle)
python-escript 5.6-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 144,304 kB
  • sloc: python: 592,074; cpp: 136,909; ansic: 18,675; javascript: 9,411; xml: 3,384; sh: 738; makefile: 207
file content (1086 lines) | stat: -rw-r--r-- 16,841 bytes parent folder | download | duplicates (4)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
{
   IntelMPI-ADIO_Open-Info_set1-cond
   Memcheck:Cond
   fun:PMPI_Info_set
   fun:ADIO_Open
   ...
}
{
   IntelMPI-ADIO_Open-Info_set1-addr8
   Memcheck:Addr8
   fun:__I_MPI___intel_sse2_strncmp
   fun:PMPI_Info_set
   fun:ADIO_Open
   ...
}
{
   IntelMPI-ADIO_Open-Info_set2-addr8
   Memcheck:Addr8
   fun:__I_MPI___intel_sse2_strncmp
   fun:PMPI_Info_set
   fun:ADIOI_*
   fun:ADIO_Open
   ...
}
{
   IntelMPI-ADIO_Open-Info_set2-cond
   Memcheck:Cond
   fun:PMPI_Info_set
   fun:ADIOI_*
   fun:ADIO_Open
   ...
}
{
   IntelMPI-ADIO_ResolveFileType1-addr8
   Memcheck:Addr8
   fun:__I_MPI___intel_sse2_str*
   fun:ADIO_ResolveFileType
   fun:PMPI_File_open
   ...
}
{
   IntelMPI-ADIO_ResolveFileType2-addr8
   Memcheck:Addr8
   fun:ADIO_ResolveFileType
   fun:PMPI_File_open
   ...
}
{
   IntelMPI-ADIOI_Shfp_fname-addr8
   Memcheck:Addr8
   ...
   fun:ADIOI_Shfp_fname
   fun:PMPI_File_open
   ...
}
{
   IntelMPI-ADIOI_Shfp_fname-cond
   Memcheck:Cond
   ...
   fun:ADIOI_Shfp_fname
   fun:PMPI_File_open
   ...
}
{
   IntelMPI-ADIOI_Strdup1-addr8
   Memcheck:Addr8
   fun:__I_MPI___intel_sse2_strlen
   fun:ADIOI_Strdup
   fun:ADIO_*
   ...
}
{
   IntelMPI-ADIOI_Strdup2-addr8
   Memcheck:Addr8
   fun:ADIOI_Strdup
   fun:ADIO_*
   ...
}
{
   IntelMPI-ADIOI_Strdup-cond
   Memcheck:Cond
   fun:__I_MPI___intel_sse2_strlen
   fun:ADIOI_Strdup
   fun:ADIO_Open
   ...
}
{
   IntelMPI-ADIOI_Strncpy-value8
   Memcheck:Value8
   fun:ADIOI_Strncpy
   fun:ADIOI_Shfp_fname
   fun:PMPI_File_open
   ...
}
{
   IntelMPI-Cache_size-addr4
   Memcheck:Addr4
   fun:I_MPI_Cache_size
   fun:MPID_nem_impi_init_shm_configuration
   fun:MPID_nem_init_ckpt
   fun:MPID_nem_init
   fun:MPIDI_CH3_Init
   fun:MPID_Init
   fun:MPIR_Init_thread
   fun:PMPI_Init*
   fun:main
}
{
   IntelMPI-Get_r2h_table-addr8
   Memcheck:Addr8
   fun:iPMI_Get_r2h_table
   fun:iPMI_Init_Ext
   fun:PMI_Init_Ext
   fun:MPID_Init
   fun:MPIR_Init_thread
   fun:PMPI_Init*
   fun:main
}
{
   IntelMPI-Init-strncmp-cond
   Memcheck:Cond
   fun:__I_MPI___intel_sse2_strncmp
   obj:*/libmpi.so*
   fun:iPMI_Init
   fun:PMI_Init
   fun:MPID_Init
   fun:MPIR_Init_thread
   fun:PMPI_Init*
   fun:main
}
{
   IntelMPI-sse2_strdup-cond
   Memcheck:Cond
   fun:__I_MPI___intel_sse2_strdup
   ...
}
{
   IntelMPI-sse2_strdup-memcpy-cond
   Memcheck:Cond
   fun:memcpy
   fun:__I_MPI___intel_sse2_strdup
   ...
}
{
   IntelMPI-sse2_strdup-value8
   Memcheck:Value8
   fun:memcpy
   fun:__I_MPI___intel_sse2_strdup
   ...
}
{
   IntelMPI-PMIU_writeline-strlen-cond
   Memcheck:Cond
   fun:__I_MPI___intel_sse2_strlen
   fun:PMIU_writeline
   ...
   fun:MPID_Init
   fun:MPIR_Init_thread
   fun:PMPI_Init*
   fun:main
}
{
   IntelMPI-PMIU_writeline-cond
   Memcheck:Cond
   fun:PMIU_writeline
   ...
   fun:MPID_Init
   fun:MPIR_Init_thread
   fun:PMPI_Init*
   fun:main
}
{
   IntelMPI-PMIU_writeline-value8
   Memcheck:Value8
   fun:PMIU_writeline
   ...
   fun:MPID_Init
   fun:MPIR_Init_thread
   fun:PMPI_Init*
   fun:main
}
{
   IntelMPI-PMIU_writeline-param
   Memcheck:Param
   write(count)
   fun:__write_nocancel
   fun:PMIU_writeline
   ...
   fun:MPID_Init
   fun:MPIR_Init_thread
   fun:PMPI_Init*
   fun:main
}
{
   IntelMPI-PMPI_File_Open-addr8
   Memcheck:Addr8
   fun:__I_MPI___intel_sse2_str*
   fun:PMPI_File_open
   ...
}
{
   IntelMPI-Processor_arch_code-cond
   Memcheck:Cond
   fun:I_MPI_Processor_arch_code
   ...
   fun:MPIR_Init_thread
   fun:PMPI_Init*
   fun:main
}
{
   IntelMPI-Processor_model_number-cond
   Memcheck:Cond
   fun:I_MPI_Processor_model_number
   fun:I_MPI_Processor_arch_code
   ...
   fun:MPIR_Init_thread
   fun:PMPI_Init*
   fun:main
}
{
   IntelOMP-dynamic_link_descriptor
   Memcheck:Leak
   fun:calloc
   obj:*/libdl-*.so
   fun:dlopen
   fun:_ZN5__kmp12dynamic_linkEPKcPKNS_23dynamic_link_descriptorEmPPvi
   fun:_Z26__kmp_do_serial_initializev
   fun:__kmp_get_global_thread_id_reg
   ...
}
{
   IntelOMP-end_library-addr8
   Memcheck:Addr8
   fun:__intel_sse2_strlen
   fun:__kmp_env_get
   fun:__kmp_internal_end_library
   fun:__kmp_internal_end_atexit
   fun:__kmp_internal_end_fini
   ...
}
{
   IntelOMP-get_global_thread_id-addr8
   Memcheck:Addr8
   fun:__intel_sse2_strlen
   fun:__kmp_env_*
   fun:*
   fun:_Z26__kmp_do_serial_initializev
   fun:__kmp_get_global_thread_id_reg
   ...
}
{
   IntelOMP-get_global_thread_id-param
   Memcheck:Param
   sched_setaffinity(mask)
   fun:syscall
   fun:__kmp_affinity_determine_capable
   fun:_Z20__kmp_env_initializePKc
   fun:_Z26__kmp_do_serial_initializev
   fun:__kmp_get_global_thread_id_reg
   ...
}
{
   IntelOMP-runtime_destroy
   Memcheck:Leak
   fun:malloc
   ...
   obj:*/libdl-*.so
   fun:dlsym
   fun:__kmp_itt_fini_ittlib
   fun:_Z17__kmp_itt_destroyv
   fun:__kmp_runtime_destroy
}
{
   IntelMKL-dgemm_get_bufs
   Memcheck:Leak
   fun:malloc
   fun:mkl_serv_allocate
   fun:mkl_blas_mc3_dgemm_get_bufs
   ...
}
{
   IntelMKL-dgesdd
   Memcheck:Leak
   fun:malloc
   fun:mkl_serv_allocate
   fun:mkl_lapack_dbdsqr
   fun:mkl_lapack_dlasdq
   fun:mkl_lapack_dbdsdc
   fun:mkl_lapack_dgesdd
   fun:DGESDD
   fun:lapack_lite_dgesdd
   ...
}
{
   IntelMKL-dgesv
   Memcheck:Leak
   fun:malloc
   fun:mkl_serv_allocate
   fun:DGESV
   fun:lapack_lite_dgesv
   ...
}
{
   IntelMKL-domain_get_max_threads
   Memcheck:Leak
   fun:malloc
   fun:mkl_serv_malloc
   fun:MKL_get_N_Cores
   fun:mkl_serv_domain_get_max_threads
   ...
}
{
   IntelMKL-dsyevd
   Memcheck:Leak
   fun:mkl_serv_allocate
   fun:mkl_lapack_dsteqr
   fun:mkl_lapack_dstedc
   fun:mkl_lapack_dsyevd
   fun:DSYEVD
   fun:lapack_lite_dsyevd
   ...
}
{
   IntelMKL-dsyevd-cond
   Memcheck:Cond
   fun:mkl_lapack_ps_mc3_xdlansy
   fun:mkl_lapack_ps_xdlansy
   fun:mkl_lapack_dlansy
   fun:mkl_lapack_dsyevd
   fun:DSYEVD
   fun:lapack_lite_dsyevd
   ...
}
{
   IntelMKL-get_max_threads-addr8
   Memcheck:Addr8
   fun:__intel_sse2_strlen
   fun:__kmp_env_*
   fun:*
   fun:__kmp_middle_initialize
   fun:omp_get_num_procs
   fun:MKL_get_N_Cores
   fun:mkl_serv_get_max_threads
   ...
}
{
   IntelMKL-get_max_threads-param
   Memcheck:Param
   sched_setaffinity(mask)
   fun:syscall
   fun:__kmp_affinity_determine_capable
   fun:_Z20__kmp_env_initializePKc
   fun:__kmp_middle_initialize
   fun:omp_get_num_procs
   fun:MKL_get_N_Cores
   fun:mkl_serv_get_max_threads
   ...
}
{
   IntelMKL-load_dll
   Memcheck:Leak
   fun:?alloc
   obj:*/ld-*.so
   ...
   fun:dlopen
   fun:mkl_serv_load_dll
   ...
}
{
   OpenMPI-ADIO_Open
   Memcheck:Leak
   fun:*alloc
   ...
   fun:ADIO_Open
   ...
}
{
   OpenMPI-mca
   Memcheck:Leak
   ...
   obj:*/libopen-pal.so*
   fun:mca_*
}
{
   OpenMPI-OPAL-ifcount
   Memcheck:Leak
   fun:malloc
   obj:*/libopen-pal.so*
   fun:opal_ifcount
   ...
   fun:PMPI_Init*
}
{
   OpenMPI-OPAL-init
   Memcheck:Leak
   fun:malloc
   fun:opal_class_initialize
   ...
   obj:*/libmpi.so*
}
{
   OpenMPI-OPAL-dirpath_create
   Memcheck:Addr4
   fun:opal_os_dirpath_create
   ...
   obj:*/libmpi.so*
   fun:PMPI_Init*
   fun:main
}
{
   OpenMPI-orte
   Memcheck:Leak
   ...
   obj:*/libopen-pal.so*
   fun:orte_*
}
{
   OpenMPI-orte_init-hash_table
   Memcheck:Leak
   fun:*alloc
   fun:opal_hash_table*
   ...
   fun:orte_init
   obj:*/libmpi.so*
}
{
   OpenMPI-PMPI_Init
   Memcheck:Leak
   ...
   obj:*/libmpi.so*
   fun:PMPI_Init*
   fun:main
}
{
   OpenMPI-PMPI_File_open
   Memcheck:Leak
   fun:*alloc
   ...
   obj:*/libmpi.so*
   fun:PMPI_File_open
   ...
}
{
   OpenMPI-PMPI_Attr_put
   Memcheck:Leak
   fun:*alloc
   ...
   obj:*/libmpi.so*
   fun:PMPI_Attr_put
   ...
}
{
   OpenMPI-proc_all
   Memcheck:Leak
   fun:malloc
   fun:ompi_proc_all
   ...
   obj:*/libmpi.so*
   fun:main
}
{
   OpenMPI-setAffinity
   Memcheck:Param
   sched_setaffinity(mask)
   ...
   obj:*/libmpi.so*
   fun:PMPI_Init*
   fun:main
}
{
   OpenMPI-writev
   Memcheck:Param
   writev(vector[...])
   ...
   obj:*/libmpi.so*
   fun:PMPI_Init*
   fun:main
}
{
   gomp-gomp_team_start
   Memcheck:Leak
   fun:malloc
   fun:gomp_malloc
   fun:gomp_team_start
   ...
}
{
   libdl-error1
   Memcheck:Leak
   fun:?alloc
   fun:local_strdup
   ...
   fun:_dl_catch_error
   ...
}
{
   libdl-error2
   Memcheck:Leak
   fun:?alloc
   ...
   fun:openaux
   fun:_dl_catch_error
   ...
}
{
   libdl-error3
   Memcheck:Leak
   fun:?alloc
   ...
   fun:dl_open_worker
   fun:_dl_catch_error
   ...
}
{
   boost-python-demangle
   Memcheck:Leak
   fun:malloc
   fun:realloc
   obj:*/libstdc++.so*
   obj:*/libstdc++.so*
   fun:__cxa_demangle
   fun:_ZN5boost6python6detail12gcc_demangleEPKc
   ...
}
{
   boost-init_module-string_concat
   Memcheck:Leak
   fun:malloc
   fun:string_concat
   fun:_ZN5boost6python3apipLERNS1_6objectERKS2_
   ...
   fun:*init_module_*
   fun:*boost6python*
   ...
}
{
   boost-init_module-new
   Memcheck:Leak
   fun:_Znwm
   ...
   fun:*init_module_*
   fun:*boost6python*
   ...
}
{
   boost-init_module-malloc
   Memcheck:Leak
   fun:malloc
   ...
   fun:*init_module_*
   fun:*boost6python*
   ...
}
{
   boost-init_module-addr4
   Memcheck:Addr4
   fun:PyObject_Free
   ...
   fun:*init_module_*
   fun:_ZNK5boost6python6detail17exception_handlerclERKNS_9function0IvEE
   ...
}
{
   boost-init_module-cond
   Memcheck:Cond
   fun:PyObject_Free
   ...
   fun:*init_module_*
   fun:_ZNK5boost6python6detail17exception_handlerclERKNS_9function0IvEE
   ...
}
{
   boost-init_module-value8
   Memcheck:Value8
   fun:PyObject_Free
   ...
   fun:*init_module_*
   fun:_ZNK5boost6python6detail17exception_handlerclERKNS_9function0IvEE
   ...
}
{
   Python-internal_malloc
   Memcheck:Leak
   fun:malloc
   obj:*/libpython2.?.so*
   fun:PyEval_EvalFrameEx
   ...
}
{
   Python-internal_realloc
   Memcheck:Leak
   fun:malloc
   fun:realloc
   obj:*/libpython2.?.so*
   fun:PyEval_EvalFrameEx
   ...
}
{
   Python-listappend
   Memcheck:Leak
   ...
   fun:realloc
   fun:listappend*
   fun:PyEval_EvalFrameEx
   ...
}
{
   Python-listinsert
   Memcheck:Leak
   fun:realloc
   fun:listinsert
   fun:PyEval_EvalFrameEx
   ...
}
{
   Python-PyArray_Concatenate-addr8
   Memcheck:Addr8
   fun:__intel_ssse3_memcpy
   fun:PyArray_Concatenate
   fun:_swap_and_concat
   fun:array_concatenate
   ...
}
{
   Python-PyArray-malloc
   Memcheck:Leak
   fun:malloc
   fun:PyArray_*
   ...
}
{
   Python-PyArray_NewFromDescr
   Memcheck:Leak
   fun:malloc
   fun:array_alloc
   fun:PyArray_NewFromDescr
   ...
}
{
   Python-PyArray_Scalar
   Memcheck:Leak
   fun:malloc
   fun:gentype_alloc
   fun:PyArray_Scalar
   ...
}
{
   Python-PyDict-malloc
   Memcheck:Leak
   fun:malloc
   ...
   fun:*PyDict_*
   ...
}
{
   Python-PyFloat_FromDouble
   Memcheck:Leak
   fun:malloc
   fun:PyFloat_FromDouble
   ...
}
{
   Python-PyFloat_FromString-addr4
   Memcheck:Addr4
   fun:PyFloat_FromString
   obj:*/libpython2.?.so*
   ...
}
{
   Python-PyImport_GetDynLoadFunc-alloc
   Memcheck:Leak
   fun:?alloc
   ...
   fun:_PyImport_GetDynLoadFunc
   ...
}
{
   Python-PyImport_GetDynLoadFunc-new
   Memcheck:Leak
   fun:_Znwm
   ...
   fun:_PyImport_GetDynLoadFunc
   ...
}
{
   Python-PyImport_LoadDynamicModule
   Memcheck:Leak
   fun:calloc
   ...
   fun:_PyImport_LoadDynamicModule
   obj:*/libpython2.?.so*
}
{
   Python-PyImport_ImportModuleLevel-new
   Memcheck:Leak
   fun:_Znwm
   ...
   fun:PyImport_ImportModuleLevel
}
{
   Python-PyImport_ImportModuleLevel-realloc
   Memcheck:Leak
   fun:realloc
   obj:*/libpython2.?.so*
   ...
   fun:PyImport_ImportModuleLevel
}
{
   Python-PyInitializeEx
   Memcheck:Leak
   fun:malloc
   fun:strdup
   fun:Py_InitializeEx
   fun:Py_Main
   fun:main
}
{
   Python-PyInt_FromLong
   Memcheck:Leak
   fun:malloc
   fun:PyInt_FromLong
   ...
}
{
   Python-PyInt_Init
   Memcheck:Leak
   fun:malloc
   fun:_PyInt_Init
   fun:Py_InitializeEx
   fun:Py_Main
   fun:main
}
{
   Python-PyList_Append
   Memcheck:Leak
   ...
   fun:realloc
   fun:PyList_Append
   ...
}
{
   Python-PyList_New
   Memcheck:Leak
   fun:malloc
   fun:PyList_New
   ...
}
{
   Python-PyNumber-malloc
   Memcheck:Leak
   fun:malloc
   ...
   fun:PyNumber_*
   ...
}
{
   Python-PyObject-addr4
   Memcheck:Addr4
   fun:PyObject_*
   ...
   obj:*/libpython2.?.so*
}
{
   Python-PyObject-cond
   Memcheck:Cond
   fun:PyObject_*
   ...
   obj:*/libpython2.?.so*
}
{
   Python-PyObject-value8
   Memcheck:Value8
   fun:PyObject_*
   ...
   obj:*/libpython2.?.so*
}
{
   Python-PyObject_Call
   Memcheck:Leak
   ...
   obj:*/libpython2.?.so*
   fun:PyObject_Call
   ...
}
{
   Python-PyObject_GC_Malloc
   Memcheck:Leak
   fun:malloc
   fun:_PyObject_GC_Malloc
   ...
}
{
   Python-PyObject_GC_Resize
   Memcheck:Leak
   fun:realloc
   fun:_PyObject_GC_Resize
   ...
   obj:*/libpython2.?.so*
}
{
   Python-PyObject_GenericSetAttrWithDict
   Memcheck:Leak
   fun:malloc
   fun:*
   fun:_PyObject_GenericSetAttrWithDict
   ...
}
{
   Python-PyObject_Malloc
   Memcheck:Leak
   fun:*alloc
   fun:PyObject_Malloc
   ...
}
{
   Python-PyObject_RichCompare
   Memcheck:Leak
   fun:malloc
   ...
   fun:PyObject_RichCompare
   ...
}
{
   Python-string_new-cond
   Memcheck:Cond
   ...
   fun:_PyObject_Str
   fun:PyObject_Str
   fun:string_new
   ...
}
{
   Python-string_new-value8
   Memcheck:Value8
   ...
   fun:_PyObject_Str
   fun:PyObject_Str
   fun:string_new
   ...
}
{
   Python-PyString_Format-cond
   Memcheck:Cond
   fun:__intel_sse2_strlen
   fun:doubletype_str
   fun:_PyObject_Str
   fun:PyString_Format
   ...
}
{
   Python-PyString_Format-value8
   Memcheck:Value8
   fun:doubletype_str
   fun:_PyObject_Str
   fun:PyString_Format
   ...
}
{
   Python-PyString-malloc
   Memcheck:Leak
   fun:malloc
   ...
   fun:PyString_*
   ...
}
{
   Python-PyString_Resize
   Memcheck:Leak
   fun:realloc
   fun:_PyString_Resize
   ...
}
{
   Python-PyStructSequence_InitType
   Memcheck:Leak
   fun:malloc
   fun:PyStructSequence_InitType
   ...
}
{
   Python-PySwigClientData_New
   Memcheck:Leak
   fun:malloc
   fun:PySwigClientData_New
   ...
}
{
   Python-SwigPyClientData_New
   Memcheck:Leak
   fun:malloc
   fun:SwigPyClientData_New
   ...
}
{
   Python-PyThread_allocate_lock
   Memcheck:Leak
   fun:malloc
   fun:PyThread_allocate_lock
   ...
}
{
   Python-PyTuple_New
   Memcheck:Leak
   fun:realloc
   ...
   fun:PyTuple_New
   obj:*/libpython2.?.so*
   ...
   fun:PyMarshal_ReadLastObjectFromFile
}
{
   Python-PyType_Ready
   Memcheck:Leak
   fun:malloc
   ...
   fun:PyType_Ready
   ...
}
{
   Python-PyUnicodeUCS4_Format
   Memcheck:Leak
   fun:realloc
   obj:*/libpython2.?.so*
   fun:PyUnicodeUCS4_Format
   ...
}
{
   Python-Py_GetProgramFullPath
   Memcheck:Leak
   fun:malloc
   ...
   fun:Py_GetProgramFullPath
   fun:_PySys_Init
   fun:Py_InitializeEx
   fun:Py_Main
   fun:main
}
{
   Python-dictresize
   Memcheck:Leak
   fun:malloc
   fun:dictresize*
   ...
   fun:PyEval_EvalFrameEx
   ...
}
{
   Python-initft2font
   Memcheck:Leak
   fun:_Zn?m
   ...
   fun:initft2font
   fun:_PyImport_LoadDynamicModule
   ...
}
{
   Python-init_tri
   Memcheck:Leak
   ...
   fun:_ZN9TriModuleC1Ev
   fun:init_tri
   fun:_PyImport_LoadDynamicModule
   fun:import_submodule
   ...
}
{
   Python-numpy
   Memcheck:Leak
   fun:malloc
   obj:*/numpy/core/multiarray.so
   ...
   fun:PyEval_EvalFrameEx
   ...
}
{
   Python-numpy-cond
   Memcheck:Cond
   obj:*/numpy/core/multiarray.so
   ...
   fun:PyEval_EvalFrameEx
}
{
   Python-set_conversion_mode
   Memcheck:Leak
   fun:malloc
   fun:set_conversion_mode
   fun:PyEval_EvalFrameEx
   ...
}
{
   CRYPTO-init_hashlib
   Memcheck:Leak
   fun:*alloc
   fun:CRYPTO_*alloc
   ...
   fun:init_hashlib
   ...
}
{
   CRYPTO-init_ssl
   Memcheck:Leak
   fun:*alloc
   fun:CRYPTO_*alloc
   ...
   fun:init_ssl
   ...
}
{
   Freetype-FT_Load_Glyph
   Memcheck:Leak
   fun:*alloc
   ...
   fun:ft_mem_qrealloc
   fun:ft_mem_realloc
   ...
   obj:*/libfreetype.so*
   fun:FT_Load_Glyph
   ...
}
{
   Freetype-initft2font
   Memcheck:Leak
   fun:malloc
   fun:ft_mem_qalloc
   fun:ft_mem_alloc
   ...
   fun:initft2font
   fun:_PyImport_LoadDynamicModule
   ...
}
{
   GDAL-CPLMutexHolder
   Memcheck:Leak
   fun:malloc
   fun:CPLCreateMutex
   fun:CPLCreateOrAcquireMutex
   fun:_ZN14CPLMutexHolderC1EPPvdPKci
   ...
}
{
   osgeo-importFromWkt-cond
   Memcheck:Cond
   fun:_ZN19OGRSpatialReference13importFromWktEPPc
   ...
}
{
   osgeo-importFromWkt-value8
   Memcheck:Value8
   fun:_ZN11OGR_SRSNode13importFromWktEPPc
   fun:_ZN19OGRSpatialReference13importFromWktEPPc
   ...
}
{
   Proj-set_searchpath
   Memcheck:Leak
   fun:malloc
   fun:pj_malloc
   fun:pj_set_searchpath
   ...
}
{
   Tcl-FindExecutable
   Memcheck:Leak
   fun:malloc
   ...
   fun:Tcl_FindExecutable
   ...
}
{
   Tcl-GetThreadData
   Memcheck:Leak
   fun:malloc
   ...
   fun:Tcl_GetThreadData
   ...
}
{
   wx-InitAllImageHandlers
   Memcheck:Leak
   fun:malloc
   ...
   fun:_Z22wxInitAllImageHandlersv
   fun:init_core_
   fun:_PyImport_LoadDynamicModule
   ...
}