passagemath-standard-no-symbolics 10.6.31rc3__cp314-cp314-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.
Potentially problematic release.
This version of passagemath-standard-no-symbolics might be problematic. Click here for more details.
- passagemath_standard_no_symbolics-10.6.31rc3.data/scripts/sage-grep +5 -0
- passagemath_standard_no_symbolics-10.6.31rc3.data/scripts/sage-grepdoc +5 -0
- passagemath_standard_no_symbolics-10.6.31rc3.data/scripts/sage-list-packages +103 -0
- passagemath_standard_no_symbolics-10.6.31rc3.dist-info/METADATA +151 -0
- passagemath_standard_no_symbolics-10.6.31rc3.dist-info/RECORD +82 -0
- passagemath_standard_no_symbolics-10.6.31rc3.dist-info/WHEEL +6 -0
- passagemath_standard_no_symbolics-10.6.31rc3.dist-info/top_level.txt +1 -0
- sage/all.py +207 -0
- sage/all_cmdline.py +36 -0
- sage/cli/__init__.py +61 -0
- sage/cli/__main__.py +5 -0
- sage/cli/eval_cmd.py +45 -0
- sage/cli/eval_cmd_test.py +25 -0
- sage/cli/interactive_shell_cmd.py +28 -0
- sage/cli/notebook_cmd.py +51 -0
- sage/cli/notebook_cmd_test.py +39 -0
- sage/cli/options.py +26 -0
- sage/cli/run_file_cmd.py +50 -0
- sage/cli/version_cmd.py +26 -0
- sage/databases/all.py +83 -0
- sage/databases/cubic_hecke_db.py +1527 -0
- sage/dynamics/all.py +31 -0
- sage/dynamics/surface_dynamics_deprecation.py +32 -0
- sage/ext_data/kenzo/CP2.txt +45 -0
- sage/ext_data/kenzo/CP3.txt +349 -0
- sage/ext_data/kenzo/CP4.txt +4774 -0
- sage/ext_data/kenzo/README.txt +49 -0
- sage/ext_data/kenzo/S4.txt +20 -0
- sage/ext_data/mwrank/PRIMES +1 -0
- sage/ext_data/nbconvert/postprocess.py +48 -0
- sage/ext_data/nbconvert/rst_sage.tpl +99 -0
- sage/ext_data/nodoctest +0 -0
- sage/ext_data/notebook-ipython/kernel.json.in +11 -0
- sage/ext_data/notebook-ipython/logo-64x64.png +0 -0
- sage/ext_data/notebook-ipython/logo.svg +352 -0
- sage/ext_data/valgrind/pyalloc.supp +58 -0
- sage/ext_data/valgrind/sage-additional.supp +417 -0
- sage/ext_data/valgrind/sage.supp +43 -0
- sage/ext_data/valgrind/valgrind-python.supp +480 -0
- sage/geometry/all.py +12 -0
- sage/groups/matrix_gps/pickling_overrides.py +110 -0
- sage/homology/tests.py +66 -0
- sage/interacts/algebra.py +20 -0
- sage/interacts/all.py +25 -0
- sage/interacts/calculus.py +24 -0
- sage/interacts/fractals.py +18 -0
- sage/interacts/geometry.py +19 -0
- sage/interacts/library.py +1950 -0
- sage/interacts/library_cython.cpython-314-darwin.so +0 -0
- sage/interacts/statistics.py +19 -0
- sage/interfaces/axiom.py +1002 -0
- sage/interfaces/kash.py +834 -0
- sage/interfaces/lie.py +950 -0
- sage/interfaces/matlab.py +413 -0
- sage/interfaces/mupad.py +686 -0
- sage/interfaces/octave.py +858 -0
- sage/interfaces/phc.py +943 -0
- sage/interfaces/psage.py +189 -0
- sage/interfaces/qsieve.py +4 -0
- sage/interfaces/r.py +2096 -0
- sage/interfaces/read_data.py +46 -0
- sage/interfaces/scilab.py +576 -0
- sage/interfaces/tests.py +81 -0
- sage/libs/all.py +11 -0
- sage/libs/cremona/__init__.py +0 -0
- sage/libs/mwrank/__init__.py +0 -0
- sage/logic/all.py +3 -0
- sage/logic/booleval.py +160 -0
- sage/logic/boolformula.py +1490 -0
- sage/logic/logic.py +856 -0
- sage/logic/logicparser.py +696 -0
- sage/logic/logictable.py +272 -0
- sage/logic/propcalc.py +311 -0
- sage/misc/all.py +28 -0
- sage/misc/lazy_attribute.pyi +11 -0
- sage/rings/all.py +48 -0
- sage/rings/commutative_algebra.py +38 -0
- sage/rings/finite_rings/all.py +21 -0
- sage/rings/numbers_abc.py +58 -0
- sage/rings/polynomial/all.py +22 -0
- sage/rings/polynomial/convolution.py +421 -0
- sage/symbolic/all__sagemath_standard_no_symbolics.py +0 -0
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
These files contain code for producing simplicial set structures for spaces homotopy equivalent to n-dimensional complex projective space, using the algorithm described in "Triangulations of complex projective spaces" by Sergeraert. The f-vectors for these models for CP^n:
|
|
2
|
+
|
|
3
|
+
n=2: 1 0 2 3 3
|
|
4
|
+
n=3: 1 0 3 10 25 30 15
|
|
5
|
+
n=4: 1 0 4 22 97 255 390 315 105
|
|
6
|
+
n=5: 1 0 5 40 271 1197 3381 5975 6405 3780 945
|
|
7
|
+
n=6: 1 0 6 65 627 4162 18496 54789 107933 139230 112770 51975 10395
|
|
8
|
+
|
|
9
|
+
Kenzo:
|
|
10
|
+
- https://www-fourier.ujf-grenoble.fr/~sergerar/Kenzo/
|
|
11
|
+
- https://github.com/gheber/kenzo
|
|
12
|
+
|
|
13
|
+
The results for CP^2, CP^3, and CP^4 have been saved in the corresponding text files. The file S4.txt includes the 4-sphere, just for testing purposes. These files can be processed by the function "simplicial_data_from_kenzo_output" in sage/topology/simplicial_set.py. To get a simplicial set structure for CP^n using Kenzo in sbcl, do the following.
|
|
14
|
+
|
|
15
|
+
;;
|
|
16
|
+
;; Start Kenzo.
|
|
17
|
+
;;
|
|
18
|
+
(require :asdf)
|
|
19
|
+
(require :kenzo)
|
|
20
|
+
(in-package "CAT")
|
|
21
|
+
;;
|
|
22
|
+
;; Define K(Z,2).
|
|
23
|
+
;;
|
|
24
|
+
(setf kz2 (k-z 2))
|
|
25
|
+
;;
|
|
26
|
+
;; Define effective homology version of K(Z,2).
|
|
27
|
+
;;
|
|
28
|
+
(setf efhm-kz2 (efhm kz2))
|
|
29
|
+
;;
|
|
30
|
+
;; The previous command produces output of the form
|
|
31
|
+
;; [K153 Homotopy-Equivalence K13 <= K143 => K139]
|
|
32
|
+
;;
|
|
33
|
+
;; In the following, replace "139" with the right-hand number.
|
|
34
|
+
;; Replace "4" with the desired dimension: 2n if you're constructing
|
|
35
|
+
;; CP^n.
|
|
36
|
+
;;
|
|
37
|
+
;; That is, the point is to find the smallest subcomplex of K(Z,2)
|
|
38
|
+
;; which contains the given homology class. If you replace "4" with
|
|
39
|
+
;; "2n", this should give a complex homotopy equivalent to CP^n.
|
|
40
|
+
;;
|
|
41
|
+
(chcm-homology-gen (k 139) 4)
|
|
42
|
+
(setf g (first *))
|
|
43
|
+
(setf z4 (lf efhm-kz2 (rg efhm-kz2 g)))
|
|
44
|
+
(multiple-value-setq (ssz4 incl) (gmsms-subsmst kz2 z4))
|
|
45
|
+
;;
|
|
46
|
+
;; Now ssz4 is a model for the 4-dimensional complex CP^2, so display
|
|
47
|
+
;; its nondegenerate simplices through dimension 4.
|
|
48
|
+
;;
|
|
49
|
+
(show-structure ssz4 4)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
;; The 4-sphere.
|
|
2
|
+
|
|
3
|
+
* (show-structure S4 4)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
Dimension = 0:
|
|
7
|
+
|
|
8
|
+
Vertices : (*)
|
|
9
|
+
|
|
10
|
+
Dimension = 1:
|
|
11
|
+
|
|
12
|
+
Dimension = 2:
|
|
13
|
+
|
|
14
|
+
Dimension = 3:
|
|
15
|
+
|
|
16
|
+
Dimension = 4:
|
|
17
|
+
|
|
18
|
+
Simplex : S4
|
|
19
|
+
|
|
20
|
+
Faces : (<AbSm 2-1-0 *> <AbSm 2-1-0 *> <AbSm 2-1-0 *> <AbSm 2-1-0 *> <AbSm 2-1-0 *>)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
19047851
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
#!/usr/bin/env sage-python
|
|
2
|
+
|
|
3
|
+
r"""
|
|
4
|
+
This postprocess script fixes some issues with .rst files returned by nbconvert:
|
|
5
|
+
|
|
6
|
+
- it fixes the rendering of the first title (that looks like markdown not rst)
|
|
7
|
+
- it removes the header that defines some LaTeX macros
|
|
8
|
+
- it removes the :math: role since this is the default one
|
|
9
|
+
|
|
10
|
+
AUTHORS:
|
|
11
|
+
|
|
12
|
+
- Thierry Monteil (2018): initial version.
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
if __name__ == '__main__':
|
|
16
|
+
|
|
17
|
+
import sys
|
|
18
|
+
import re
|
|
19
|
+
|
|
20
|
+
file_name = sys.argv[1]
|
|
21
|
+
|
|
22
|
+
with open(file_name) as f:
|
|
23
|
+
lines = f.readlines()
|
|
24
|
+
|
|
25
|
+
# states of the parser
|
|
26
|
+
wrong_math_def_started = False
|
|
27
|
+
wrong_math_fixed = False
|
|
28
|
+
wrong_title_fixed = False
|
|
29
|
+
|
|
30
|
+
# processing
|
|
31
|
+
new_file = ''
|
|
32
|
+
for i, line in enumerate(lines):
|
|
33
|
+
if line.startswith(' # ') and not wrong_title_fixed:
|
|
34
|
+
new_file += re.sub('^ # ', '', line)
|
|
35
|
+
new_file += '=' * (len(line) - 4) + '\n'
|
|
36
|
+
wrong_title_fixed = True
|
|
37
|
+
elif line.startswith('.. math::') and not wrong_math_fixed:
|
|
38
|
+
pass
|
|
39
|
+
elif line.startswith(' \\def') and not wrong_math_fixed:
|
|
40
|
+
wrong_math_def_started = True
|
|
41
|
+
elif wrong_math_def_started and not wrong_math_fixed:
|
|
42
|
+
wrong_math_fixed = True
|
|
43
|
+
else:
|
|
44
|
+
new_file += re.sub(':math:', '', line)
|
|
45
|
+
|
|
46
|
+
# write new file
|
|
47
|
+
with open(file_name, 'w') as f:
|
|
48
|
+
f.write(new_file)
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
{%- extends 'display_priority.tpl' -%}
|
|
2
|
+
|
|
3
|
+
{%- block header -%}
|
|
4
|
+
.. escape-backslashes
|
|
5
|
+
.. default-role:: math
|
|
6
|
+
{% endblock header %}
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
{% block in_prompt %}
|
|
10
|
+
|
|
11
|
+
{% endblock in_prompt %}
|
|
12
|
+
|
|
13
|
+
{% block output_prompt %}
|
|
14
|
+
{% endblock output_prompt %}
|
|
15
|
+
|
|
16
|
+
{% block input scoped%}
|
|
17
|
+
{%- if cell.source.strip() -%}
|
|
18
|
+
::
|
|
19
|
+
|
|
20
|
+
{{ cell.source | add_prompts(first='sage: ', cont='....: ') | indent}}
|
|
21
|
+
{%- endif -%}
|
|
22
|
+
{%- endblock input -%}
|
|
23
|
+
|
|
24
|
+
{% block error %}
|
|
25
|
+
|
|
26
|
+
::
|
|
27
|
+
|
|
28
|
+
{{ super() }}
|
|
29
|
+
{% endblock error %}
|
|
30
|
+
|
|
31
|
+
{% block traceback_line %}
|
|
32
|
+
{{ line | indent | strip_ansi }}
|
|
33
|
+
{% endblock traceback_line %}
|
|
34
|
+
|
|
35
|
+
{%- block execute_result -%}
|
|
36
|
+
{%- block data_priority scoped -%}
|
|
37
|
+
{{ super() }}
|
|
38
|
+
{% endblock %}
|
|
39
|
+
{% endblock execute_result %}
|
|
40
|
+
|
|
41
|
+
{%- block stream -%}
|
|
42
|
+
{{ output.text | indent }}
|
|
43
|
+
{% endblock stream %}
|
|
44
|
+
|
|
45
|
+
{% block data_svg %}
|
|
46
|
+
|
|
47
|
+
.. image:: {{ output.metadata.filenames['image/svg+xml'] | urlencode }}
|
|
48
|
+
{% endblock data_svg %}
|
|
49
|
+
|
|
50
|
+
{% block data_png %}
|
|
51
|
+
|
|
52
|
+
.. image:: {{ output.metadata.filenames['image/png'] | urlencode }}
|
|
53
|
+
{% endblock data_png %}
|
|
54
|
+
|
|
55
|
+
{% block data_jpg %}
|
|
56
|
+
|
|
57
|
+
.. image:: {{ output.metadata.filenames['image/jpeg'] | urlencode }}
|
|
58
|
+
{% endblock data_jpg %}
|
|
59
|
+
|
|
60
|
+
{% block data_markdown %}
|
|
61
|
+
{{ output.data['text/markdown'] | convert_pandoc("markdown", "rst") }}
|
|
62
|
+
{% endblock data_markdown %}
|
|
63
|
+
|
|
64
|
+
{% block data_latex %}
|
|
65
|
+
|
|
66
|
+
.. math::
|
|
67
|
+
|
|
68
|
+
{{ output.data['text/latex'] | strip_dollars | indent }}
|
|
69
|
+
{% endblock data_latex %}
|
|
70
|
+
|
|
71
|
+
{%- block data_text scoped -%}
|
|
72
|
+
{{ output.data['text/plain'] | indent }}
|
|
73
|
+
{% endblock data_text %}
|
|
74
|
+
|
|
75
|
+
{% block data_html scoped %}
|
|
76
|
+
|
|
77
|
+
.. raw:: html
|
|
78
|
+
|
|
79
|
+
{{ output.data['text/html'] | indent }}
|
|
80
|
+
{% endblock data_html %}
|
|
81
|
+
|
|
82
|
+
{% block markdowncell scoped %}
|
|
83
|
+
|
|
84
|
+
{{ cell.source | convert_pandoc("markdown", "rst") }}
|
|
85
|
+
{% endblock markdowncell %}
|
|
86
|
+
|
|
87
|
+
{%- block rawcell scoped -%}
|
|
88
|
+
{%- if cell.metadata.get('raw_mimetype', '').lower() in resources.get('raw_mimetypes', ['']) %}
|
|
89
|
+
{{cell.source}}
|
|
90
|
+
{% endif -%}
|
|
91
|
+
{%- endblock rawcell -%}
|
|
92
|
+
|
|
93
|
+
{% block headingcell scoped %}
|
|
94
|
+
{{ ("#" * cell.level + cell.source) | replace('\n', ' ') | convert_pandoc("markdown", "rst") }}
|
|
95
|
+
{% endblock headingcell %}
|
|
96
|
+
|
|
97
|
+
{% block unknowncell scoped %}
|
|
98
|
+
unknown type {{cell.type}}
|
|
99
|
+
{% endblock unknowncell %}
|
sage/ext_data/nodoctest
ADDED
|
File without changes
|
|
Binary file
|
|
@@ -0,0 +1,352 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
6
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
7
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
8
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
width="100"
|
|
13
|
+
height="100"
|
|
14
|
+
viewBox="0 0 99.999997 99.999997"
|
|
15
|
+
id="svg5182"
|
|
16
|
+
version="1.1"
|
|
17
|
+
inkscape:version="0.91 r13725"
|
|
18
|
+
sodipodi:docname="sage-logo.svg">
|
|
19
|
+
<defs
|
|
20
|
+
id="defs5184" />
|
|
21
|
+
<sodipodi:namedview
|
|
22
|
+
id="base"
|
|
23
|
+
pagecolor="#ffffff"
|
|
24
|
+
bordercolor="#666666"
|
|
25
|
+
borderopacity="1.0"
|
|
26
|
+
inkscape:pageopacity="0.0"
|
|
27
|
+
inkscape:pageshadow="2"
|
|
28
|
+
inkscape:zoom="2.8"
|
|
29
|
+
inkscape:cx="4.5104621"
|
|
30
|
+
inkscape:cy="-33.017238"
|
|
31
|
+
inkscape:document-units="px"
|
|
32
|
+
inkscape:current-layer="layer1"
|
|
33
|
+
showgrid="false"
|
|
34
|
+
fit-margin-top="0"
|
|
35
|
+
fit-margin-left="0"
|
|
36
|
+
fit-margin-right="0"
|
|
37
|
+
fit-margin-bottom="0"
|
|
38
|
+
units="px"
|
|
39
|
+
inkscape:window-width="2560"
|
|
40
|
+
inkscape:window-height="1534"
|
|
41
|
+
inkscape:window-x="0"
|
|
42
|
+
inkscape:window-y="27"
|
|
43
|
+
inkscape:window-maximized="1" />
|
|
44
|
+
<metadata
|
|
45
|
+
id="metadata5187">
|
|
46
|
+
<rdf:RDF>
|
|
47
|
+
<cc:Work
|
|
48
|
+
rdf:about="">
|
|
49
|
+
<dc:format>image/svg+xml</dc:format>
|
|
50
|
+
<dc:type
|
|
51
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
52
|
+
<dc:title></dc:title>
|
|
53
|
+
</cc:Work>
|
|
54
|
+
</rdf:RDF>
|
|
55
|
+
</metadata>
|
|
56
|
+
<g
|
|
57
|
+
inkscape:label="Layer 1"
|
|
58
|
+
inkscape:groupmode="layer"
|
|
59
|
+
id="layer1"
|
|
60
|
+
transform="translate(-184.28571,-313.79078)">
|
|
61
|
+
<g
|
|
62
|
+
transform="translate(-817.28326,-402.32598)"
|
|
63
|
+
id="g12802"
|
|
64
|
+
inkscape:export-filename="/home/sirius/Images/SAGE Logos/icons_strip.png"
|
|
65
|
+
inkscape:export-xdpi="90"
|
|
66
|
+
inkscape:export-ydpi="90">
|
|
67
|
+
<rect
|
|
68
|
+
inkscape:export-ydpi="90"
|
|
69
|
+
inkscape:export-xdpi="90"
|
|
70
|
+
inkscape:export-filename="/home/sirius/Images/SAGE Logos/sage_webpage_icons.png"
|
|
71
|
+
ry="11.531985"
|
|
72
|
+
rx="11.531984"
|
|
73
|
+
y="716.11676"
|
|
74
|
+
x="1001.569"
|
|
75
|
+
height="100"
|
|
76
|
+
width="100"
|
|
77
|
+
id="rect12804"
|
|
78
|
+
style="opacity:0.98999999;fill:#9393ff;fill-opacity:0.99216464;stroke:none;stroke-width:0.80000001;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.98431684" />
|
|
79
|
+
<g
|
|
80
|
+
inkscape:export-ydpi="90"
|
|
81
|
+
inkscape:export-xdpi="90"
|
|
82
|
+
inkscape:export-filename="/home/sirius/Images/SAGE Logos/sage_webpage_icons.png"
|
|
83
|
+
transform="matrix(0.4795482,0,0,0.4795482,301.82045,-349.76993)"
|
|
84
|
+
id="g12806">
|
|
85
|
+
<circle
|
|
86
|
+
r="7.3256478"
|
|
87
|
+
cy="1792.4095"
|
|
88
|
+
cx="1324.929"
|
|
89
|
+
style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
90
|
+
id="path12808"
|
|
91
|
+
transform="matrix(0.9672595,0,0,0.9672595,235.69886,548.04605)" />
|
|
92
|
+
<circle
|
|
93
|
+
r="7.3256478"
|
|
94
|
+
cy="1792.4095"
|
|
95
|
+
cx="1324.929"
|
|
96
|
+
transform="matrix(0.9672595,0,0,0.9672595,308.74604,539.35166)"
|
|
97
|
+
id="path12810"
|
|
98
|
+
style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
99
|
+
<circle
|
|
100
|
+
r="7.3256478"
|
|
101
|
+
cy="1792.4095"
|
|
102
|
+
cx="1324.929"
|
|
103
|
+
style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
104
|
+
id="path12812"
|
|
105
|
+
transform="matrix(1.2053547,0,0,1.2053547,-25.196551,182.19849)" />
|
|
106
|
+
<circle
|
|
107
|
+
r="7.3256478"
|
|
108
|
+
cy="1792.4095"
|
|
109
|
+
cx="1324.929"
|
|
110
|
+
style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
111
|
+
id="path12814"
|
|
112
|
+
transform="matrix(0.7953719,0,0,0.7953719,449.34462,925.45441)" />
|
|
113
|
+
<circle
|
|
114
|
+
r="7.3256478"
|
|
115
|
+
cy="1792.4095"
|
|
116
|
+
cx="1324.929"
|
|
117
|
+
transform="matrix(0.7953719,0,0,0.7953719,499.30379,973.24771)"
|
|
118
|
+
id="path12816"
|
|
119
|
+
style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
120
|
+
<circle
|
|
121
|
+
r="7.3256478"
|
|
122
|
+
cy="1792.4095"
|
|
123
|
+
cx="1324.929"
|
|
124
|
+
style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
125
|
+
id="path12818"
|
|
126
|
+
transform="matrix(0.7953719,0,0,0.7953719,556.29908,956.69427)" />
|
|
127
|
+
<circle
|
|
128
|
+
r="7.3256478"
|
|
129
|
+
cy="1792.4095"
|
|
130
|
+
cx="1324.929"
|
|
131
|
+
transform="matrix(0.7953719,0,0,0.7953719,581.00221,902.90894)"
|
|
132
|
+
id="path12820"
|
|
133
|
+
style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
134
|
+
<circle
|
|
135
|
+
r="7.3256478"
|
|
136
|
+
cy="1792.4095"
|
|
137
|
+
cx="1324.929"
|
|
138
|
+
style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
139
|
+
id="path12822"
|
|
140
|
+
transform="matrix(0.6234843,0,0,0.6234843,800.65848,1180.6657)" />
|
|
141
|
+
<circle
|
|
142
|
+
r="7.3256478"
|
|
143
|
+
cy="1792.4095"
|
|
144
|
+
cx="1324.929"
|
|
145
|
+
transform="matrix(0.6234843,0,0,0.6234843,766.33259,1139.9519)"
|
|
146
|
+
id="path12824"
|
|
147
|
+
style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
148
|
+
<circle
|
|
149
|
+
r="7.3256478"
|
|
150
|
+
cy="1792.4095"
|
|
151
|
+
cx="1324.929"
|
|
152
|
+
style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
153
|
+
id="path12826"
|
|
154
|
+
transform="matrix(0.6234843,0,0,0.6234843,664.75027,1230.1938)" />
|
|
155
|
+
<circle
|
|
156
|
+
r="7.3256478"
|
|
157
|
+
cy="1792.4095"
|
|
158
|
+
cx="1324.929"
|
|
159
|
+
transform="matrix(0.6234843,0,0,0.6234843,701.58781,1267.5497)"
|
|
160
|
+
id="path12828"
|
|
161
|
+
style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
162
|
+
<circle
|
|
163
|
+
r="7.3256478"
|
|
164
|
+
cy="1792.4095"
|
|
165
|
+
cx="1324.929"
|
|
166
|
+
transform="matrix(0.7953719,0,0,0.7953719,440.41431,869.81028)"
|
|
167
|
+
id="path12830"
|
|
168
|
+
style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
169
|
+
<circle
|
|
170
|
+
r="7.3256478"
|
|
171
|
+
cy="1792.4095"
|
|
172
|
+
cx="1324.929"
|
|
173
|
+
style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
174
|
+
id="path12832"
|
|
175
|
+
transform="matrix(0.7953719,0,0,0.7953719,484.50773,829.39633)" />
|
|
176
|
+
<circle
|
|
177
|
+
r="7.3256478"
|
|
178
|
+
cy="1792.4095"
|
|
179
|
+
cx="1324.929"
|
|
180
|
+
style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
181
|
+
id="path12834"
|
|
182
|
+
transform="matrix(0.6234843,0,0,0.6234843,699.00639,1196.6154)" />
|
|
183
|
+
<circle
|
|
184
|
+
r="7.3256478"
|
|
185
|
+
cy="1792.4095"
|
|
186
|
+
cx="1324.929"
|
|
187
|
+
transform="matrix(0.6234843,0,0,0.6234843,749.0301,1256.3969)"
|
|
188
|
+
id="path12836"
|
|
189
|
+
style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
190
|
+
<path
|
|
191
|
+
inkscape:connector-curvature="0"
|
|
192
|
+
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
193
|
+
d="m 1590.0065,2271.6035 -18.6281,72.6731"
|
|
194
|
+
id="path12838" />
|
|
195
|
+
<path
|
|
196
|
+
inkscape:connector-curvature="0"
|
|
197
|
+
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
198
|
+
d="m 1589.0995,2273.5223 -72.5588,8.4545"
|
|
199
|
+
id="path12840" />
|
|
200
|
+
<path
|
|
201
|
+
inkscape:connector-curvature="0"
|
|
202
|
+
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
203
|
+
d="m 1571.3087,2343.4372 -54.6982,-61.8801"
|
|
204
|
+
id="path12842" />
|
|
205
|
+
<path
|
|
206
|
+
inkscape:connector-curvature="0"
|
|
207
|
+
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
208
|
+
d="m 1571.3087,2343.8569 -18.07,55.944"
|
|
209
|
+
id="path12844" />
|
|
210
|
+
<path
|
|
211
|
+
inkscape:connector-curvature="0"
|
|
212
|
+
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
213
|
+
d="m 1516.4012,2281.3172 21.0002,-24.3443"
|
|
214
|
+
id="path12846" />
|
|
215
|
+
<path
|
|
216
|
+
inkscape:connector-curvature="0"
|
|
217
|
+
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
218
|
+
d="m 1493.9359,2295.4681 21.7676,-14.3307"
|
|
219
|
+
id="path12848" />
|
|
220
|
+
<path
|
|
221
|
+
inkscape:connector-curvature="0"
|
|
222
|
+
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
223
|
+
d="m 1503.0057,2350.6326 13.3955,-69.9749"
|
|
224
|
+
id="path12850" />
|
|
225
|
+
<path
|
|
226
|
+
inkscape:connector-curvature="0"
|
|
227
|
+
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
228
|
+
d="m 1552.1922,2398.5417 -49.5353,-46.59"
|
|
229
|
+
id="path12852" />
|
|
230
|
+
<path
|
|
231
|
+
inkscape:connector-curvature="0"
|
|
232
|
+
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
233
|
+
d="m 1610.0997,2381.3328 -58.1168,16.969"
|
|
234
|
+
id="path12854" />
|
|
235
|
+
<path
|
|
236
|
+
inkscape:connector-curvature="0"
|
|
237
|
+
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
238
|
+
d="m 1634.2395,2328.3869 -24.1398,53.1257"
|
|
239
|
+
id="path12856" />
|
|
240
|
+
<path
|
|
241
|
+
inkscape:connector-curvature="0"
|
|
242
|
+
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
243
|
+
d="m 1570.5412,2343.4372 62.8611,-14.6306"
|
|
244
|
+
id="path12858" />
|
|
245
|
+
<path
|
|
246
|
+
inkscape:connector-curvature="0"
|
|
247
|
+
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
248
|
+
d="m 1590.1461,2273.0426 43.1166,55.1644"
|
|
249
|
+
id="path12860" />
|
|
250
|
+
<path
|
|
251
|
+
inkscape:connector-curvature="0"
|
|
252
|
+
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
253
|
+
d="m 1501.7987,2350.6326 66.9774,-7.1954"
|
|
254
|
+
id="path12862" />
|
|
255
|
+
<path
|
|
256
|
+
inkscape:connector-curvature="0"
|
|
257
|
+
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
258
|
+
d="m 1551.4038,2398.062 -24.4188,-13.1316"
|
|
259
|
+
id="path12864" />
|
|
260
|
+
<path
|
|
261
|
+
inkscape:connector-curvature="0"
|
|
262
|
+
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
263
|
+
d="m 1489.38,2347.2747 36.3492,37.296"
|
|
264
|
+
id="path12866" />
|
|
265
|
+
<path
|
|
266
|
+
inkscape:connector-curvature="0"
|
|
267
|
+
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
268
|
+
d="m 1493.2173,2295.9478 -2.721,51.3269"
|
|
269
|
+
id="path12868" />
|
|
270
|
+
<path
|
|
271
|
+
inkscape:connector-curvature="0"
|
|
272
|
+
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
273
|
+
d="m 1537.3805,2254.8743 54.0702,1.8588"
|
|
274
|
+
id="path12870" />
|
|
275
|
+
<path
|
|
276
|
+
inkscape:connector-curvature="0"
|
|
277
|
+
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
278
|
+
d="m 1627.172,2298.5261 -34.2562,-41.9729"
|
|
279
|
+
id="path12872" />
|
|
280
|
+
<path
|
|
281
|
+
inkscape:connector-curvature="0"
|
|
282
|
+
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
283
|
+
d="m 1635.4744,2328.207 -9.0001,-30.1006"
|
|
284
|
+
id="path12874" />
|
|
285
|
+
<path
|
|
286
|
+
inkscape:connector-curvature="0"
|
|
287
|
+
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
288
|
+
d="m 1589.4972,2272.2631 3.2093,-15.2902"
|
|
289
|
+
id="path12876" />
|
|
290
|
+
<path
|
|
291
|
+
inkscape:connector-curvature="0"
|
|
292
|
+
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
293
|
+
d="m 1503.6825,2351.2305 -14.1629,-2.6983"
|
|
294
|
+
id="path12878" />
|
|
295
|
+
<path
|
|
296
|
+
inkscape:connector-curvature="0"
|
|
297
|
+
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
298
|
+
d="m 1526.985,2385.4084 46.7446,-11.4526"
|
|
299
|
+
id="path12880" />
|
|
300
|
+
<path
|
|
301
|
+
inkscape:connector-curvature="0"
|
|
302
|
+
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
303
|
+
d="m 1574.9157,2373.8958 33.6282,7.2554"
|
|
304
|
+
id="path12882" />
|
|
305
|
+
<path
|
|
306
|
+
inkscape:connector-curvature="0"
|
|
307
|
+
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
308
|
+
d="m 1492.5121,2295.941 61.203,-6.8478"
|
|
309
|
+
id="path12884" />
|
|
310
|
+
<path
|
|
311
|
+
inkscape:connector-curvature="0"
|
|
312
|
+
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
313
|
+
d="m 1553.7151,2287.7387 36.4241,-13.5452"
|
|
314
|
+
id="path12886" />
|
|
315
|
+
<circle
|
|
316
|
+
r="7.3256478"
|
|
317
|
+
cy="1792.4095"
|
|
318
|
+
cx="1324.929"
|
|
319
|
+
style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
320
|
+
id="path12888"
|
|
321
|
+
transform="matrix(0.6234843,0,0,0.6234843,726.86911,1170.9368)" />
|
|
322
|
+
<circle
|
|
323
|
+
r="7.3256478"
|
|
324
|
+
cy="1792.4095"
|
|
325
|
+
cx="1324.929"
|
|
326
|
+
transform="matrix(0.5833906,0,0,0.5833906,837.2333,1298.2147)"
|
|
327
|
+
id="path12890"
|
|
328
|
+
style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
329
|
+
<path
|
|
330
|
+
inkscape:connector-curvature="0"
|
|
331
|
+
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
332
|
+
d="m 1609.6576,2343.739 16.404,-46.0639"
|
|
333
|
+
id="path12892" />
|
|
334
|
+
<path
|
|
335
|
+
inkscape:connector-curvature="0"
|
|
336
|
+
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
337
|
+
d="m 1609.4298,2381.481 0.5696,-38.77"
|
|
338
|
+
id="path12894" />
|
|
339
|
+
<path
|
|
340
|
+
inkscape:connector-curvature="0"
|
|
341
|
+
id="path12896"
|
|
342
|
+
d="m 1502.1919,2350.0723 23.4339,-35.9573"
|
|
343
|
+
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
|
344
|
+
<path
|
|
345
|
+
inkscape:connector-curvature="0"
|
|
346
|
+
id="path12898"
|
|
347
|
+
d="M 1537.8572,2255.3651 1524.94,2314.115"
|
|
348
|
+
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
|
349
|
+
</g>
|
|
350
|
+
</g>
|
|
351
|
+
</g>
|
|
352
|
+
</svg>
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# Read Misc/README.valgrind in the Python sources for a thorough explanation
|
|
2
|
+
#
|
|
3
|
+
# In short: We need these unless we compile python without pyalloc,
|
|
4
|
+
# but that would be prohibitively slow.
|
|
5
|
+
|
|
6
|
+
# Upstream has these commented out in python.supp:
|
|
7
|
+
|
|
8
|
+
{
|
|
9
|
+
ADDRESS_IN_RANGE/Invalid read of size 4
|
|
10
|
+
Memcheck:Addr4
|
|
11
|
+
fun:PyObject_Free
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
{
|
|
15
|
+
ADDRESS_IN_RANGE/Invalid read of size 4
|
|
16
|
+
Memcheck:Value4
|
|
17
|
+
fun:PyObject_Free
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
{
|
|
21
|
+
ADDRESS_IN_RANGE/Conditional jump or move depends on uninitialised value
|
|
22
|
+
Memcheck:Cond
|
|
23
|
+
fun:PyObject_Free
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
{
|
|
27
|
+
ADDRESS_IN_RANGE/Invalid read of size 4
|
|
28
|
+
Memcheck:Addr4
|
|
29
|
+
fun:PyObject_Realloc
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
{
|
|
33
|
+
ADDRESS_IN_RANGE/Invalid read of size 4
|
|
34
|
+
Memcheck:Value4
|
|
35
|
+
fun:PyObject_Realloc
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
{
|
|
39
|
+
ADDRESS_IN_RANGE/Conditional jump or move depends on uninitialised value
|
|
40
|
+
Memcheck:Cond
|
|
41
|
+
fun:PyObject_Realloc
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
# These also happen in Python 2.7.8, pretty sure they are just pyalloc
|
|
46
|
+
# artifacts as well:
|
|
47
|
+
|
|
48
|
+
{
|
|
49
|
+
Spurious "Use of uninitialised value of size 8"
|
|
50
|
+
Memcheck:Value8
|
|
51
|
+
fun:PyObject_Free
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
{
|
|
55
|
+
Spurious "Use of uninitialised value of size 8"
|
|
56
|
+
Memcheck:Value8
|
|
57
|
+
fun:PyObject_Realloc
|
|
58
|
+
}
|