passagemath-standard-no-symbolics 10.6.45__cp313-cp313-macosx_13_0_arm64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (83) hide show
  1. passagemath_standard_no_symbolics/__init__.py +1 -0
  2. passagemath_standard_no_symbolics-10.6.45.data/scripts/sage-grep +5 -0
  3. passagemath_standard_no_symbolics-10.6.45.data/scripts/sage-grepdoc +5 -0
  4. passagemath_standard_no_symbolics-10.6.45.data/scripts/sage-list-packages +103 -0
  5. passagemath_standard_no_symbolics-10.6.45.dist-info/METADATA +150 -0
  6. passagemath_standard_no_symbolics-10.6.45.dist-info/RECORD +83 -0
  7. passagemath_standard_no_symbolics-10.6.45.dist-info/WHEEL +6 -0
  8. passagemath_standard_no_symbolics-10.6.45.dist-info/top_level.txt +2 -0
  9. sage/all.py +207 -0
  10. sage/all_cmdline.py +36 -0
  11. sage/cli/__init__.py +61 -0
  12. sage/cli/__main__.py +5 -0
  13. sage/cli/eval_cmd.py +45 -0
  14. sage/cli/eval_cmd_test.py +25 -0
  15. sage/cli/interactive_shell_cmd.py +28 -0
  16. sage/cli/notebook_cmd.py +51 -0
  17. sage/cli/notebook_cmd_test.py +39 -0
  18. sage/cli/options.py +26 -0
  19. sage/cli/run_file_cmd.py +50 -0
  20. sage/cli/version_cmd.py +26 -0
  21. sage/databases/all.py +83 -0
  22. sage/databases/cubic_hecke_db.py +1527 -0
  23. sage/dynamics/all.py +31 -0
  24. sage/dynamics/surface_dynamics_deprecation.py +32 -0
  25. sage/ext_data/kenzo/CP2.txt +45 -0
  26. sage/ext_data/kenzo/CP3.txt +349 -0
  27. sage/ext_data/kenzo/CP4.txt +4774 -0
  28. sage/ext_data/kenzo/README.txt +49 -0
  29. sage/ext_data/kenzo/S4.txt +20 -0
  30. sage/ext_data/mwrank/PRIMES +1 -0
  31. sage/ext_data/nbconvert/postprocess.py +48 -0
  32. sage/ext_data/nbconvert/rst_sage.tpl +99 -0
  33. sage/ext_data/nodoctest +0 -0
  34. sage/ext_data/notebook-ipython/kernel.json.in +11 -0
  35. sage/ext_data/notebook-ipython/logo-64x64.png +0 -0
  36. sage/ext_data/notebook-ipython/logo.svg +352 -0
  37. sage/ext_data/valgrind/pyalloc.supp +58 -0
  38. sage/ext_data/valgrind/sage-additional.supp +417 -0
  39. sage/ext_data/valgrind/sage.supp +43 -0
  40. sage/ext_data/valgrind/valgrind-python.supp +480 -0
  41. sage/geometry/all.py +12 -0
  42. sage/groups/matrix_gps/pickling_overrides.py +110 -0
  43. sage/homology/tests.py +66 -0
  44. sage/interacts/algebra.py +20 -0
  45. sage/interacts/all.py +25 -0
  46. sage/interacts/calculus.py +24 -0
  47. sage/interacts/fractals.py +18 -0
  48. sage/interacts/geometry.py +19 -0
  49. sage/interacts/library.py +1950 -0
  50. sage/interacts/library_cython.cpython-313-darwin.so +0 -0
  51. sage/interacts/statistics.py +19 -0
  52. sage/interfaces/axiom.py +1002 -0
  53. sage/interfaces/kash.py +834 -0
  54. sage/interfaces/lie.py +950 -0
  55. sage/interfaces/matlab.py +413 -0
  56. sage/interfaces/mupad.py +686 -0
  57. sage/interfaces/octave.py +858 -0
  58. sage/interfaces/phc.py +943 -0
  59. sage/interfaces/psage.py +189 -0
  60. sage/interfaces/qsieve.py +4 -0
  61. sage/interfaces/r.py +2096 -0
  62. sage/interfaces/read_data.py +46 -0
  63. sage/interfaces/scilab.py +576 -0
  64. sage/interfaces/tests.py +81 -0
  65. sage/libs/all.py +11 -0
  66. sage/libs/cremona/__init__.py +0 -0
  67. sage/libs/mwrank/__init__.py +0 -0
  68. sage/logic/all.py +3 -0
  69. sage/logic/booleval.py +160 -0
  70. sage/logic/boolformula.py +1490 -0
  71. sage/logic/logic.py +856 -0
  72. sage/logic/logicparser.py +696 -0
  73. sage/logic/logictable.py +272 -0
  74. sage/logic/propcalc.py +311 -0
  75. sage/misc/all.py +28 -0
  76. sage/misc/lazy_attribute.pyi +11 -0
  77. sage/rings/all.py +48 -0
  78. sage/rings/commutative_algebra.py +38 -0
  79. sage/rings/finite_rings/all.py +21 -0
  80. sage/rings/numbers_abc.py +58 -0
  81. sage/rings/polynomial/all.py +22 -0
  82. sage/rings/polynomial/convolution.py +421 -0
  83. sage/symbolic/all__sagemath_standard_no_symbolics.py +0 -0
@@ -0,0 +1,417 @@
1
+ # This suppression file is meant to be used in addition to sage.supp
2
+ #
3
+ # Use as valgrind --suppressions=sage.supp --suppressions=sage-additional.supp
4
+
5
+ # Suppressions below were added so that `sage --valgrind` gives no leaks.
6
+ # This is _not_ to say that these leaks are benign or that they should be
7
+ # added to the final suppressions file. Someone who knows a little bit
8
+ # more about particular portions of sage should probably look at them.
9
+
10
+ #{{{ static initialization (dlopen)
11
+
12
+ {
13
+ Singular Static init 1
14
+ Memcheck:Leak
15
+ fun:malloc
16
+ fun:omAllocFromSystem
17
+ fun:omAllocLarge
18
+ fun:_Z41__static_initialization_and_destruction_0ii
19
+ fun:_ZN16ImageLoaderMachO18doModInitFunctionsERKN11ImageLoader11LinkContextE
20
+ fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
21
+ fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
22
+ fun:_ZN11ImageLoader15runInitializersERKNS_11LinkContextE
23
+ fun:dlopen
24
+ fun:dlopen
25
+ fun:_PyImport_GetDynLoadFunc
26
+ }
27
+
28
+ {
29
+ Singular Static init 2
30
+ Memcheck:Leak
31
+ fun:_Znam
32
+ ...
33
+ fun:_Z6initPTv
34
+ fun:_Z17initCanonicalFormv
35
+ fun:_Z41__static_initialization_and_destruction_0ii
36
+ fun:_ZN16ImageLoaderMachO18doModInitFunctionsERKN11ImageLoader11LinkContextE
37
+ fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
38
+ fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
39
+ fun:_ZN11ImageLoader15runInitializersERKNS_11LinkContextE
40
+ fun:dlopen
41
+ fun:dlopen
42
+ fun:_PyImport_GetDynLoadFunc
43
+ }
44
+
45
+ {
46
+ GiNaC static init 1
47
+ Memcheck:Leak
48
+ fun:_Znwm
49
+ fun:_ZNSs4_Rep9_S_createEmmRKSaIcE
50
+ fun:_ZNSs12_S_constructIPKcEEPcT_S3_RKSaIcESt20forward_iterator_tag
51
+ fun:_ZNSsC2EPKcRKSaIcE
52
+ fun:_Z41__static_initialization_and_destruction_0ii
53
+ fun:_GLOBAL__I__ZN5GiNaC*E
54
+ fun:_ZN16ImageLoaderMachO18doModInitFunctionsERKN11ImageLoader11LinkContextE
55
+ fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
56
+ fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
57
+ fun:_ZN11ImageLoader15runInitializersERKNS_11LinkContextE
58
+ fun:dlopen
59
+ fun:dlopen
60
+ fun:_PyImport_GetDynLoadFunc
61
+ }
62
+
63
+ {
64
+ GiNaC static init 2
65
+ Memcheck:Leak
66
+ fun:_Znwm
67
+ fun:_ZNSs4_Rep9_S_createEmmRKSaIcE
68
+ fun:_ZNSs4_Rep8_M_cloneERKSaIcEm
69
+ fun:_ZNSs7reserveEm
70
+ fun:_ZNSs6appendEPKcm
71
+ fun:_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_PKS3_
72
+ fun:_ZN5GiNaC16function_options8set_nameERKSsS2_
73
+ fun:_ZN5GiNaC16function_optionsC1ERKSsj
74
+ fun:_Z41__static_initialization_and_destruction_0ii
75
+ fun:_GLOBAL__I__ZN5GiNaC*E
76
+ fun:_ZN16ImageLoaderMachO18doModInitFunctionsERKN11ImageLoader11LinkContextE
77
+ fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
78
+ fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
79
+ fun:_ZN11ImageLoader15runInitializersERKNS_11LinkContextE
80
+ fun:dlopen
81
+ fun:dlopen
82
+ fun:_PyImport_GetDynLoadFunc
83
+ }
84
+
85
+ {
86
+ GiNaC static init 3
87
+ Memcheck:Leak
88
+ fun:malloc
89
+ fun:__pyx_f_4sage_5rings_7integer_fast_tp_new
90
+ fun:type_call
91
+ fun:PyObject_Call
92
+ fun:PyObject_CallFunction
93
+ fun:_Z7IntegerRKl
94
+ fun:_Z8RationalRKlS0_
95
+ fun:_ZNK5GiNaC8Number_TdvES0_
96
+ ...
97
+ fun:_Z41__static_initialization_and_destruction_0ii
98
+ fun:_GLOBAL__I__ZN5GiNaC*E
99
+ fun:_ZN16ImageLoaderMachO18doModInitFunctionsERKN11ImageLoader11LinkContextE
100
+ fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
101
+ fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
102
+ fun:_ZN11ImageLoader15runInitializersERKNS_11LinkContextE
103
+ fun:dlopen
104
+ fun:dlopen
105
+ fun:_PyImport_GetDynLoadFunc
106
+ }
107
+
108
+ #}}}
109
+ #{{{ GiNaC/Pynac/
110
+
111
+ {
112
+ Pynac Constant Construction 1
113
+ Memcheck:Leak
114
+ fun:_Znwm
115
+ fun:_ZNSs4_Rep9_S_createEmmRKSaIcE
116
+ fun:_ZNSs12_S_constructIPKcEEPcT_S3_RKSaIcESt20forward_iterator_tag
117
+ fun:_ZNSsC2EPKcRKSaIcE
118
+ fun:_Z19GConstant_construct*PvPcS0_j
119
+ fun:_ZL64__pyx_pf_4sage_8symbolic_11constants_c_13PynacConstant___cinit__P7_objectS0_S0_
120
+ fun:_ZL56__pyx_tp_new_4sage_8symbolic_11constants_c_PynacConstantP11_typeobjectP7_objectS2_
121
+ fun:type_call
122
+ fun:PyObject_Call
123
+ }
124
+
125
+ {
126
+ symbolic ring symbol -- sage/sage/symbolic/ring.pyx
127
+ Memcheck:Leak
128
+ fun:_Znwm
129
+ fun:_ZNSs4_Rep9_S_createEmmRKSaIcE
130
+ fun:_ZNSs12_S_constructIPKcEEPcT_S3_RKSaIcESt20forward_iterator_tag
131
+ fun:_ZNSsC2EPKcRKSaIcE
132
+ fun:_ZL51__pyx_f_4sage_8symbolic_4ring_12SymbolicRing_symbolP44__pyx_obj_4sage_8symbolic_4ring_SymbolicRingiP58__pyx_opt_args_4sage_8symbolic_4ring_12SymbolicRing_symbol
133
+ fun:_ZL54__pyx_pf_4sage_8symbolic_4ring_12SymbolicRing_16symbolP7_objectS0_S0_
134
+ fun:PyObject_Call
135
+ }
136
+
137
+ {
138
+ symbolic Function or GinacFunction
139
+ Memcheck:Leak
140
+ fun:_Znwm
141
+ fun:_ZNSs4_Rep9_S_createEmmRKSaIcE
142
+ fun:_ZNSs12_S_constructIPKcEEPcT_S3_RKSaIcESt20forward_iterator_tag
143
+ fun:_ZNSsC2EPKcRKSaIcE
144
+ fun:_ZL6*__pyx_f_4sage_8symbolic_8function_*Function__register_functionP4*__pyx_obj_4sage_8symbolic_8function_*Function
145
+ # fun:_ZL68__pyx_f_4sage_8symbolic_8function_13GinacFunction__register_functionP49__pyx_obj_4sage_8symbolic_8function_GinacFunction
146
+ fun:_ZL53__pyx_pf_4sage_8symbolic_8function_8Function___init__P7_objectS0_S0_
147
+ fun:wrap_init
148
+ fun:PyObject_Call
149
+ }
150
+
151
+ {
152
+ GiNaC symbol
153
+ Memcheck:Leak
154
+ fun:_Znwm
155
+ fun:_ZNSs4_Rep9_S_createEmmRKSaIcE
156
+ fun:_ZNSs12_S_constructIPKcEEPcT_S3_RKSaIcESt20forward_iterator_tag
157
+ fun:_ZNSsC2EPKcRKSaIcE
158
+ fun:_ZN5GiNaC6symbol15autoname_prefixEv
159
+ fun:_ZN5GiNaC6symbolC1Ev
160
+ fun:_ZL51__pyx_f_4sage_8symbolic_4ring_12SymbolicRing_symbolP44__pyx_obj_4sage_8symbolic_4ring_SymbolicRingiP58__pyx_opt_args_4sage_8symbolic_4ring_12SymbolicRing_symbol
161
+ fun:_ZL54__pyx_pf_4sage_8symbolic_4ring_12SymbolicRing_16symbolP7_objectS0_S0_
162
+ fun:PyObject_Call
163
+ }
164
+
165
+ {
166
+ GiNaC register_function
167
+ Memcheck:Leak
168
+ fun:_Znwm
169
+ fun:_ZNSs4_Rep9_S_createEmmRKSaIcE
170
+ fun:_ZNSs4_Rep8_M_cloneERKSaIcEm
171
+ fun:_ZNSs7reserveEm
172
+ fun:_ZNSs6appendEPKcm
173
+ fun:_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_PKS3_
174
+ fun:_ZN5GiNaC16function_options8set_nameERKSsS2_
175
+ fun:_ZN5GiNaC16function_optionsC1ERKSsj
176
+ fun:_ZL62__pyx_f_4sage_8symbolic_8function_8Function__register_functionP44__pyx_obj_4sage_8symbolic_8function_Function
177
+ fun:_ZL53__pyx_pf_4sage_8symbolic_8function_8Function___init__P7_objectS0_S0_
178
+ fun:wrap_init
179
+ fun:PyObject_Call
180
+ }
181
+
182
+ {
183
+ GiNaC find_function
184
+ Memcheck:Leak
185
+ fun:malloc
186
+ fun:__cxa_get_globals
187
+ fun:__cxa_allocate_exception
188
+ fun:_ZN5GiNaC8function13find_functionERKSsj
189
+ fun:_ZL66__pyx_f_4sage_8symbolic_8function_15BuiltinFunction__is_registeredP51__pyx_obj_4sage_8symbolic_8function_BuiltinFunction
190
+ fun:_ZL53__pyx_pf_4sage_8symbolic_8function_8Function___init__P7_objectS0_S0_
191
+ fun:wrap_init
192
+ fun:PyObject_Call
193
+ }
194
+
195
+ #}}}
196
+ #{{{ NTL
197
+
198
+ {
199
+ NTL SetLength
200
+ Memcheck:Leak
201
+ fun:malloc
202
+ fun:_ZN3NTL6vec_ZZ9SetLengthEl
203
+ fun:_ZN3NTL8SetCoeffERNS_3ZZXElRKNS_2ZZE
204
+ fun:_ZL52__pyx_pf_4sage_4libs_3ntl_7ntl_ZZX_7ntl_ZZX___init__P7_objectS0_S0_
205
+ fun:type_call
206
+ fun:PyObject_Call
207
+ }
208
+
209
+ {
210
+ NTL SetLength 2
211
+ Memcheck:Leak
212
+ fun:malloc
213
+ fun:_ZN3NTL6vec_ZZ9SetLengthEl
214
+ fun:_ZN3NTL8SetCoeffERNS_3ZZXElRKNS_2ZZE
215
+ fun:_ZL90__pyx_pf_4sage_5rings_12number_field_20number_field_element_18NumberFieldElement_1__init__P7_objectS0_S0_
216
+ fun:wrap_init
217
+ fun:PyObject_Call
218
+ }
219
+
220
+ {
221
+ NTL SetLength 1
222
+ Memcheck:Leak
223
+ fun:malloc
224
+ fun:_ntl_gsetlength
225
+ fun:_ntl_gcopy
226
+ fun:_ZN3NTL8SetCoeffERNS_3ZZXElRKNS_2ZZE
227
+ fun:_ZL52__pyx_pf_4sage_4libs_3ntl_7ntl_ZZX_7ntl_ZZX___init__P7_objectS0_S0_
228
+ fun:type_call
229
+ fun:PyObject_Call
230
+ }
231
+
232
+ {
233
+ NTL SetCoeff
234
+ Memcheck:Leak
235
+ fun:malloc
236
+ fun:_ntl_gsetlength
237
+ fun:_ntl_gcopy
238
+ fun:_ZN3NTL8SetCoeffERNS_3ZZXElRKNS_2ZZE
239
+ fun:_ZL90__pyx_pf_4sage_5rings_12number_field_20number_field_element_18NumberFieldElement_1__init__P7_objectS0_S0_
240
+ fun:wrap_init
241
+ fun:PyObject_Call
242
+ }
243
+
244
+ {
245
+ NTL convertZZ2CF
246
+ Memcheck:Leak
247
+ fun:malloc
248
+ fun:omAllocFromSystem
249
+ fun:omAllocLarge
250
+ fun:_Z12convertZZ2CFN3NTL2ZZE
251
+ fun:_Z16convertNTLZZX2CFN3NTL3ZZXE8Variable
252
+ fun:_ZL15gcd_univar_ntl0RK13CanonicalFormS1_
253
+ fun:_ZL10gcd_poly_0RK13CanonicalFormS1_
254
+ fun:_Z8gcd_polyRK13CanonicalFormS1_
255
+ fun:_Z3gcdRK13CanonicalFormS1_
256
+ fun:_ZL10cf_contentRK13CanonicalFormS1_
257
+ fun:_Z8gcd_polyRK13CanonicalFormS1_
258
+ fun:_Z3gcdRK13CanonicalFormS1_
259
+ fun:_Z14singclap_gcd_rP8spolyrecS0_P9sip_sring
260
+ fun:_Z12singclap_gcdP8spolyrecS0_
261
+ fun:_ZL97__pyx_pf_4sage_5rings_10polynomial_28multi_polynomial_libsingular_23MPolynomial_libsingular_49gcdP7_objectS0_S0_
262
+ fun:PyObject_Call
263
+ }
264
+
265
+ #}}}
266
+ #{{{ Pari/Singular
267
+
268
+ {
269
+ Pari strdup
270
+ Memcheck:Leak
271
+ fun:malloc
272
+ fun:pari_strdup
273
+ obj:*
274
+ fun:thue
275
+ obj:*
276
+ }
277
+
278
+ {
279
+ Singular initsingular
280
+ Memcheck:Leak
281
+ fun:malloc
282
+ fun:omAllocFromSystem
283
+ fun:omAlloc0Large
284
+ fun:_Z13iiInitCmdNamev
285
+ fun:_Z16iiInitArithmeticv
286
+ fun:_Z6siInitPc
287
+ fun:_ZL56__pyx_f_4sage_4libs_8singular_8singular_init_libsingularv
288
+ fun:initsingular
289
+ fun:_PyImport_LoadDynamicModule
290
+ }
291
+
292
+ #}}}
293
+ #{{{ Python/Cython?
294
+ # Email cython list with these
295
+
296
+ {
297
+ <insert title here>
298
+ Memcheck:Cond
299
+ fun:pclose
300
+ fun:close_the_file
301
+ fun:file_dealloc
302
+ fun:meth_dealloc
303
+ fun:PyEval_EvalFrameEx
304
+ }
305
+
306
+ {
307
+ <insert title here>
308
+ Memcheck:Param
309
+ wait4(pid)
310
+ fun:wait4
311
+ fun:close_the_file
312
+ fun:file_dealloc
313
+ fun:meth_dealloc
314
+ fun:PyEval_EvalFrameEx
315
+ }
316
+
317
+ {
318
+ <insert title here>
319
+ Memcheck:Leak
320
+ fun:realloc
321
+ fun:_PyObject_GC_Resize
322
+ fun:Py*_New
323
+ }
324
+
325
+ {
326
+ <insert title here>
327
+ Memcheck:Leak
328
+ fun:malloc
329
+ fun:PyString_FromStringAndSize
330
+ fun:PyEval_EvalFrameEx
331
+ }
332
+
333
+ {
334
+ http://projects.scipy.org/numpy/ticket/195
335
+ Memcheck:Leak
336
+ fun:malloc
337
+ fun:PyString_FromStringAndSize
338
+ fun:r_object
339
+ ...
340
+ fun:PyMarshal_ReadLastObjectFromFile
341
+ }
342
+
343
+ {
344
+ <insert title here>
345
+ Memcheck:Leak
346
+ fun:malloc
347
+ fun:_PyObject_GC_Malloc
348
+ fun:_PyObject_GC_NewVar
349
+ fun:Py*_New
350
+ }
351
+
352
+ {
353
+ <insert title here>
354
+ Memcheck:Leak
355
+ fun:realloc
356
+ fun:_PyString_Resize
357
+ fun:PyString_FromFormatV
358
+ fun:PyString_FromFormat
359
+ fun:ufunc_get_doc
360
+ fun:PyObject_GenericGetAttr
361
+ fun:PyObject_GetAttrString
362
+ fun:arr_add_docstring
363
+ fun:PyEval_EvalFrameEx
364
+ }
365
+
366
+ #}}}
367
+ #{{{ MPIR
368
+
369
+ {
370
+ mpfr_init2
371
+ Memcheck:Leak
372
+ fun:malloc
373
+ fun:sig_malloc
374
+ fun:sage_mpir_malloc
375
+ fun:mpfr_init2
376
+ }
377
+
378
+ {
379
+ mpir_realloc
380
+ Memcheck:Leak
381
+ fun:realloc
382
+ fun:sig_realloc
383
+ fun:sage_mpir_realloc
384
+ fun:__gmpz_realloc
385
+ fun:__gmpz_add_ui
386
+ fun:__pyx_f_4sage_5rings_7integer_7Integer__add_long
387
+ fun:__pyx_pf_4sage_9structure_7element_11RingElement_1__add__
388
+ fun:binary_op1
389
+ fun:PyNumber_Add
390
+ fun:__pyx_pf_4sage_5rings_10polynomial_18polynomial_element_10Polynomial_34_repr
391
+ fun:PyObject_Call
392
+ fun:__pyx_pf_4sage_5rings_10polynomial_18polynomial_element_10Polynomial_35_repr_
393
+ fun:PyObject_Call
394
+ fun:__pyx_pf_4sage_9structure_11sage_object_10SageObject_2__repr__
395
+ fun:_PyObject_Str
396
+ fun:PyString_Format
397
+ fun:binary_op1
398
+ fun:PyNumber_Remainder
399
+ fun:PyEval_EvalFrameEx
400
+ fun:PyEval_EvalCodeEx
401
+ fun:function_call
402
+ fun:PyObject_Call
403
+ fun:instancemethod_call
404
+ fun:PyObject_Call
405
+ }
406
+
407
+ #}}}
408
+
409
+ {
410
+ Parent
411
+ Memcheck:Leak
412
+ fun:malloc
413
+ fun:__pyx_f_4sage_5rings_7integer_fast_tp_new
414
+ fun:__pyx_f_4sage_5rings_7integer_8int_to_Z__call_
415
+ fun:__pyx_pf_4sage_9structure_6parent_6Parent_13__call__
416
+ fun:PyObject_Call
417
+ }
@@ -0,0 +1,43 @@
1
+ # The file sage.supp is meant to be a suppression file containing only
2
+ # suppressions for errors which are actually benign.
3
+
4
+ # The file sage-liberal.supp is a file with more suppressions. Use it
5
+ # if you wish search for memory leaks in new code without being
6
+ # bothered by memory leaks which (likely) occur in other parts of
7
+ # sage.
8
+
9
+ {
10
+ zlib Decompression 1
11
+ Memcheck:Cond
12
+ fun:longest_match
13
+ fun:deflate_slow
14
+ fun:deflate
15
+ fun:PyZlib_compress
16
+ }
17
+
18
+ {
19
+ zlib Decompression 2
20
+ Memcheck:Cond
21
+ fun:longest_match
22
+ fun:deflate_slow
23
+ fun:deflate
24
+ fun:PyZlib_flush
25
+ }
26
+
27
+ {
28
+ Cython initmodule 1
29
+ Memcheck:Leak
30
+ fun:malloc
31
+ fun:PyString_FromString
32
+ fun:*__Pyx_ImportType*
33
+ }
34
+
35
+ {
36
+ Cython initmodule 2
37
+ Memcheck:Leak
38
+ fun:malloc
39
+ fun:PyCObject_FromVoidPtrAndDesc
40
+ fun:*__Pyx_ExportFunction*
41
+ }
42
+
43
+