passagemath-repl 10.5.37__py3-none-any.whl → 10.5.38__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.
- passagemath_repl-10.5.38.data/data/share/jupyter/kernels/sagemath/kernel.json +1 -0
- {passagemath_repl-10.5.37.data → passagemath_repl-10.5.38.data}/scripts/sage-fixdoctests +15 -1
- {passagemath_repl-10.5.37.dist-info → passagemath_repl-10.5.38.dist-info}/METADATA +4 -5
- {passagemath_repl-10.5.37.dist-info → passagemath_repl-10.5.38.dist-info}/RECORD +33 -33
- sage/repl/ipython_kernel/interact.py +1 -0
- sage/repl/ipython_kernel/widgets.py +1 -0
- sage/repl/ipython_kernel/widgets_sagenb.py +1 -0
- sage/tests/books/computational-mathematics-with-sagemath/graphtheory_doctest.py +1 -1
- sage/tests/books/computational-mathematics-with-sagemath/lp_doctest.py +1 -1
- sage/tests/books/computational-mathematics-with-sagemath/sol/mpoly_doctest.py +1 -1
- sage/tests/books/judson-abstract-algebra/cyclic-sage.py +1 -1
- sage/tests/books/judson-abstract-algebra/domains-sage.py +1 -1
- passagemath_repl-10.5.37.data/data/share/jupyter/kernels/sagemath/kernel.json +0 -1
- {passagemath_repl-10.5.37.data → passagemath_repl-10.5.38.data}/data/share/jupyter/kernels/sagemath/logo-64x64.png +0 -0
- {passagemath_repl-10.5.37.data → passagemath_repl-10.5.38.data}/data/share/jupyter/kernels/sagemath/logo.svg +0 -0
- {passagemath_repl-10.5.37.data → passagemath_repl-10.5.38.data}/scripts/sage-cachegrind +0 -0
- {passagemath_repl-10.5.37.data → passagemath_repl-10.5.38.data}/scripts/sage-callgrind +0 -0
- {passagemath_repl-10.5.37.data → passagemath_repl-10.5.38.data}/scripts/sage-cleaner +0 -0
- {passagemath_repl-10.5.37.data → passagemath_repl-10.5.38.data}/scripts/sage-coverage +0 -0
- {passagemath_repl-10.5.37.data → passagemath_repl-10.5.38.data}/scripts/sage-eval +0 -0
- {passagemath_repl-10.5.37.data → passagemath_repl-10.5.38.data}/scripts/sage-inline-fortran +0 -0
- {passagemath_repl-10.5.37.data → passagemath_repl-10.5.38.data}/scripts/sage-ipynb2rst +0 -0
- {passagemath_repl-10.5.37.data → passagemath_repl-10.5.38.data}/scripts/sage-ipython +0 -0
- {passagemath_repl-10.5.37.data → passagemath_repl-10.5.38.data}/scripts/sage-massif +0 -0
- {passagemath_repl-10.5.37.data → passagemath_repl-10.5.38.data}/scripts/sage-notebook +0 -0
- {passagemath_repl-10.5.37.data → passagemath_repl-10.5.38.data}/scripts/sage-omega +0 -0
- {passagemath_repl-10.5.37.data → passagemath_repl-10.5.38.data}/scripts/sage-preparse +0 -0
- {passagemath_repl-10.5.37.data → passagemath_repl-10.5.38.data}/scripts/sage-run +0 -0
- {passagemath_repl-10.5.37.data → passagemath_repl-10.5.38.data}/scripts/sage-run-cython +0 -0
- {passagemath_repl-10.5.37.data → passagemath_repl-10.5.38.data}/scripts/sage-runtests +0 -0
- {passagemath_repl-10.5.37.data → passagemath_repl-10.5.38.data}/scripts/sage-startuptime.py +0 -0
- {passagemath_repl-10.5.37.data → passagemath_repl-10.5.38.data}/scripts/sage-valgrind +0 -0
- {passagemath_repl-10.5.37.dist-info → passagemath_repl-10.5.38.dist-info}/WHEEL +0 -0
- {passagemath_repl-10.5.37.dist-info → passagemath_repl-10.5.38.dist-info}/top_level.txt +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
{"argv": ["python3", "-m", "sage.repl.ipython_kernel", "-f", "{connection_file}"], "display_name": "passagemath 10.5.38", "language": "sage"}
|
@@ -1,4 +1,5 @@
|
|
1
1
|
#!python
|
2
|
+
# -*- python -*-
|
2
3
|
"""
|
3
4
|
Given the output of doctest and a file, adjust the doctests so they won't fail.
|
4
5
|
|
@@ -238,6 +239,9 @@ def process_block(block, src_in_lines, file_optional_tags, venv_explainer=''):
|
|
238
239
|
return
|
239
240
|
|
240
241
|
# Error testing.
|
242
|
+
|
243
|
+
asked_why = re.search('#.*(why|explain)', src_in_lines[first_line_num - 1])
|
244
|
+
|
241
245
|
if m := re.search(r"(?:ModuleNotFoundError: No module named|ImportError: cannot import name '(.*?)' from) '(.*?)'|AttributeError: module '(.*)?' has no attribute '(.*?)'", block):
|
242
246
|
if m.group(1):
|
243
247
|
# "ImportError: cannot import name 'function_field_polymod' from 'sage.rings.function_field' (unknown location)"
|
@@ -248,7 +252,6 @@ def process_block(block, src_in_lines, file_optional_tags, venv_explainer=''):
|
|
248
252
|
else:
|
249
253
|
# AttributeError: module 'sage.rings' has no attribute 'qqbar'
|
250
254
|
module = m.group(3) + '.' + m.group(4)
|
251
|
-
asked_why = re.search('#.*(why|explain)', src_in_lines[first_line_num - 1])
|
252
255
|
optional = module_feature(module)
|
253
256
|
if optional and optional.name not in file_optional_tags:
|
254
257
|
update_line_optional_tags(first_line_num - 1, add_tags=[optional.name],
|
@@ -259,6 +262,17 @@ def process_block(block, src_in_lines, file_optional_tags, venv_explainer=''):
|
|
259
262
|
return
|
260
263
|
# Otherwise, continue and show the backtrace as 'GOT'
|
261
264
|
|
265
|
+
elif m := re.search(r"(?:FeatureNotPresentError: (.*?) is not available.)", block):
|
266
|
+
optional_name = m.group(1)
|
267
|
+
if optional_name not in file_optional_tags:
|
268
|
+
update_line_optional_tags(first_line_num - 1, add_tags=[optional_name],
|
269
|
+
message=f"Adding the tag '{optional_name}'")
|
270
|
+
if not asked_why:
|
271
|
+
# When no explanation has been demanded,
|
272
|
+
# we just mark the doctest with the feature
|
273
|
+
return
|
274
|
+
# Otherwise, continue and show the backtrace as 'GOT'
|
275
|
+
|
262
276
|
if 'Traceback (most recent call last):' in block:
|
263
277
|
|
264
278
|
expected, got = block.split('\nGot:\n')
|
@@ -1,10 +1,10 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: passagemath-repl
|
3
|
-
Version: 10.5.
|
3
|
+
Version: 10.5.38
|
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
|
7
|
-
License:
|
7
|
+
License-Expression: GPL-2.0-or-later
|
8
8
|
Project-URL: release notes, https://github.com/passagemath/passagemath/releases
|
9
9
|
Project-URL: repo (upstream), https://github.com/sagemath/sage
|
10
10
|
Project-URL: repo, https://github.com/passagemath/passagemath
|
@@ -16,7 +16,6 @@ Project-URL: tracker, https://github.com/passagemath/passagemath/issues
|
|
16
16
|
Classifier: Development Status :: 6 - Mature
|
17
17
|
Classifier: Intended Audience :: Education
|
18
18
|
Classifier: Intended Audience :: Science/Research
|
19
|
-
Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
|
20
19
|
Classifier: Operating System :: POSIX
|
21
20
|
Classifier: Operating System :: MacOS :: MacOS X
|
22
21
|
Classifier: Programming Language :: Python :: 3 :: Only
|
@@ -29,8 +28,8 @@ Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
29
28
|
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
30
29
|
Requires-Python: <3.14,>=3.9
|
31
30
|
Description-Content-Type: text/x-rst
|
32
|
-
Requires-Dist: passagemath-objects~=10.5.
|
33
|
-
Requires-Dist: passagemath-environment~=10.5.
|
31
|
+
Requires-Dist: passagemath-objects~=10.5.38.0
|
32
|
+
Requires-Dist: passagemath-environment~=10.5.38.0
|
34
33
|
Requires-Dist: ipykernel>=5.2.1
|
35
34
|
Requires-Dist: ipython>=7.13.0
|
36
35
|
Requires-Dist: ipywidgets>=7.5.1
|
@@ -1,24 +1,24 @@
|
|
1
|
-
passagemath_repl-10.5.
|
2
|
-
passagemath_repl-10.5.
|
3
|
-
passagemath_repl-10.5.
|
4
|
-
passagemath_repl-10.5.
|
5
|
-
passagemath_repl-10.5.
|
6
|
-
passagemath_repl-10.5.
|
7
|
-
passagemath_repl-10.5.
|
8
|
-
passagemath_repl-10.5.
|
9
|
-
passagemath_repl-10.5.
|
10
|
-
passagemath_repl-10.5.
|
11
|
-
passagemath_repl-10.5.
|
12
|
-
passagemath_repl-10.5.
|
13
|
-
passagemath_repl-10.5.
|
14
|
-
passagemath_repl-10.5.
|
15
|
-
passagemath_repl-10.5.
|
16
|
-
passagemath_repl-10.5.
|
17
|
-
passagemath_repl-10.5.
|
18
|
-
passagemath_repl-10.5.
|
19
|
-
passagemath_repl-10.5.
|
20
|
-
passagemath_repl-10.5.
|
21
|
-
passagemath_repl-10.5.
|
1
|
+
passagemath_repl-10.5.38.data/data/share/jupyter/kernels/sagemath/kernel.json,sha256=RXE46ca_noJzjkPTEEC14CAJSZjjCVEue0Leo70YaUY,141
|
2
|
+
passagemath_repl-10.5.38.data/data/share/jupyter/kernels/sagemath/logo-64x64.png,sha256=pE3myKl2ywp6zDUD0JiMs-lvAk6T4O3z5PdEC_B0ZL4,3421
|
3
|
+
passagemath_repl-10.5.38.data/data/share/jupyter/kernels/sagemath/logo.svg,sha256=C9lkyX-_DqtTKOlcLFRu36k7scdBufRnYdy4AMHa7GQ,19074
|
4
|
+
passagemath_repl-10.5.38.data/scripts/sage-cachegrind,sha256=FRrT4BoRsrATlQOrXALHAbDI_KLhz0XuDOD6xzECEl8,651
|
5
|
+
passagemath_repl-10.5.38.data/scripts/sage-callgrind,sha256=pWhrI8NsVa_XSuay052htjxcM3thrpX8rI6Uj_pK5Uo,442
|
6
|
+
passagemath_repl-10.5.38.data/scripts/sage-cleaner,sha256=vM0CkzbxiSCE0Z85AViQIvoxb5oUz5WOmVOvShbLDUY,7778
|
7
|
+
passagemath_repl-10.5.38.data/scripts/sage-coverage,sha256=IhvqnFvmvNJBMQtiSu5_Qy52a67hG-r3cAeyhYOOj7w,10199
|
8
|
+
passagemath_repl-10.5.38.data/scripts/sage-eval,sha256=4IHv01xH34wJPj61wzcL5ufhoO6Y3UTTGz7b-0YKJFw,266
|
9
|
+
passagemath_repl-10.5.38.data/scripts/sage-fixdoctests,sha256=xcbw2EmxtwE6Xkrdxx2-59srUwSgzenrNwLP0757UNs,37571
|
10
|
+
passagemath_repl-10.5.38.data/scripts/sage-inline-fortran,sha256=T3U943WNPKrxQJuanBhTpXU3jJ5vjaXd56R8yWv_8PM,234
|
11
|
+
passagemath_repl-10.5.38.data/scripts/sage-ipynb2rst,sha256=PynBPdthnpwGbILDRA38IwpT319Ze-g8UMmWaaTnimQ,1345
|
12
|
+
passagemath_repl-10.5.38.data/scripts/sage-ipython,sha256=RYYd8-gmE5JE_-dCkOSDpC6rRsX6i6tma3pqgmXYJvM,342
|
13
|
+
passagemath_repl-10.5.38.data/scripts/sage-massif,sha256=Tfqb6ON9d0OZnt6VlGS21asbdMq8zWzx8ZnvV1n_buI,613
|
14
|
+
passagemath_repl-10.5.38.data/scripts/sage-notebook,sha256=QJ1Y4eTptc6TbNVXZswpcsn-NqaQNuSwjWE-lYmGpW8,8453
|
15
|
+
passagemath_repl-10.5.38.data/scripts/sage-omega,sha256=4ARnHyZyB69ltxHj9xYpzad_YCBT3Nk0Wq3Ke09gExM,595
|
16
|
+
passagemath_repl-10.5.38.data/scripts/sage-preparse,sha256=3L1KKgvSApvoK467Wza0S4WQLCXiYvivrhDKIvA1omc,10595
|
17
|
+
passagemath_repl-10.5.38.data/scripts/sage-run,sha256=F1oAgPN7Kh5dO1smCyfGVT0Dy46NQ_dQ3OQZ8Wa6foM,689
|
18
|
+
passagemath_repl-10.5.38.data/scripts/sage-run-cython,sha256=02mTGXokayRxISoCWWsDcKZwGrmh5B0mJJxTT87J01Q,235
|
19
|
+
passagemath_repl-10.5.38.data/scripts/sage-runtests,sha256=nUvI3fCrBjqPUict01wIxwYPjvaZf4ttLp85tavUEpY,111
|
20
|
+
passagemath_repl-10.5.38.data/scripts/sage-startuptime.py,sha256=RtIuC7jM3SOwROXTa6nnpJhzK0sQ24nDqyE6zXpCWEI,6209
|
21
|
+
passagemath_repl-10.5.38.data/scripts/sage-valgrind,sha256=fZxy00oXU4PpHf_wc2uYKb7lzqSBY4VkhUxiuvXHKhA,1201
|
22
22
|
sage/all__sagemath_repl.py,sha256=z6lERTYuw3I4LQ7-hnEYbY1i-hMJj2uAm2ujOmWitSo,5713
|
23
23
|
sage/doctest/__init__.py,sha256=JJMNkq7Rh3gCshtynqXDTLJgUKweNFlUhpnbvTLRMwg,166
|
24
24
|
sage/doctest/__main__.py,sha256=wGVNiaPbhQwzoAs3Y1xhYBlB18pBieEDhi71ggF8NkQ,13647
|
@@ -104,10 +104,10 @@ sage/repl/ipython_kernel/__init__.py,sha256=6mNw0BEw6mZsoOi004elrLvD4m4RffLmgY92
|
|
104
104
|
sage/repl/ipython_kernel/__main__.py,sha256=lS2SaEWCtM5I5LykXB0FBQA-5XIVkolXMpRSTSnMP8w,195
|
105
105
|
sage/repl/ipython_kernel/all_jupyter.py,sha256=hpNw0ZQK89PkavLZD0UWqgPcA4AneXEIc5VOztOxLkA,364
|
106
106
|
sage/repl/ipython_kernel/install.py,sha256=A-wxTNFxN7xGMbutT5e9xr-5sdfZz9X24zgzxM1SGSo,9495
|
107
|
-
sage/repl/ipython_kernel/interact.py,sha256=
|
107
|
+
sage/repl/ipython_kernel/interact.py,sha256=gqs9DTksXsbbVkvRGIbW_UnraoMZpoUuZWJjll_FE9k,11603
|
108
108
|
sage/repl/ipython_kernel/kernel.py,sha256=uFQUDxGPtcLcP0YjNvFvLHNM-IIqPTpjG0sX4kF_pYs,7117
|
109
|
-
sage/repl/ipython_kernel/widgets.py,sha256=
|
110
|
-
sage/repl/ipython_kernel/widgets_sagenb.py,sha256=
|
109
|
+
sage/repl/ipython_kernel/widgets.py,sha256=DIyVibGr30DXFk79Zm3jDSyWiCd8h2z3R2ZbSxOxIOY,14878
|
110
|
+
sage/repl/ipython_kernel/widgets_sagenb.py,sha256=VgauLJQlQsvszXU-Rox65MRu7jM8mkVgC8wYDEHVT-o,20178
|
111
111
|
sage/repl/rich_output/__init__.py,sha256=yHVVV_o6hHdQ5UscMtypHyqv_kl6uGC8SpkAsugLBCQ,132
|
112
112
|
sage/repl/rich_output/backend_base.py,sha256=HvMaVFC0MfqKAnabvvotaH027xbsVp-NFz_KDYiqjZI,22159
|
113
113
|
sage/repl/rich_output/backend_doctest.py,sha256=GUIcwHXWvTN16PFm3v4ZThk8F5FFnSkh1BIYlhVXMGo,13166
|
@@ -169,11 +169,11 @@ sage/tests/books/computational-mathematics-with-sagemath/combinat_doctest.py,sha
|
|
169
169
|
sage/tests/books/computational-mathematics-with-sagemath/domaines_doctest.py,sha256=6dvQVUeWzuk51m4q_lLGrWycSRZGspO9Z4JWP6qAlq0,10287
|
170
170
|
sage/tests/books/computational-mathematics-with-sagemath/float_doctest.py,sha256=FaQfsn95X3iEcUIpFGF3tmtSpcRNwvCYMaB0moH5umA,11659
|
171
171
|
sage/tests/books/computational-mathematics-with-sagemath/graphique_doctest.py,sha256=n0l4Z9pVbCcVRC9m9CVgkSaudIek1E34NV1ut_IzI6M,9771
|
172
|
-
sage/tests/books/computational-mathematics-with-sagemath/graphtheory_doctest.py,sha256=
|
172
|
+
sage/tests/books/computational-mathematics-with-sagemath/graphtheory_doctest.py,sha256=0_g61BiD1KN0uYbushiM8hFbcFhiC_RIJV0oUDyCMdA,12924
|
173
173
|
sage/tests/books/computational-mathematics-with-sagemath/integration_doctest.py,sha256=B6u9FVvauYhOt0awu0DJFdsIMwBJgwA7PTbVxsH1B60,9131
|
174
174
|
sage/tests/books/computational-mathematics-with-sagemath/linalg_doctest.py,sha256=bQrWl-Kj-mRXUVOoibceFmippeZfcTmb2uveSkxS5VA,11971
|
175
175
|
sage/tests/books/computational-mathematics-with-sagemath/linsolve_doctest.py,sha256=s7AtWcs5Prnx-7iP-xGEAH3DPcclef2B2TaPjYl4Z2k,13472
|
176
|
-
sage/tests/books/computational-mathematics-with-sagemath/lp_doctest.py,sha256=
|
176
|
+
sage/tests/books/computational-mathematics-with-sagemath/lp_doctest.py,sha256=5TtnZFm0W8x-slYxCmykY062Am_irOfz8ZWkBDOpSCY,6439
|
177
177
|
sage/tests/books/computational-mathematics-with-sagemath/mpoly_doctest.py,sha256=HBaPHITlNXsGrEKDrUM9q0JuGdUcM7CY95UQNV1NVfc,15300
|
178
178
|
sage/tests/books/computational-mathematics-with-sagemath/nonlinear_doctest.py,sha256=dtmCBeceWs3S8FoNYprbC1kRphm7WNSnQmccXCoQ3gk,15994
|
179
179
|
sage/tests/books/computational-mathematics-with-sagemath/numbertheory_doctest.py,sha256=V0ODEcX8TKFR3RZFbzsy-sAUSDxuOPjkRkPnyMlEFMM,4287
|
@@ -192,7 +192,7 @@ sage/tests/books/computational-mathematics-with-sagemath/sol/integration_doctest
|
|
192
192
|
sage/tests/books/computational-mathematics-with-sagemath/sol/linalg_doctest.py,sha256=jRhas7BbMjf5GJfSojIHjdifaPBUutGDoARRcJV4xto,2324
|
193
193
|
sage/tests/books/computational-mathematics-with-sagemath/sol/linsolve_doctest.py,sha256=lHIxy_4k7bi2B0RIZN7Fww7FIKAdGgtLMulU2vPtDww,808
|
194
194
|
sage/tests/books/computational-mathematics-with-sagemath/sol/lp_doctest.py,sha256=PrUfACtviY3pn2X4M3H48KTm5C1yh9Nh6xWSnwYEUTM,1634
|
195
|
-
sage/tests/books/computational-mathematics-with-sagemath/sol/mpoly_doctest.py,sha256=
|
195
|
+
sage/tests/books/computational-mathematics-with-sagemath/sol/mpoly_doctest.py,sha256=QqdkxGvvX-7yPDrAPQxkS8yjHA5bTz8D--8XTUuVgYM,3763
|
196
196
|
sage/tests/books/computational-mathematics-with-sagemath/sol/nonlinear_doctest.py,sha256=EK6YXSPtCJ-H5v3IZHyHG33J5mIZ8a0jtYYC2xSRZuI,3846
|
197
197
|
sage/tests/books/computational-mathematics-with-sagemath/sol/numbertheory_doctest.py,sha256=HkWcbvfCjtguL9ZyXs_HRmwO6VVkOInaFaF_gXYC_7g,6141
|
198
198
|
sage/tests/books/computational-mathematics-with-sagemath/sol/polynomes_doctest.py,sha256=cm_KDyZR9UgaK66HF0pfQv85LY33YCwtEJXkfZR79sM,3518
|
@@ -205,8 +205,8 @@ sage/tests/books/judson-abstract-algebra/boolean-sage.py,sha256=roYVqYLy8Wy8wgiC
|
|
205
205
|
sage/tests/books/judson-abstract-algebra/cosets-sage-exercises.py,sha256=Y0t6R20HmDGDXfBtvOackDBoEx8XVDEcgcyhVoqsiP4,2186
|
206
206
|
sage/tests/books/judson-abstract-algebra/cosets-sage.py,sha256=5ucBiZNLzSmq42J3PylRvSZDb8R_DtBAPJMbH2ktydA,4584
|
207
207
|
sage/tests/books/judson-abstract-algebra/crypt-sage.py,sha256=nvlt4UlRQIDs4l8lmwKUvsV1ViScasSDhVGDE1lvfpM,3733
|
208
|
-
sage/tests/books/judson-abstract-algebra/cyclic-sage.py,sha256=
|
209
|
-
sage/tests/books/judson-abstract-algebra/domains-sage.py,sha256=
|
208
|
+
sage/tests/books/judson-abstract-algebra/cyclic-sage.py,sha256=AvbxbiNL8cdnyN5W-vz6wuXTlAah-nhsBgWcr6Cw1Ak,8540
|
209
|
+
sage/tests/books/judson-abstract-algebra/domains-sage.py,sha256=pKnXIMb97s7Ond8L9mD2RdpIVJhYbepkfQhgZbmpHS8,3738
|
210
210
|
sage/tests/books/judson-abstract-algebra/fields-sage.py,sha256=zdQibWZaKtXc8lRhlI2HBgh6CCvBe4p54pp3mYwIZdE,6667
|
211
211
|
sage/tests/books/judson-abstract-algebra/finite-sage.py,sha256=4AlvvmjLqRWsV-nRYP4GYbXJlPRvH9_BakfzrI700gw,2865
|
212
212
|
sage/tests/books/judson-abstract-algebra/galois-sage.py,sha256=5DTDc8GL4KaWNt60f71nVMwJ4j0ky843QvxgE_t-_pU,13781
|
@@ -229,7 +229,7 @@ sage/tests/memcheck/run_tests.py,sha256=waPUB_tHk1YvSCd45BOXHeWubtA2St4ZQR-O88R3
|
|
229
229
|
sage/tests/memcheck/run_tests_in_valgrind.py,sha256=Ht4-bpgRl2sH4SICRKN5S5VyMhebmCvRRz4ktOmwKFo,933
|
230
230
|
sage/tests/memcheck/symbolic_expression.py,sha256=oEFxHEpGZK8-sCr_vTiVu8bk-e5lTzp4GQSepnGN-OQ,272
|
231
231
|
sage/tests/memcheck/verify_no_leak.py,sha256=6TiUam0TTe1D_Gbaftz5uGSb8QZygRGXQow-WpVH6kg,984
|
232
|
-
passagemath_repl-10.5.
|
233
|
-
passagemath_repl-10.5.
|
234
|
-
passagemath_repl-10.5.
|
235
|
-
passagemath_repl-10.5.
|
232
|
+
passagemath_repl-10.5.38.dist-info/METADATA,sha256=stU1XSQDaPZ8l1gQLz3eCqGtmb2yGqpN4X9WM8sA_AA,4604
|
233
|
+
passagemath_repl-10.5.38.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
234
|
+
passagemath_repl-10.5.38.dist-info/top_level.txt,sha256=Kmzulf9WsphADFQuqgvdy5mvTLDj_V2zkFHU2s3UXos,6
|
235
|
+
passagemath_repl-10.5.38.dist-info/RECORD,,
|
@@ -62,7 +62,7 @@ Sage example in ./graphtheory.tex, line 212::
|
|
62
62
|
Sage example in ./graphtheory.tex, line 252::
|
63
63
|
|
64
64
|
sage: P = graphs.PetersenGraph()
|
65
|
-
sage: P.is_planar()
|
65
|
+
sage: P.is_planar() # needs planarity
|
66
66
|
False
|
67
67
|
sage: P.minor(graphs.CompleteBipartiteGraph(3,3)) # random
|
68
68
|
{0: [1], 1: [8], 2: [4], 3: [6, 7, 9], 4: [2, 3], 5: [0, 5]}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
# sage_setup: distribution = sagemath-repl
|
2
|
-
# sage.doctest: needs sage.graphs sage.numerical.mip
|
2
|
+
# sage.doctest: needs sage.graphs sage.numerical.mip sage.symbolic
|
3
3
|
"""
|
4
4
|
This file (./lp_doctest.sage) was *autogenerated* from ./lp.tex,
|
5
5
|
with sagetex.sty version 2011/05/27 v2.3.1.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
# sage_setup: distribution = sagemath-repl
|
2
|
-
# sage.doctest: needs fpylll sage.libs.pari sage.rings.number_field
|
2
|
+
# sage.doctest: needs fpylll sage.libs.pari sage.libs.singular sage.rings.number_field
|
3
3
|
"""
|
4
4
|
This file (./sol/mpoly_doctest.sage) was *autogenerated* from ./sol/mpoly.tex,
|
5
5
|
with sagetex.sty version 2011/05/27 v2.3.1.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
# sage_setup: distribution = sagemath-repl
|
2
|
-
# sage.doctest: needs sage.modules sage.groups sage.rings.number_field
|
2
|
+
# sage.doctest: needs sage.modules sage.groups sage.rings.number_field sage.symbolic
|
3
3
|
## Sage Doctest File ##
|
4
4
|
#**************************************#
|
5
5
|
#* Generated from PreTeXt source *#
|
@@ -1,5 +1,5 @@
|
|
1
1
|
# sage_setup: distribution = sagemath-repl
|
2
|
-
# sage.doctest: needs fpylll sage.rings.finite_rings sage.rings.number_field
|
2
|
+
# sage.doctest: needs fpylll sage.rings.finite_rings sage.rings.number_field sage.symbolic
|
3
3
|
## Sage Doctest File ##
|
4
4
|
#**************************************#
|
5
5
|
#* Generated from PreTeXt source *#
|
@@ -1 +0,0 @@
|
|
1
|
-
{"argv": ["python3", "-m", "sage.repl.ipython_kernel", "-f", "{connection_file}"], "display_name": "passagemath 10.5.37", "language": "sage"}
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|