passagemath-repl 10.5.27__py3-none-any.whl → 10.5.29__py3-none-any.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 (96) hide show
  1. passagemath_repl-10.5.29.data/data/share/jupyter/kernels/sagemath/kernel.json +1 -0
  2. passagemath_repl-10.5.29.data/data/share/jupyter/kernels/sagemath/logo-64x64.png +0 -0
  3. passagemath_repl-10.5.29.data/data/share/jupyter/kernels/sagemath/logo.svg +352 -0
  4. {passagemath_repl-10.5.27.dist-info → passagemath_repl-10.5.29.dist-info}/METADATA +38 -13
  5. {passagemath_repl-10.5.27.dist-info → passagemath_repl-10.5.29.dist-info}/RECORD +95 -24
  6. {passagemath_repl-10.5.27.dist-info → passagemath_repl-10.5.29.dist-info}/top_level.txt +1 -0
  7. sage/ext_data/all__sagemath_repl.py +1 -0
  8. sage/interfaces/all__sagemath_repl.py +1 -0
  9. sage/repl/ipython_kernel/install.py +6 -8
  10. sage/tests/books/__init__.py +2 -0
  11. sage/tests/books/computational-mathematics-with-sagemath/__init__.py +1 -0
  12. sage/tests/books/computational-mathematics-with-sagemath/calculus_doctest.py +549 -0
  13. sage/tests/books/computational-mathematics-with-sagemath/combinat_doctest.py +1053 -0
  14. sage/tests/books/computational-mathematics-with-sagemath/domaines_doctest.py +443 -0
  15. sage/tests/books/computational-mathematics-with-sagemath/float_doctest.py +477 -0
  16. sage/tests/books/computational-mathematics-with-sagemath/graphique_doctest.py +254 -0
  17. sage/tests/books/computational-mathematics-with-sagemath/graphtheory_doctest.py +418 -0
  18. sage/tests/books/computational-mathematics-with-sagemath/integration_doctest.py +290 -0
  19. sage/tests/books/computational-mathematics-with-sagemath/linalg_doctest.py +454 -0
  20. sage/tests/books/computational-mathematics-with-sagemath/linsolve_doctest.py +421 -0
  21. sage/tests/books/computational-mathematics-with-sagemath/lp_doctest.py +234 -0
  22. sage/tests/books/computational-mathematics-with-sagemath/mpoly_doctest.py +560 -0
  23. sage/tests/books/computational-mathematics-with-sagemath/nonlinear_doctest.py +490 -0
  24. sage/tests/books/computational-mathematics-with-sagemath/numbertheory_doctest.py +155 -0
  25. sage/tests/books/computational-mathematics-with-sagemath/polynomes_doctest.py +405 -0
  26. sage/tests/books/computational-mathematics-with-sagemath/premierspas_doctest.py +180 -0
  27. sage/tests/books/computational-mathematics-with-sagemath/programmation_doctest.py +662 -0
  28. sage/tests/books/computational-mathematics-with-sagemath/recequadiff_doctest.py +392 -0
  29. sage/tests/books/computational-mathematics-with-sagemath/sol/__init__.py +1 -0
  30. sage/tests/books/computational-mathematics-with-sagemath/sol/calculus_doctest.py +264 -0
  31. sage/tests/books/computational-mathematics-with-sagemath/sol/combinat_doctest.py +217 -0
  32. sage/tests/books/computational-mathematics-with-sagemath/sol/domaines_doctest.py +59 -0
  33. sage/tests/books/computational-mathematics-with-sagemath/sol/float_doctest.py +141 -0
  34. sage/tests/books/computational-mathematics-with-sagemath/sol/graphique_doctest.py +105 -0
  35. sage/tests/books/computational-mathematics-with-sagemath/sol/graphtheory_doctest.py +53 -0
  36. sage/tests/books/computational-mathematics-with-sagemath/sol/integration_doctest.py +56 -0
  37. sage/tests/books/computational-mathematics-with-sagemath/sol/linalg_doctest.py +56 -0
  38. sage/tests/books/computational-mathematics-with-sagemath/sol/linsolve_doctest.py +25 -0
  39. sage/tests/books/computational-mathematics-with-sagemath/sol/lp_doctest.py +47 -0
  40. sage/tests/books/computational-mathematics-with-sagemath/sol/mpoly_doctest.py +115 -0
  41. sage/tests/books/computational-mathematics-with-sagemath/sol/nonlinear_doctest.py +111 -0
  42. sage/tests/books/computational-mathematics-with-sagemath/sol/numbertheory_doctest.py +167 -0
  43. sage/tests/books/computational-mathematics-with-sagemath/sol/polynomes_doctest.py +107 -0
  44. sage/tests/books/computational-mathematics-with-sagemath/sol/recequadiff_doctest.py +58 -0
  45. sage/tests/books/judson-abstract-algebra/__init__.py +1 -0
  46. sage/tests/books/judson-abstract-algebra/actions-sage-exercises.py +51 -0
  47. sage/tests/books/judson-abstract-algebra/actions-sage.py +173 -0
  48. sage/tests/books/judson-abstract-algebra/algcodes-sage.py +130 -0
  49. sage/tests/books/judson-abstract-algebra/boolean-sage.py +269 -0
  50. sage/tests/books/judson-abstract-algebra/cosets-sage-exercises.py +87 -0
  51. sage/tests/books/judson-abstract-algebra/cosets-sage.py +170 -0
  52. sage/tests/books/judson-abstract-algebra/crypt-sage.py +151 -0
  53. sage/tests/books/judson-abstract-algebra/cyclic-sage.py +450 -0
  54. sage/tests/books/judson-abstract-algebra/domains-sage.py +163 -0
  55. sage/tests/books/judson-abstract-algebra/fields-sage.py +299 -0
  56. sage/tests/books/judson-abstract-algebra/finite-sage.py +108 -0
  57. sage/tests/books/judson-abstract-algebra/galois-sage.py +484 -0
  58. sage/tests/books/judson-abstract-algebra/groups-sage.py +280 -0
  59. sage/tests/books/judson-abstract-algebra/homomorph-sage-exercises.py +65 -0
  60. sage/tests/books/judson-abstract-algebra/homomorph-sage.py +200 -0
  61. sage/tests/books/judson-abstract-algebra/integers-sage.py +197 -0
  62. sage/tests/books/judson-abstract-algebra/isomorph-sage.py +172 -0
  63. sage/tests/books/judson-abstract-algebra/normal-sage.py +133 -0
  64. sage/tests/books/judson-abstract-algebra/permute-sage.py +319 -0
  65. sage/tests/books/judson-abstract-algebra/poly-sage.py +300 -0
  66. sage/tests/books/judson-abstract-algebra/rings-sage.py +413 -0
  67. sage/tests/books/judson-abstract-algebra/sets-sage.py +163 -0
  68. sage/tests/books/judson-abstract-algebra/struct-sage.py +63 -0
  69. sage/tests/books/judson-abstract-algebra/sylow-sage.py +250 -0
  70. sage/tests/books/judson-abstract-algebra/vect-sage-exercises.py +48 -0
  71. sage/tests/books/judson-abstract-algebra/vect-sage.py +211 -0
  72. sage/tests/memcheck/__init__.py +1 -0
  73. sage/tests/memcheck/run_tests.py +25 -0
  74. sage/tests/memcheck/run_tests_in_valgrind.py +36 -0
  75. sage/tests/memcheck/symbolic_expression.py +12 -0
  76. sage/tests/memcheck/verify_no_leak.py +28 -0
  77. sage/tests/all.py +0 -0
  78. {passagemath_repl-10.5.27.data → passagemath_repl-10.5.29.data}/scripts/sage-cachegrind +0 -0
  79. {passagemath_repl-10.5.27.data → passagemath_repl-10.5.29.data}/scripts/sage-callgrind +0 -0
  80. {passagemath_repl-10.5.27.data → passagemath_repl-10.5.29.data}/scripts/sage-cleaner +0 -0
  81. {passagemath_repl-10.5.27.data → passagemath_repl-10.5.29.data}/scripts/sage-coverage +0 -0
  82. {passagemath_repl-10.5.27.data → passagemath_repl-10.5.29.data}/scripts/sage-eval +0 -0
  83. {passagemath_repl-10.5.27.data → passagemath_repl-10.5.29.data}/scripts/sage-fixdoctests +0 -0
  84. {passagemath_repl-10.5.27.data → passagemath_repl-10.5.29.data}/scripts/sage-inline-fortran +0 -0
  85. {passagemath_repl-10.5.27.data → passagemath_repl-10.5.29.data}/scripts/sage-ipynb2rst +0 -0
  86. {passagemath_repl-10.5.27.data → passagemath_repl-10.5.29.data}/scripts/sage-ipython +0 -0
  87. {passagemath_repl-10.5.27.data → passagemath_repl-10.5.29.data}/scripts/sage-massif +0 -0
  88. {passagemath_repl-10.5.27.data → passagemath_repl-10.5.29.data}/scripts/sage-notebook +0 -0
  89. {passagemath_repl-10.5.27.data → passagemath_repl-10.5.29.data}/scripts/sage-omega +0 -0
  90. {passagemath_repl-10.5.27.data → passagemath_repl-10.5.29.data}/scripts/sage-preparse +0 -0
  91. {passagemath_repl-10.5.27.data → passagemath_repl-10.5.29.data}/scripts/sage-run +0 -0
  92. {passagemath_repl-10.5.27.data → passagemath_repl-10.5.29.data}/scripts/sage-run-cython +0 -0
  93. {passagemath_repl-10.5.27.data → passagemath_repl-10.5.29.data}/scripts/sage-runtests +0 -0
  94. {passagemath_repl-10.5.27.data → passagemath_repl-10.5.29.data}/scripts/sage-startuptime.py +0 -0
  95. {passagemath_repl-10.5.27.data → passagemath_repl-10.5.29.data}/scripts/sage-valgrind +0 -0
  96. {passagemath_repl-10.5.27.dist-info → passagemath_repl-10.5.29.dist-info}/WHEEL +0 -0
@@ -0,0 +1 @@
1
+ {"argv": ["python3", "-m", "sage.repl.ipython_kernel", "-f", "{connection_file}"], "display_name": "passagemath 10.5.29", "language": "sage"}
@@ -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>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: passagemath-repl
3
- Version: 10.5.27
3
+ Version: 10.5.29
4
4
  Summary: passagemath: IPython kernel, Sage preparser, doctester
5
5
  Author-email: The Sage Developers <sage-support@googlegroups.com>
6
6
  Maintainer: Matthias Köppe, passagemath contributors
@@ -29,8 +29,8 @@ Classifier: Programming Language :: Python :: Implementation :: CPython
29
29
  Classifier: Topic :: Scientific/Engineering :: Mathematics
30
30
  Requires-Python: <3.14,>=3.9
31
31
  Description-Content-Type: text/x-rst
32
- Requires-Dist: passagemath-objects~=10.5.27.0
33
- Requires-Dist: passagemath-environment~=10.5.27.0
32
+ Requires-Dist: passagemath-objects~=10.5.29.0
33
+ Requires-Dist: passagemath-environment~=10.5.29.0
34
34
  Requires-Dist: ipykernel>=5.2.1
35
35
  Requires-Dist: ipython>=7.13.0
36
36
  Requires-Dist: ipywidgets>=7.5.1
@@ -43,21 +43,46 @@ Requires-Dist: sphinx<9,>=5.2; extra == "sphinx"
43
43
  passagemath: IPython kernel, Sage preparser, doctester
44
44
  ===================================================================================
45
45
 
46
- About SageMath
47
- --------------
46
+ `passagemath <https://github.com/passagemath/passagemath>`__ is open
47
+ source mathematical software in Python, released under the GNU General
48
+ Public Licence GPLv2+.
48
49
 
49
- "Creating a Viable Open Source Alternative to
50
- Magma, Maple, Mathematica, and MATLAB"
50
+ It is a fork of `SageMath <https://www.sagemath.org/>`__, which has been
51
+ developed 2005-2025 under the motto “Creating a Viable Open Source
52
+ Alternative to Magma, Maple, Mathematica, and MATLAB”.
51
53
 
52
- Copyright (C) 2005-2024 The Sage Development Team
54
+ The passagemath fork was created in October 2024 with the following
55
+ goals:
53
56
 
54
- https://www.sagemath.org
57
+ - providing modularized installation with pip, thus completing a `major
58
+ project started in 2020 in the Sage
59
+ codebase <https://github.com/sagemath/sage/issues/29705>`__,
60
+ - establishing first-class membership in the scientific Python
61
+ ecosystem,
62
+ - giving `clear attribution of upstream
63
+ projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,
64
+ - providing independently usable Python interfaces to upstream
65
+ libraries,
66
+ - providing `platform portability and integration testing
67
+ services <https://github.com/passagemath/passagemath/issues/704>`__
68
+ to upstream projects,
69
+ - inviting collaborations with upstream projects,
70
+ - `building a professional, respectful, inclusive
71
+ community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
72
+ - developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
73
+ serverless deployment with Javascript,
74
+ - developing a native Windows port.
55
75
 
56
- SageMath fully supports all major Linux distributions, recent versions of
57
- macOS, and Windows (Windows Subsystem for Linux).
76
+ `Full documentation <https://doc.sagemath.org/html/en/index.html>`__ is
77
+ available online.
58
78
 
59
- See https://doc.sagemath.org/html/en/installation/index.html
60
- for general installation instructions.
79
+ passagemath attempts to support all major Linux distributions and recent versions of
80
+ macOS. Use on Windows currently requires the use of Windows Subsystem for Linux or
81
+ virtualization.
82
+
83
+ Complete sets of binary wheels are provided on PyPI for Python versions 3.9.x-3.12.x.
84
+ Python 3.13.x is also supported, but some third-party packages are still missing wheels,
85
+ so compilation from source is triggered for those.
61
86
 
62
87
 
63
88
  About this pip-installable distribution package
@@ -1,21 +1,24 @@
1
- passagemath_repl-10.5.27.data/scripts/sage-cachegrind,sha256=FRrT4BoRsrATlQOrXALHAbDI_KLhz0XuDOD6xzECEl8,651
2
- passagemath_repl-10.5.27.data/scripts/sage-callgrind,sha256=pWhrI8NsVa_XSuay052htjxcM3thrpX8rI6Uj_pK5Uo,442
3
- passagemath_repl-10.5.27.data/scripts/sage-cleaner,sha256=vM0CkzbxiSCE0Z85AViQIvoxb5oUz5WOmVOvShbLDUY,7778
4
- passagemath_repl-10.5.27.data/scripts/sage-coverage,sha256=IhvqnFvmvNJBMQtiSu5_Qy52a67hG-r3cAeyhYOOj7w,10199
5
- passagemath_repl-10.5.27.data/scripts/sage-eval,sha256=4IHv01xH34wJPj61wzcL5ufhoO6Y3UTTGz7b-0YKJFw,266
6
- passagemath_repl-10.5.27.data/scripts/sage-fixdoctests,sha256=cTWoFr9rAdOF-xeW6ytNeX3EzhKcs1mTN4UilP4kiGg,36877
7
- passagemath_repl-10.5.27.data/scripts/sage-inline-fortran,sha256=T3U943WNPKrxQJuanBhTpXU3jJ5vjaXd56R8yWv_8PM,234
8
- passagemath_repl-10.5.27.data/scripts/sage-ipynb2rst,sha256=PynBPdthnpwGbILDRA38IwpT319Ze-g8UMmWaaTnimQ,1345
9
- passagemath_repl-10.5.27.data/scripts/sage-ipython,sha256=RYYd8-gmE5JE_-dCkOSDpC6rRsX6i6tma3pqgmXYJvM,342
10
- passagemath_repl-10.5.27.data/scripts/sage-massif,sha256=Tfqb6ON9d0OZnt6VlGS21asbdMq8zWzx8ZnvV1n_buI,613
11
- passagemath_repl-10.5.27.data/scripts/sage-notebook,sha256=QJ1Y4eTptc6TbNVXZswpcsn-NqaQNuSwjWE-lYmGpW8,8453
12
- passagemath_repl-10.5.27.data/scripts/sage-omega,sha256=4ARnHyZyB69ltxHj9xYpzad_YCBT3Nk0Wq3Ke09gExM,595
13
- passagemath_repl-10.5.27.data/scripts/sage-preparse,sha256=3L1KKgvSApvoK467Wza0S4WQLCXiYvivrhDKIvA1omc,10595
14
- passagemath_repl-10.5.27.data/scripts/sage-run,sha256=F1oAgPN7Kh5dO1smCyfGVT0Dy46NQ_dQ3OQZ8Wa6foM,689
15
- passagemath_repl-10.5.27.data/scripts/sage-run-cython,sha256=02mTGXokayRxISoCWWsDcKZwGrmh5B0mJJxTT87J01Q,235
16
- passagemath_repl-10.5.27.data/scripts/sage-runtests,sha256=nUvI3fCrBjqPUict01wIxwYPjvaZf4ttLp85tavUEpY,111
17
- passagemath_repl-10.5.27.data/scripts/sage-startuptime.py,sha256=RtIuC7jM3SOwROXTa6nnpJhzK0sQ24nDqyE6zXpCWEI,6209
18
- passagemath_repl-10.5.27.data/scripts/sage-valgrind,sha256=fZxy00oXU4PpHf_wc2uYKb7lzqSBY4VkhUxiuvXHKhA,1201
1
+ passagemath_repl-10.5.29.data/data/share/jupyter/kernels/sagemath/kernel.json,sha256=osXrNFS80AMPXno0piegYBpsce-zzmVdDze58I6Fghk,141
2
+ passagemath_repl-10.5.29.data/data/share/jupyter/kernels/sagemath/logo-64x64.png,sha256=pE3myKl2ywp6zDUD0JiMs-lvAk6T4O3z5PdEC_B0ZL4,3421
3
+ passagemath_repl-10.5.29.data/data/share/jupyter/kernels/sagemath/logo.svg,sha256=C9lkyX-_DqtTKOlcLFRu36k7scdBufRnYdy4AMHa7GQ,19074
4
+ passagemath_repl-10.5.29.data/scripts/sage-cachegrind,sha256=FRrT4BoRsrATlQOrXALHAbDI_KLhz0XuDOD6xzECEl8,651
5
+ passagemath_repl-10.5.29.data/scripts/sage-callgrind,sha256=pWhrI8NsVa_XSuay052htjxcM3thrpX8rI6Uj_pK5Uo,442
6
+ passagemath_repl-10.5.29.data/scripts/sage-cleaner,sha256=vM0CkzbxiSCE0Z85AViQIvoxb5oUz5WOmVOvShbLDUY,7778
7
+ passagemath_repl-10.5.29.data/scripts/sage-coverage,sha256=IhvqnFvmvNJBMQtiSu5_Qy52a67hG-r3cAeyhYOOj7w,10199
8
+ passagemath_repl-10.5.29.data/scripts/sage-eval,sha256=4IHv01xH34wJPj61wzcL5ufhoO6Y3UTTGz7b-0YKJFw,266
9
+ passagemath_repl-10.5.29.data/scripts/sage-fixdoctests,sha256=cTWoFr9rAdOF-xeW6ytNeX3EzhKcs1mTN4UilP4kiGg,36877
10
+ passagemath_repl-10.5.29.data/scripts/sage-inline-fortran,sha256=T3U943WNPKrxQJuanBhTpXU3jJ5vjaXd56R8yWv_8PM,234
11
+ passagemath_repl-10.5.29.data/scripts/sage-ipynb2rst,sha256=PynBPdthnpwGbILDRA38IwpT319Ze-g8UMmWaaTnimQ,1345
12
+ passagemath_repl-10.5.29.data/scripts/sage-ipython,sha256=RYYd8-gmE5JE_-dCkOSDpC6rRsX6i6tma3pqgmXYJvM,342
13
+ passagemath_repl-10.5.29.data/scripts/sage-massif,sha256=Tfqb6ON9d0OZnt6VlGS21asbdMq8zWzx8ZnvV1n_buI,613
14
+ passagemath_repl-10.5.29.data/scripts/sage-notebook,sha256=QJ1Y4eTptc6TbNVXZswpcsn-NqaQNuSwjWE-lYmGpW8,8453
15
+ passagemath_repl-10.5.29.data/scripts/sage-omega,sha256=4ARnHyZyB69ltxHj9xYpzad_YCBT3Nk0Wq3Ke09gExM,595
16
+ passagemath_repl-10.5.29.data/scripts/sage-preparse,sha256=3L1KKgvSApvoK467Wza0S4WQLCXiYvivrhDKIvA1omc,10595
17
+ passagemath_repl-10.5.29.data/scripts/sage-run,sha256=F1oAgPN7Kh5dO1smCyfGVT0Dy46NQ_dQ3OQZ8Wa6foM,689
18
+ passagemath_repl-10.5.29.data/scripts/sage-run-cython,sha256=02mTGXokayRxISoCWWsDcKZwGrmh5B0mJJxTT87J01Q,235
19
+ passagemath_repl-10.5.29.data/scripts/sage-runtests,sha256=nUvI3fCrBjqPUict01wIxwYPjvaZf4ttLp85tavUEpY,111
20
+ passagemath_repl-10.5.29.data/scripts/sage-startuptime.py,sha256=RtIuC7jM3SOwROXTa6nnpJhzK0sQ24nDqyE6zXpCWEI,6209
21
+ passagemath_repl-10.5.29.data/scripts/sage-valgrind,sha256=fZxy00oXU4PpHf_wc2uYKb7lzqSBY4VkhUxiuvXHKhA,1201
19
22
  sage/all__sagemath_repl.py,sha256=z6lERTYuw3I4LQ7-hnEYbY1i-hMJj2uAm2ujOmWitSo,5713
20
23
  sage/doctest/__init__.py,sha256=JJMNkq7Rh3gCshtynqXDTLJgUKweNFlUhpnbvTLRMwg,166
21
24
  sage/doctest/__main__.py,sha256=wGVNiaPbhQwzoAs3Y1xhYBlB18pBieEDhi71ggF8NkQ,13647
@@ -50,6 +53,8 @@ sage/doctest/tests/sig_on.rst,sha256=X-23CRNz0OKPyYLz7hIiPpIuhO-2ej4hEOOfR6Qheb0
50
53
  sage/doctest/tests/simple_failure.rst,sha256=063m5EMsTntr40npoAP4OYddiq9cPIA0WrcvjmBsI2Y,110
51
54
  sage/doctest/tests/sleep_and_raise.rst,sha256=QXRNJ5-kGU86KGNMVQZiJvxbMZxqf7dWzhjtjrPtZEY,900
52
55
  sage/doctest/tests/tolerance.rst,sha256=D5MeN4ZUkkTdQMEpYEtElPdQ-8p7DG-4LzOEnSsmapg,747
56
+ sage/ext_data/all__sagemath_repl.py,sha256=6mNw0BEw6mZsoOi004elrLvD4m4RffLmgY921IwsNXk,43
57
+ sage/interfaces/all__sagemath_repl.py,sha256=6mNw0BEw6mZsoOi004elrLvD4m4RffLmgY921IwsNXk,43
53
58
  sage/interfaces/cleaner.py,sha256=sd8_F8xGC7OMSoWcCPL3VAOPOuXZAOZu0ys1FExKYjQ,1560
54
59
  sage/interfaces/quit.py,sha256=iKuZ8m98g_2CNF4J9pfc-0KbE0HAadFZxwHPSydbrcA,5935
55
60
  sage/misc/all__sagemath_repl.py,sha256=Qxsf_bNAVB4CScgVoD0Lb9_RFwdK8BI3S0aqjFBz88c,1791
@@ -96,7 +101,7 @@ sage/repl/display/util.py,sha256=fL0GUr7NcB_AbWUFAgrADcyq212eEqJi0toEdJaVyFk,600
96
101
  sage/repl/ipython_kernel/__init__.py,sha256=6mNw0BEw6mZsoOi004elrLvD4m4RffLmgY921IwsNXk,43
97
102
  sage/repl/ipython_kernel/__main__.py,sha256=lS2SaEWCtM5I5LykXB0FBQA-5XIVkolXMpRSTSnMP8w,195
98
103
  sage/repl/ipython_kernel/all_jupyter.py,sha256=hpNw0ZQK89PkavLZD0UWqgPcA4AneXEIc5VOztOxLkA,364
99
- sage/repl/ipython_kernel/install.py,sha256=Em9WxtSjX1iLcyXTQ6oXlR1zFfWAvKZYMBduTchTr-Q,9543
104
+ sage/repl/ipython_kernel/install.py,sha256=A-wxTNFxN7xGMbutT5e9xr-5sdfZz9X24zgzxM1SGSo,9495
100
105
  sage/repl/ipython_kernel/interact.py,sha256=I5mckNe8bwOVhGexvNutXR3KwlY0WhwHPBzOked692A,11578
101
106
  sage/repl/ipython_kernel/kernel.py,sha256=uFQUDxGPtcLcP0YjNvFvLHNM-IIqPTpjG0sX4kF_pYs,7117
102
107
  sage/repl/ipython_kernel/widgets.py,sha256=8AVDJcqNDRyZ7avLaIUAf79U4DOPlYglPAPDTjL2lZI,14853
@@ -135,7 +140,6 @@ sage/repl/rich_output/output_video.py,sha256=4-yQKBCr785qnb2Hdp2E8Ds39WbhNI5moHT
135
140
  sage/repl/rich_output/preferences.py,sha256=AQNOC0RrkcVXsvMAfyAw1IJJgbG6Xd2YjAUt_LPzcJU,12896
136
141
  sage/repl/rich_output/pretty_print.py,sha256=jtyu24T9vhStc74fRXKZFD5XAR8e3LJWs10kNK5V4fk,11057
137
142
  sage/repl/rich_output/test_backend.py,sha256=lWvrkhnjXBMw4kAoBW2F0qJXRXk-tBnbQj1MJKHVH0A,6607
138
- sage/tests/all.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
139
143
  sage/tests/all__sagemath_repl.py,sha256=U0L7QUQRA5DQQ1cqv8tjHB1fr4uXj_q6q_H6e44PTh0,51
140
144
  sage/tests/article_heuberger_krenn_kropf_fsm-in-sage.py,sha256=bam9TtDj7Wic1Fs5XL3TOX0G4svjBqF7jmAa4vnWZsQ,19928
141
145
  sage/tests/arxiv_0812_2725.py,sha256=x1oO2O50QnrCm-zK2Wopzr5SnOlRz0LzNUo_AUORdZE,9942
@@ -156,7 +160,74 @@ sage/tests/startup.py,sha256=G8Co8afXEC1FO9pyFlryBzLXXwY40_BcWrimaPadw3w,1185
156
160
  sage/tests/symbolic-series.py,sha256=5WlGSwW4eq-Ydev0jYtLDtuk1KCIJ7QCNE0IhZpc37Q,2991
157
161
  sage/tests/sympy.py,sha256=SGzxN4faL0Y3lokTYV_n_IYjf65pc1foBfLbxDhPDgk,431
158
162
  sage/tests/test_deprecation.py,sha256=Y2uvLozCshTPhQgfAxT_pAkkgX5Q16yJwQ0CleKHDJw,917
159
- passagemath_repl-10.5.27.dist-info/METADATA,sha256=OixcRnTroLdXra9ovU9yb-6Daqgma8V7H-Vfr4PYFEw,3257
160
- passagemath_repl-10.5.27.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
161
- passagemath_repl-10.5.27.dist-info/top_level.txt,sha256=hibFyzQHiLOMK68qL1OWsNKaXOmSXqZjeLTBem6Yy7I,5
162
- passagemath_repl-10.5.27.dist-info/RECORD,,
163
+ sage/tests/books/__init__.py,sha256=7FeABQKWv91MY03iyMjh0SjIIvwreXZPjgmpIlP7OjE,97
164
+ sage/tests/books/computational-mathematics-with-sagemath/__init__.py,sha256=6mNw0BEw6mZsoOi004elrLvD4m4RffLmgY921IwsNXk,43
165
+ sage/tests/books/computational-mathematics-with-sagemath/calculus_doctest.py,sha256=SOeQAKGIA7Ou4OkqtZtVl4OfDmOArpjyeiEWVpwXllk,14273
166
+ sage/tests/books/computational-mathematics-with-sagemath/combinat_doctest.py,sha256=wlHLs4nVUq2GBuxbfhnDa30OF0TxL4o5nn1PGceN0_k,28306
167
+ sage/tests/books/computational-mathematics-with-sagemath/domaines_doctest.py,sha256=0A9YWxwR0K_Bq1uTdoGIzoaT_KBxFNvb6yWAhRE4hmA,10244
168
+ sage/tests/books/computational-mathematics-with-sagemath/float_doctest.py,sha256=lpsP8mhctlRu5YQ2yyQlEjPgZFNHDDGviylOS4T4mf0,11617
169
+ sage/tests/books/computational-mathematics-with-sagemath/graphique_doctest.py,sha256=aZpqqauhu1e7NidG5JQH3gVvDnC4frz5iZcqezj6GAU,9725
170
+ sage/tests/books/computational-mathematics-with-sagemath/graphtheory_doctest.py,sha256=0vITZoUXcCgbBTzzeUXiKvAGC8sZkUBephumrMKI6m0,12787
171
+ sage/tests/books/computational-mathematics-with-sagemath/integration_doctest.py,sha256=G4ySxF7V-w4zK0Hl5l2vXKOJjy20Y-Oi_MNnnocuQPE,9085
172
+ sage/tests/books/computational-mathematics-with-sagemath/linalg_doctest.py,sha256=6_tStGLF9t034LEOj309xM-IR8ng6Jqm91IWwSEJGtw,11888
173
+ sage/tests/books/computational-mathematics-with-sagemath/linsolve_doctest.py,sha256=G8MD8eTlbahSz2pfyS4UTRPgNg3MdYkA0jRvlzZsLkY,13431
174
+ sage/tests/books/computational-mathematics-with-sagemath/lp_doctest.py,sha256=jz_lqmH1ZKbJzDCmrBgVgCAc54PDF0hJdNT3JQkoFEE,6372
175
+ sage/tests/books/computational-mathematics-with-sagemath/mpoly_doctest.py,sha256=TTVmJ2RQ-CNjcmSECSYhfEZuhr0YTa5cOppHVAl7lq8,15252
176
+ sage/tests/books/computational-mathematics-with-sagemath/nonlinear_doctest.py,sha256=O4tDV7MtCxcuNSkTFnHHy1U0VYtou4Y8sVPCLDTpIs0,15948
177
+ sage/tests/books/computational-mathematics-with-sagemath/numbertheory_doctest.py,sha256=bFuWjYBuuSZuAGrfHGrmiuTe3HyhWQfZm3pOo9gQs3Q,4236
178
+ sage/tests/books/computational-mathematics-with-sagemath/polynomes_doctest.py,sha256=F4TDw67HWKW5a3QtB6ZvTIzDgcQsayDTqbM6lAkvuYE,12128
179
+ sage/tests/books/computational-mathematics-with-sagemath/premierspas_doctest.py,sha256=wZagSqzeKAyOCtf3VcB66FOHfek_GLQg2xdZ6CU13FE,3360
180
+ sage/tests/books/computational-mathematics-with-sagemath/programmation_doctest.py,sha256=zZC83HAyezjVqTqPWWryTHVXBiV80IhE4JtnefJOZJg,17801
181
+ sage/tests/books/computational-mathematics-with-sagemath/recequadiff_doctest.py,sha256=IZe_INRvkdw16Q-KeqDwuvoZHLb_Qap1hO3wEj-PlbQ,11613
182
+ sage/tests/books/computational-mathematics-with-sagemath/sol/__init__.py,sha256=6mNw0BEw6mZsoOi004elrLvD4m4RffLmgY921IwsNXk,43
183
+ sage/tests/books/computational-mathematics-with-sagemath/sol/calculus_doctest.py,sha256=FDUXADTmjLFZ2jRuoqmKFJmRiL3HvmSDOQUQ4ahitcI,8687
184
+ sage/tests/books/computational-mathematics-with-sagemath/sol/combinat_doctest.py,sha256=xZj44vzr_bmD6n0EMbQR7I_fZoJ6tvnTIos-MSqGdm8,6008
185
+ sage/tests/books/computational-mathematics-with-sagemath/sol/domaines_doctest.py,sha256=uEuVKMuxopaUobEsdnSbrxVdm-QKOEtPuQ5Wcg4_0ks,2118
186
+ sage/tests/books/computational-mathematics-with-sagemath/sol/float_doctest.py,sha256=oyZEd5I7XpR7lqBeqywCrUoYs97te1qjhHMZscTtfZo,3687
187
+ sage/tests/books/computational-mathematics-with-sagemath/sol/graphique_doctest.py,sha256=x9bGAlyjKOhQSjk0RMhMtng5SIjYuxJRYIfD_RUlfCE,4391
188
+ sage/tests/books/computational-mathematics-with-sagemath/sol/graphtheory_doctest.py,sha256=G4aIjuCPkQe9QQ9EaQbbpfBSAhT5akmZ53Y8BxlP5F0,1593
189
+ sage/tests/books/computational-mathematics-with-sagemath/sol/integration_doctest.py,sha256=rD6HVNXoaUmJx6bJPjP2hYkDcy_gD76dYOtqnWbmqFU,1911
190
+ sage/tests/books/computational-mathematics-with-sagemath/sol/linalg_doctest.py,sha256=K7nu55SzkJoYmB5RL7cEHkJlifeQMkStVXGmFYc1Svo,2268
191
+ sage/tests/books/computational-mathematics-with-sagemath/sol/linsolve_doctest.py,sha256=-7wOv4H9w_d-5VY9YrwvhbGNrFETma0FwnI6srUqU6M,767
192
+ sage/tests/books/computational-mathematics-with-sagemath/sol/lp_doctest.py,sha256=yiBM2WZobJMKDP0VPW6-v7pn6RfeCc6aZcAdVbb7ACw,1581
193
+ sage/tests/books/computational-mathematics-with-sagemath/sol/mpoly_doctest.py,sha256=C0QYnj8e20_GF-De-cANR9V0CUFy7-8NdJjDm-sGhds,3676
194
+ sage/tests/books/computational-mathematics-with-sagemath/sol/nonlinear_doctest.py,sha256=nT_I2ylnsEapXgZdxpeLG5EO0kbMmZEYcyYesrG3qXM,3810
195
+ sage/tests/books/computational-mathematics-with-sagemath/sol/numbertheory_doctest.py,sha256=1KGCAq6XPOhIZRJeTGeB-B_9u1mEjxmsX2F5cu4sO-o,6090
196
+ sage/tests/books/computational-mathematics-with-sagemath/sol/polynomes_doctest.py,sha256=53lQ-gJROkzoXluV6h1jznXUHcrLUUBSY9W71FuWtlE,3482
197
+ sage/tests/books/computational-mathematics-with-sagemath/sol/recequadiff_doctest.py,sha256=bUjYhdV-LknXT9Z4WTRqVu8V0kogz5vwQYhKmsOdPyQ,1820
198
+ sage/tests/books/judson-abstract-algebra/__init__.py,sha256=6mNw0BEw6mZsoOi004elrLvD4m4RffLmgY921IwsNXk,43
199
+ sage/tests/books/judson-abstract-algebra/actions-sage-exercises.py,sha256=LNjP616Achw_mDb_SgbiiC8reG_C8zQkSU4-95VZWcc,1584
200
+ sage/tests/books/judson-abstract-algebra/actions-sage.py,sha256=G8M8OzzSBncAj9-PPCeCvfANxQc9n8m3nOY5N2zS_do,4207
201
+ sage/tests/books/judson-abstract-algebra/algcodes-sage.py,sha256=MCWF5b_4pZbXjc1OrO_tOEXgYxlS5HauPB2tAYcnGJc,3209
202
+ sage/tests/books/judson-abstract-algebra/boolean-sage.py,sha256=FODcYLA44TPaM40H26uqb35_YZaQgVlSDSmZPHlNArI,5965
203
+ sage/tests/books/judson-abstract-algebra/cosets-sage-exercises.py,sha256=BGpjBCwAGhwCS6V3IL3eXEehbSRzFNOb3X6cZ3cQNaM,2149
204
+ sage/tests/books/judson-abstract-algebra/cosets-sage.py,sha256=FOQyX1SaSlguzSil6DMTePD7fW_5BIw0DDaI9VB-a8o,4535
205
+ sage/tests/books/judson-abstract-algebra/crypt-sage.py,sha256=uPL592l5VBZsNo_JiRsHRdlvR5uCb8lTrgSZ3MBgGnc,3696
206
+ sage/tests/books/judson-abstract-algebra/cyclic-sage.py,sha256=6kMtwPcyHjDuZ7LiolBOrwx9B-kHxJdXGP1KpZB1lTA,8455
207
+ sage/tests/books/judson-abstract-algebra/domains-sage.py,sha256=45ztH3rE1saHgQLao_HtVH9KDRJB5HvbTdDmStsw_F8,3647
208
+ sage/tests/books/judson-abstract-algebra/fields-sage.py,sha256=tKF-WPklZEzCyA1jxj-NZU-Pbiaht8KX9u63auCwP_0,6600
209
+ sage/tests/books/judson-abstract-algebra/finite-sage.py,sha256=Gvi0vhaNvw_sN2HHMrNaE6H6UxByr6LN7_kt3PyKyNQ,2819
210
+ sage/tests/books/judson-abstract-algebra/galois-sage.py,sha256=k2oyF5UyMBaWimwDwd1ZUubbjbupyYSNYa43evrkBgE,13723
211
+ sage/tests/books/judson-abstract-algebra/groups-sage.py,sha256=GX40HItm2KcRTYPkS0qZEckHZ2tDII0cyk0d14dqxgM,6077
212
+ sage/tests/books/judson-abstract-algebra/homomorph-sage-exercises.py,sha256=OQ53mq8p8EP6xfxTNlq1EWNFFHS6YLD24b59rt5QMY8,1837
213
+ sage/tests/books/judson-abstract-algebra/homomorph-sage.py,sha256=NipNO-cKcPDjmZAMdGSRPw7leSsDLxCaJZbX2xKiQ64,5909
214
+ sage/tests/books/judson-abstract-algebra/integers-sage.py,sha256=oiZbQklYEh6TmXIIpFBPQ-uZfvEd24BJKiF-UaRQN7I,3640
215
+ sage/tests/books/judson-abstract-algebra/isomorph-sage.py,sha256=aJW6pyG_xpMvVE9B1e3TUqK3Tx3-n8jPGpX-aFD6irg,4253
216
+ sage/tests/books/judson-abstract-algebra/normal-sage.py,sha256=pnYkeqw6j6w2uBt56dRadkIQYRxzNues9L0Um3-Lpsg,3324
217
+ sage/tests/books/judson-abstract-algebra/permute-sage.py,sha256=dtnUMR27163Q_x9aoY-iAzTMz7BlIWbeogMQdMm-4io,6462
218
+ sage/tests/books/judson-abstract-algebra/poly-sage.py,sha256=Jg0OFz3HLvgVchE1xzl968LGqZ1xpcnbFzt-Xo07Xbg,5996
219
+ sage/tests/books/judson-abstract-algebra/rings-sage.py,sha256=wRjggkhnhq5wB2Z9I1HCNE56Sbezx9zWX3qwpOd8PG0,7037
220
+ sage/tests/books/judson-abstract-algebra/sets-sage.py,sha256=AY887EUkLuxqSHEbt0KrNGfXUC6XqT8dVLWQGhKDZ88,3592
221
+ sage/tests/books/judson-abstract-algebra/struct-sage.py,sha256=BdffG-KXrpSlNEh2EOrVvsG5rkD-XoCsXnoGoog8XBE,1824
222
+ sage/tests/books/judson-abstract-algebra/sylow-sage.py,sha256=f-4SfHDjCRGFpeT-9P2xPTZI1HQgJyux2vq0RaepW50,7754
223
+ sage/tests/books/judson-abstract-algebra/vect-sage-exercises.py,sha256=DDUlI-uNdvoOemCM4Vf3UlMi1bTGBI8Gg9B18reHHAM,1498
224
+ sage/tests/books/judson-abstract-algebra/vect-sage.py,sha256=tBfEzC8vQn36Xbcp7E6Fasc_cp_hnL0SVu4-4133Wr8,4907
225
+ sage/tests/memcheck/__init__.py,sha256=6mNw0BEw6mZsoOi004elrLvD4m4RffLmgY921IwsNXk,43
226
+ sage/tests/memcheck/run_tests.py,sha256=waPUB_tHk1YvSCd45BOXHeWubtA2St4ZQR-O88R3eHM,543
227
+ sage/tests/memcheck/run_tests_in_valgrind.py,sha256=Ht4-bpgRl2sH4SICRKN5S5VyMhebmCvRRz4ktOmwKFo,933
228
+ sage/tests/memcheck/symbolic_expression.py,sha256=oEFxHEpGZK8-sCr_vTiVu8bk-e5lTzp4GQSepnGN-OQ,272
229
+ sage/tests/memcheck/verify_no_leak.py,sha256=6TiUam0TTe1D_Gbaftz5uGSb8QZygRGXQow-WpVH6kg,984
230
+ passagemath_repl-10.5.29.dist-info/METADATA,sha256=Tpiq8IlG1Zfa9JUNPIpxL3zPxpsxpen18JmWoTY3sPE,4708
231
+ passagemath_repl-10.5.29.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
232
+ passagemath_repl-10.5.29.dist-info/top_level.txt,sha256=Kmzulf9WsphADFQuqgvdy5mvTLDj_V2zkFHU2s3UXos,6
233
+ passagemath_repl-10.5.29.dist-info/RECORD,,
@@ -0,0 +1 @@
1
+ # sage_setup: distribution = sagemath-repl
@@ -0,0 +1 @@
1
+ # sage_setup: distribution = sagemath-repl