passagemath-repl 10.4.1__tar.gz → 10.4.3__tar.gz

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 (252) hide show
  1. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/MANIFEST.in +12 -0
  2. {passagemath_repl-10.4.1/passagemath_repl.egg-info → passagemath_repl-10.4.3}/PKG-INFO +3 -3
  3. passagemath_repl-10.4.3/VERSION.txt +1 -0
  4. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage-version.sh +3 -3
  5. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/known-test-failures.json +14 -17
  6. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3/passagemath_repl.egg-info}/PKG-INFO +3 -3
  7. passagemath_repl-10.4.3/passagemath_repl.egg-info/SOURCES.txt +247 -0
  8. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/passagemath_repl.egg-info/requires.txt +2 -2
  9. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/pyproject.toml +11 -3
  10. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/pyproject.toml.m4 +9 -1
  11. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/util.py +1 -0
  12. passagemath_repl-10.4.3/sage/misc/all__sagemath_repl.py +46 -0
  13. passagemath_repl-10.4.3/sage/misc/cython.py +693 -0
  14. passagemath_repl-10.4.3/sage/misc/dev_tools.py +741 -0
  15. passagemath_repl-10.4.3/sage/misc/edit_module.py +303 -0
  16. passagemath_repl-10.4.3/sage/misc/explain_pickle.py +3078 -0
  17. passagemath_repl-10.4.3/sage/misc/inline_fortran.py +211 -0
  18. passagemath_repl-10.4.3/sage/misc/pager.py +20 -0
  19. passagemath_repl-10.4.3/sage/misc/profiler.py +178 -0
  20. passagemath_repl-10.4.3/sage/misc/trace.py +89 -0
  21. passagemath_repl-10.4.3/sage/tests/__init__.py +0 -0
  22. passagemath_repl-10.4.3/sage/tests/all.py +2 -0
  23. passagemath_repl-10.4.3/sage/tests/article_heuberger_krenn_kropf_fsm-in-sage.py +629 -0
  24. passagemath_repl-10.4.3/sage/tests/arxiv_0812_2725.py +350 -0
  25. passagemath_repl-10.4.3/sage/tests/benchmark.py +1922 -0
  26. passagemath_repl-10.4.3/sage/tests/book_schilling_zabrocki_kschur_primer.py +794 -0
  27. passagemath_repl-10.4.3/sage/tests/book_stein_ent.py +650 -0
  28. passagemath_repl-10.4.3/sage/tests/book_stein_modform.py +558 -0
  29. passagemath_repl-10.4.3/sage/tests/books/__init__.py +0 -0
  30. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/README +6 -0
  31. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/__init__.py +0 -0
  32. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/calculus_doctest.py +552 -0
  33. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/combinat_doctest.py +1052 -0
  34. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/domaines_doctest.py +442 -0
  35. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/float_doctest.py +476 -0
  36. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/graphique_doctest.py +253 -0
  37. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/graphtheory_doctest.py +417 -0
  38. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/integration_doctest.py +289 -0
  39. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/linalg_doctest.py +460 -0
  40. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/linsolve_doctest.py +420 -0
  41. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/lp_doctest.py +233 -0
  42. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/mpoly_doctest.py +559 -0
  43. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/nonlinear_doctest.py +489 -0
  44. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/numbertheory_doctest.py +154 -0
  45. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/polynomes_doctest.py +404 -0
  46. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/premierspas_doctest.py +179 -0
  47. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/programmation_doctest.py +661 -0
  48. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/recequadiff_doctest.py +391 -0
  49. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/sol/__init__.py +0 -0
  50. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/sol/calculus_doctest.py +263 -0
  51. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/sol/combinat_doctest.py +216 -0
  52. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/sol/domaines_doctest.py +58 -0
  53. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/sol/float_doctest.py +140 -0
  54. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/sol/graphique_doctest.py +104 -0
  55. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/sol/graphtheory_doctest.py +52 -0
  56. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/sol/integration_doctest.py +55 -0
  57. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/sol/linalg_doctest.py +55 -0
  58. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/sol/linsolve_doctest.py +24 -0
  59. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/sol/lp_doctest.py +46 -0
  60. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/sol/mpoly_doctest.py +114 -0
  61. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/sol/nonlinear_doctest.py +110 -0
  62. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/sol/numbertheory_doctest.py +166 -0
  63. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/sol/polynomes_doctest.py +106 -0
  64. passagemath_repl-10.4.3/sage/tests/books/computational-mathematics-with-sagemath/sol/recequadiff_doctest.py +57 -0
  65. passagemath_repl-10.4.3/sage/tests/books/judson-abstract-algebra/__init__.py +0 -0
  66. passagemath_repl-10.4.3/sage/tests/books/judson-abstract-algebra/actions-sage-exercises.py +50 -0
  67. passagemath_repl-10.4.3/sage/tests/books/judson-abstract-algebra/actions-sage.py +172 -0
  68. passagemath_repl-10.4.3/sage/tests/books/judson-abstract-algebra/algcodes-sage.py +129 -0
  69. passagemath_repl-10.4.3/sage/tests/books/judson-abstract-algebra/boolean-sage.py +268 -0
  70. passagemath_repl-10.4.3/sage/tests/books/judson-abstract-algebra/cosets-sage-exercises.py +86 -0
  71. passagemath_repl-10.4.3/sage/tests/books/judson-abstract-algebra/cosets-sage.py +169 -0
  72. passagemath_repl-10.4.3/sage/tests/books/judson-abstract-algebra/crypt-sage.py +150 -0
  73. passagemath_repl-10.4.3/sage/tests/books/judson-abstract-algebra/cyclic-sage.py +449 -0
  74. passagemath_repl-10.4.3/sage/tests/books/judson-abstract-algebra/domains-sage.py +162 -0
  75. passagemath_repl-10.4.3/sage/tests/books/judson-abstract-algebra/fields-sage.py +298 -0
  76. passagemath_repl-10.4.3/sage/tests/books/judson-abstract-algebra/finite-sage.py +107 -0
  77. passagemath_repl-10.4.3/sage/tests/books/judson-abstract-algebra/galois-sage.py +487 -0
  78. passagemath_repl-10.4.3/sage/tests/books/judson-abstract-algebra/groups-sage.py +279 -0
  79. passagemath_repl-10.4.3/sage/tests/books/judson-abstract-algebra/homomorph-sage-exercises.py +64 -0
  80. passagemath_repl-10.4.3/sage/tests/books/judson-abstract-algebra/homomorph-sage.py +199 -0
  81. passagemath_repl-10.4.3/sage/tests/books/judson-abstract-algebra/integers-sage.py +196 -0
  82. passagemath_repl-10.4.3/sage/tests/books/judson-abstract-algebra/isomorph-sage.py +171 -0
  83. passagemath_repl-10.4.3/sage/tests/books/judson-abstract-algebra/normal-sage.py +132 -0
  84. passagemath_repl-10.4.3/sage/tests/books/judson-abstract-algebra/permute-sage.py +318 -0
  85. passagemath_repl-10.4.3/sage/tests/books/judson-abstract-algebra/poly-sage.py +299 -0
  86. passagemath_repl-10.4.3/sage/tests/books/judson-abstract-algebra/rings-sage.py +412 -0
  87. passagemath_repl-10.4.3/sage/tests/books/judson-abstract-algebra/sets-sage.py +162 -0
  88. passagemath_repl-10.4.3/sage/tests/books/judson-abstract-algebra/struct-sage.py +62 -0
  89. passagemath_repl-10.4.3/sage/tests/books/judson-abstract-algebra/sylow-sage.py +249 -0
  90. passagemath_repl-10.4.3/sage/tests/books/judson-abstract-algebra/vect-sage-exercises.py +47 -0
  91. passagemath_repl-10.4.3/sage/tests/books/judson-abstract-algebra/vect-sage.py +213 -0
  92. passagemath_repl-10.4.3/sage/tests/cmdline.py +780 -0
  93. passagemath_repl-10.4.3/sage/tests/combinatorial_hopf_algebras.py +51 -0
  94. passagemath_repl-10.4.3/sage/tests/cython.pyx +36 -0
  95. passagemath_repl-10.4.3/sage/tests/finite_poset.py +622 -0
  96. passagemath_repl-10.4.3/sage/tests/functools_partial_src.py +26 -0
  97. passagemath_repl-10.4.3/sage/tests/gosper-sum.py +217 -0
  98. passagemath_repl-10.4.3/sage/tests/lazy_imports.py +27 -0
  99. passagemath_repl-10.4.3/sage/tests/memcheck/__init__.py +0 -0
  100. passagemath_repl-10.4.3/sage/tests/memcheck/run_tests.py +24 -0
  101. passagemath_repl-10.4.3/sage/tests/memcheck/run_tests_in_valgrind.py +35 -0
  102. passagemath_repl-10.4.3/sage/tests/memcheck/symbolic_expression.py +11 -0
  103. passagemath_repl-10.4.3/sage/tests/memcheck/verify_no_leak.py +27 -0
  104. passagemath_repl-10.4.3/sage/tests/modular_group_cohomology.py +79 -0
  105. passagemath_repl-10.4.3/sage/tests/numpy.py +20 -0
  106. passagemath_repl-10.4.3/sage/tests/parigp.py +75 -0
  107. passagemath_repl-10.4.3/sage/tests/startup.py +26 -0
  108. passagemath_repl-10.4.3/sage/tests/stl_vector.pyx +170 -0
  109. passagemath_repl-10.4.3/sage/tests/symbolic-series.py +75 -0
  110. passagemath_repl-10.4.3/sage/tests/sympy.py +15 -0
  111. passagemath_repl-10.4.3/sage/tests/test_deprecation.py +30 -0
  112. passagemath_repl-10.4.1/VERSION.txt +0 -1
  113. passagemath_repl-10.4.1/passagemath_repl.egg-info/SOURCES.txt +0 -148
  114. passagemath_repl-10.4.1/sage/misc/all__sagemath_repl.py +0 -4
  115. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/README.rst +0 -0
  116. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/math-readline +0 -0
  117. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage +0 -0
  118. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage-cachegrind +0 -0
  119. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage-callgrind +0 -0
  120. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage-cleaner +0 -0
  121. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage-coverage +0 -0
  122. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage-cython +0 -0
  123. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage-env +0 -0
  124. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage-env-config.in +0 -0
  125. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage-eval +0 -0
  126. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage-fixdoctests +0 -0
  127. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage-grep +0 -0
  128. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage-grepdoc +0 -0
  129. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage-inline-fortran +0 -0
  130. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage-ipynb2rst +0 -0
  131. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage-ipython +0 -0
  132. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage-list-packages +0 -0
  133. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage-massif +0 -0
  134. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage-notebook +0 -0
  135. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage-num-threads.py +0 -0
  136. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage-omega +0 -0
  137. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage-preparse +0 -0
  138. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage-python +0 -0
  139. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage-run +0 -0
  140. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage-run-cython +0 -0
  141. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage-runtests +0 -0
  142. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage-src-env-config.in +0 -0
  143. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage-startuptime.py +0 -0
  144. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage-update-version +0 -0
  145. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage-valgrind +0 -0
  146. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/bin/sage-venv-config +0 -0
  147. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/passagemath_repl.egg-info/dependency_links.txt +0 -0
  148. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/passagemath_repl.egg-info/top_level.txt +0 -0
  149. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/requirements-editable.txt.m4 +0 -0
  150. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/requirements.txt.m4 +0 -0
  151. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/all__sagemath_repl.py +0 -0
  152. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/__init__.py +0 -0
  153. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/__main__.py +0 -0
  154. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/all.py +0 -0
  155. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/check_tolerance.py +0 -0
  156. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/control.py +0 -0
  157. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/external.py +0 -0
  158. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/fixtures.py +0 -0
  159. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/forker.py +0 -0
  160. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/marked_output.py +0 -0
  161. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/parsing.py +0 -0
  162. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/parsing_test.py +0 -0
  163. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/reporting.py +0 -0
  164. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/rif_tol.py +0 -0
  165. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/sources.py +0 -0
  166. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/test.py +0 -0
  167. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/tests/1second.rst +0 -0
  168. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/tests/99seconds.rst +0 -0
  169. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/tests/abort.rst +0 -0
  170. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/tests/atexit.rst +0 -0
  171. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/tests/fail_and_die.rst +0 -0
  172. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/tests/initial.rst +0 -0
  173. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/tests/interrupt.rst +0 -0
  174. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/tests/interrupt_diehard.rst +0 -0
  175. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/tests/keyboardinterrupt.rst +0 -0
  176. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/tests/longtime.rst +0 -0
  177. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/tests/nodoctest +0 -0
  178. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/tests/random_seed.rst +0 -0
  179. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/tests/show_skipped.rst +0 -0
  180. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/tests/sig_on.rst +0 -0
  181. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/tests/simple_failure.rst +0 -0
  182. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/tests/sleep_and_raise.rst +0 -0
  183. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/doctest/tests/tolerance.rst +0 -0
  184. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/misc/banner.py +0 -0
  185. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/misc/sage_eval.py +0 -0
  186. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/misc/sage_input.py +0 -0
  187. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/misc/sagedoc.py +0 -0
  188. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/__init__.py +0 -0
  189. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/all.py +0 -0
  190. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/attach.py +0 -0
  191. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/configuration.py +0 -0
  192. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/display/__init__.py +0 -0
  193. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/display/fancy_repr.py +0 -0
  194. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/display/formatter.py +0 -0
  195. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/display/jsmol_iframe.py +0 -0
  196. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/display/pretty_print.py +0 -0
  197. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/display/util.py +0 -0
  198. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/image.py +0 -0
  199. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/inputhook.py +0 -0
  200. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/interface_magic.py +0 -0
  201. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/interpreter.py +0 -0
  202. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/ipython_extension.py +0 -0
  203. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/ipython_kernel/__init__.py +0 -0
  204. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/ipython_kernel/__main__.py +0 -0
  205. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/ipython_kernel/all_jupyter.py +0 -0
  206. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/ipython_kernel/install.py +0 -0
  207. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/ipython_kernel/interact.py +0 -0
  208. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/ipython_kernel/kernel.py +0 -0
  209. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/ipython_kernel/widgets.py +0 -0
  210. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/ipython_kernel/widgets_sagenb.py +0 -0
  211. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/ipython_tests.py +0 -0
  212. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/load.py +0 -0
  213. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/preparse.py +0 -0
  214. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/prompts.py +0 -0
  215. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/__init__.py +0 -0
  216. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/backend_base.py +0 -0
  217. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/backend_doctest.py +0 -0
  218. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/backend_emacs.py +0 -0
  219. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/backend_ipython.py +0 -0
  220. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/buffer.py +0 -0
  221. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/display_manager.py +0 -0
  222. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/example.avi +0 -0
  223. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/example.canvas3d +0 -0
  224. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/example.dvi +0 -0
  225. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/example.flv +0 -0
  226. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/example.gif +0 -0
  227. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/example.jpg +0 -0
  228. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/example.mkv +0 -0
  229. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/example.mov +0 -0
  230. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/example.mp4 +0 -0
  231. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/example.ogv +0 -0
  232. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/example.pdf +0 -0
  233. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/example.png +0 -0
  234. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/example.svg +0 -0
  235. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/example.webm +0 -0
  236. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/example.wmv +0 -0
  237. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/example_jmol.spt.zip +0 -0
  238. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/example_wavefront_scene.mtl +0 -0
  239. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/example_wavefront_scene.obj +0 -0
  240. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/output_basic.py +0 -0
  241. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/output_browser.py +0 -0
  242. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/output_catalog.py +0 -0
  243. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/output_graphics.py +0 -0
  244. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/output_graphics3d.py +0 -0
  245. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/output_video.py +0 -0
  246. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/preferences.py +0 -0
  247. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/pretty_print.py +0 -0
  248. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/rich_output/test_backend.py +0 -0
  249. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/sage/repl/user_globals.py +0 -0
  250. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/setup.cfg +0 -0
  251. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/setup.py +0 -0
  252. {passagemath_repl-10.4.1 → passagemath_repl-10.4.3}/tox.ini +0 -0
@@ -2,11 +2,23 @@ prune sage
2
2
 
3
3
  graft sage/doctest
4
4
  graft sage/repl
5
+ graft sage/tests
6
+
5
7
  include sage/misc/banner.py
6
8
  include sage/misc/sagedoc.py
7
9
  include sage/misc/sage_input.py
8
10
  include sage/misc/sage_eval.py
9
11
 
12
+ include sage/misc/explain_pickle.py
13
+ include sage/misc/trace.py
14
+ include sage/misc/profiler.py
15
+ include sage/misc/dev_tools.py
16
+ include sage/misc/edit_module.py
17
+ include sage/misc/pager.py
18
+
19
+ include sage/misc/cython.py
20
+ include sage/misc/inline_fortran.py
21
+
10
22
  include VERSION.txt
11
23
 
12
24
  global-exclude all__*.py
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: passagemath-repl
3
- Version: 10.4.1
3
+ Version: 10.4.3
4
4
  Summary: passagemath: IPython kernel, Sage preparser, doctester
5
5
  Author-email: The Sage Developers <sage-support@googlegroups.com>
6
6
  License: GNU General Public License (GPL) v2 or later
@@ -25,8 +25,8 @@ Classifier: Programming Language :: Python :: Implementation :: CPython
25
25
  Classifier: Topic :: Scientific/Engineering :: Mathematics
26
26
  Requires-Python: <3.13,>=3.9
27
27
  Description-Content-Type: text/x-rst
28
- Requires-Dist: passagemath-objects~=10.4.1
29
- Requires-Dist: passagemath-environment~=10.4.1
28
+ Requires-Dist: passagemath-objects~=10.4.3
29
+ Requires-Dist: passagemath-environment~=10.4.3
30
30
  Requires-Dist: ipykernel>=5.2.1
31
31
  Requires-Dist: ipython>=7.13.0
32
32
  Requires-Dist: ipywidgets>=7.5.1
@@ -0,0 +1 @@
1
+ 10.4.3
@@ -4,6 +4,6 @@
4
4
  # which stops "setup.py develop" from rewriting it as a Python file.
5
5
  :
6
6
  # This file is auto-generated by the sage-update-version script, do not edit!
7
- SAGE_VERSION='10.4.1'
8
- SAGE_RELEASE_DATE='2024-10-15'
9
- SAGE_VERSION_BANNER='passagemath version 10.4.1, Release Date: 2024-10-15'
7
+ SAGE_VERSION='10.4.3'
8
+ SAGE_RELEASE_DATE='2024-10-16'
9
+ SAGE_VERSION_BANNER='passagemath version 10.4.3, Release Date: 2024-10-16'
@@ -1,30 +1,28 @@
1
1
  {
2
2
  "sage.doctest.control": {
3
3
  "failed": true,
4
- "ntests": 0
4
+ "ntests": 229
5
5
  },
6
6
  "sage.doctest.external": {
7
- "ntests": 41
7
+ "ntests": 40
8
8
  },
9
9
  "sage.doctest.fixtures": {
10
- "failed": true,
11
- "ntests": 59
10
+ "ntests": 58
12
11
  },
13
12
  "sage.doctest.forker": {
14
13
  "failed": true,
15
- "ntests": 432
14
+ "ntests": 412
16
15
  },
17
16
  "sage.doctest.parsing": {
18
17
  "failed": true,
19
- "ntests": 316
18
+ "ntests": 308
20
19
  },
21
20
  "sage.doctest.reporting": {
22
- "failed": true,
23
- "ntests": 124
21
+ "ntests": 126
24
22
  },
25
23
  "sage.doctest.sources": {
26
24
  "failed": true,
27
- "ntests": 376
25
+ "ntests": 341
28
26
  },
29
27
  "sage.doctest.test": {
30
28
  "ntests": 23
@@ -42,7 +40,7 @@
42
40
  "ntests": 721
43
41
  },
44
42
  "sage.repl.attach": {
45
- "ntests": 128
43
+ "ntests": 135
46
44
  },
47
45
  "sage.repl.configuration": {
48
46
  "ntests": 22
@@ -78,7 +76,7 @@
78
76
  },
79
77
  "sage.repl.interpreter": {
80
78
  "failed": true,
81
- "ntests": 109
79
+ "ntests": 105
82
80
  },
83
81
  "sage.repl.ipython_extension": {
84
82
  "failed": true,
@@ -86,7 +84,7 @@
86
84
  },
87
85
  "sage.repl.ipython_kernel.install": {
88
86
  "failed": true,
89
- "ntests": 40
87
+ "ntests": 35
90
88
  },
91
89
  "sage.repl.ipython_kernel.interact": {
92
90
  "failed": true,
@@ -109,11 +107,11 @@
109
107
  },
110
108
  "sage.repl.load": {
111
109
  "failed": true,
112
- "ntests": 41
110
+ "ntests": 39
113
111
  },
114
112
  "sage.repl.preparse": {
115
113
  "failed": true,
116
- "ntests": 343
114
+ "ntests": 347
117
115
  },
118
116
  "sage.repl.rich_output.backend_base": {
119
117
  "failed": true,
@@ -126,15 +124,14 @@
126
124
  "ntests": 15
127
125
  },
128
126
  "sage.repl.rich_output.backend_ipython": {
129
- "failed": true,
130
- "ntests": 75
127
+ "ntests": 73
131
128
  },
132
129
  "sage.repl.rich_output.buffer": {
133
130
  "ntests": 49
134
131
  },
135
132
  "sage.repl.rich_output.display_manager": {
136
133
  "failed": true,
137
- "ntests": 85
134
+ "ntests": 84
138
135
  },
139
136
  "sage.repl.rich_output.output_basic": {
140
137
  "ntests": 46
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: passagemath-repl
3
- Version: 10.4.1
3
+ Version: 10.4.3
4
4
  Summary: passagemath: IPython kernel, Sage preparser, doctester
5
5
  Author-email: The Sage Developers <sage-support@googlegroups.com>
6
6
  License: GNU General Public License (GPL) v2 or later
@@ -25,8 +25,8 @@ Classifier: Programming Language :: Python :: Implementation :: CPython
25
25
  Classifier: Topic :: Scientific/Engineering :: Mathematics
26
26
  Requires-Python: <3.13,>=3.9
27
27
  Description-Content-Type: text/x-rst
28
- Requires-Dist: passagemath-objects~=10.4.1
29
- Requires-Dist: passagemath-environment~=10.4.1
28
+ Requires-Dist: passagemath-objects~=10.4.3
29
+ Requires-Dist: passagemath-environment~=10.4.3
30
30
  Requires-Dist: ipykernel>=5.2.1
31
31
  Requires-Dist: ipython>=7.13.0
32
32
  Requires-Dist: ipywidgets>=7.5.1
@@ -0,0 +1,247 @@
1
+ MANIFEST.in
2
+ README.rst
3
+ VERSION.txt
4
+ known-test-failures.json
5
+ pyproject.toml
6
+ pyproject.toml.m4
7
+ requirements-editable.txt.m4
8
+ requirements.txt.m4
9
+ setup.py
10
+ tox.ini
11
+ bin/math-readline
12
+ bin/sage
13
+ bin/sage-cachegrind
14
+ bin/sage-callgrind
15
+ bin/sage-cleaner
16
+ bin/sage-coverage
17
+ bin/sage-cython
18
+ bin/sage-env
19
+ bin/sage-env-config.in
20
+ bin/sage-eval
21
+ bin/sage-fixdoctests
22
+ bin/sage-grep
23
+ bin/sage-grepdoc
24
+ bin/sage-inline-fortran
25
+ bin/sage-ipynb2rst
26
+ bin/sage-ipython
27
+ bin/sage-list-packages
28
+ bin/sage-massif
29
+ bin/sage-notebook
30
+ bin/sage-num-threads.py
31
+ bin/sage-omega
32
+ bin/sage-preparse
33
+ bin/sage-python
34
+ bin/sage-run
35
+ bin/sage-run-cython
36
+ bin/sage-runtests
37
+ bin/sage-src-env-config.in
38
+ bin/sage-startuptime.py
39
+ bin/sage-update-version
40
+ bin/sage-valgrind
41
+ bin/sage-venv-config
42
+ bin/sage-version.sh
43
+ passagemath_repl.egg-info/PKG-INFO
44
+ passagemath_repl.egg-info/SOURCES.txt
45
+ passagemath_repl.egg-info/dependency_links.txt
46
+ passagemath_repl.egg-info/requires.txt
47
+ passagemath_repl.egg-info/top_level.txt
48
+ sage/all__sagemath_repl.py
49
+ sage/doctest/__init__.py
50
+ sage/doctest/__main__.py
51
+ sage/doctest/all.py
52
+ sage/doctest/check_tolerance.py
53
+ sage/doctest/control.py
54
+ sage/doctest/external.py
55
+ sage/doctest/fixtures.py
56
+ sage/doctest/forker.py
57
+ sage/doctest/marked_output.py
58
+ sage/doctest/parsing.py
59
+ sage/doctest/parsing_test.py
60
+ sage/doctest/reporting.py
61
+ sage/doctest/rif_tol.py
62
+ sage/doctest/sources.py
63
+ sage/doctest/test.py
64
+ sage/doctest/util.py
65
+ sage/doctest/tests/1second.rst
66
+ sage/doctest/tests/99seconds.rst
67
+ sage/doctest/tests/abort.rst
68
+ sage/doctest/tests/atexit.rst
69
+ sage/doctest/tests/fail_and_die.rst
70
+ sage/doctest/tests/initial.rst
71
+ sage/doctest/tests/interrupt.rst
72
+ sage/doctest/tests/interrupt_diehard.rst
73
+ sage/doctest/tests/keyboardinterrupt.rst
74
+ sage/doctest/tests/longtime.rst
75
+ sage/doctest/tests/nodoctest
76
+ sage/doctest/tests/random_seed.rst
77
+ sage/doctest/tests/show_skipped.rst
78
+ sage/doctest/tests/sig_on.rst
79
+ sage/doctest/tests/simple_failure.rst
80
+ sage/doctest/tests/sleep_and_raise.rst
81
+ sage/doctest/tests/tolerance.rst
82
+ sage/misc/all__sagemath_repl.py
83
+ sage/misc/banner.py
84
+ sage/misc/cython.py
85
+ sage/misc/dev_tools.py
86
+ sage/misc/edit_module.py
87
+ sage/misc/explain_pickle.py
88
+ sage/misc/inline_fortran.py
89
+ sage/misc/pager.py
90
+ sage/misc/profiler.py
91
+ sage/misc/sage_eval.py
92
+ sage/misc/sage_input.py
93
+ sage/misc/sagedoc.py
94
+ sage/misc/trace.py
95
+ sage/repl/__init__.py
96
+ sage/repl/all.py
97
+ sage/repl/attach.py
98
+ sage/repl/configuration.py
99
+ sage/repl/image.py
100
+ sage/repl/inputhook.py
101
+ sage/repl/interface_magic.py
102
+ sage/repl/interpreter.py
103
+ sage/repl/ipython_extension.py
104
+ sage/repl/ipython_tests.py
105
+ sage/repl/load.py
106
+ sage/repl/preparse.py
107
+ sage/repl/prompts.py
108
+ sage/repl/user_globals.py
109
+ sage/repl/display/__init__.py
110
+ sage/repl/display/fancy_repr.py
111
+ sage/repl/display/formatter.py
112
+ sage/repl/display/jsmol_iframe.py
113
+ sage/repl/display/pretty_print.py
114
+ sage/repl/display/util.py
115
+ sage/repl/ipython_kernel/__init__.py
116
+ sage/repl/ipython_kernel/__main__.py
117
+ sage/repl/ipython_kernel/all_jupyter.py
118
+ sage/repl/ipython_kernel/install.py
119
+ sage/repl/ipython_kernel/interact.py
120
+ sage/repl/ipython_kernel/kernel.py
121
+ sage/repl/ipython_kernel/widgets.py
122
+ sage/repl/ipython_kernel/widgets_sagenb.py
123
+ sage/repl/rich_output/__init__.py
124
+ sage/repl/rich_output/backend_base.py
125
+ sage/repl/rich_output/backend_doctest.py
126
+ sage/repl/rich_output/backend_emacs.py
127
+ sage/repl/rich_output/backend_ipython.py
128
+ sage/repl/rich_output/buffer.py
129
+ sage/repl/rich_output/display_manager.py
130
+ sage/repl/rich_output/example.avi
131
+ sage/repl/rich_output/example.canvas3d
132
+ sage/repl/rich_output/example.dvi
133
+ sage/repl/rich_output/example.flv
134
+ sage/repl/rich_output/example.gif
135
+ sage/repl/rich_output/example.jpg
136
+ sage/repl/rich_output/example.mkv
137
+ sage/repl/rich_output/example.mov
138
+ sage/repl/rich_output/example.mp4
139
+ sage/repl/rich_output/example.ogv
140
+ sage/repl/rich_output/example.pdf
141
+ sage/repl/rich_output/example.png
142
+ sage/repl/rich_output/example.svg
143
+ sage/repl/rich_output/example.webm
144
+ sage/repl/rich_output/example.wmv
145
+ sage/repl/rich_output/example_jmol.spt.zip
146
+ sage/repl/rich_output/example_wavefront_scene.mtl
147
+ sage/repl/rich_output/example_wavefront_scene.obj
148
+ sage/repl/rich_output/output_basic.py
149
+ sage/repl/rich_output/output_browser.py
150
+ sage/repl/rich_output/output_catalog.py
151
+ sage/repl/rich_output/output_graphics.py
152
+ sage/repl/rich_output/output_graphics3d.py
153
+ sage/repl/rich_output/output_video.py
154
+ sage/repl/rich_output/preferences.py
155
+ sage/repl/rich_output/pretty_print.py
156
+ sage/repl/rich_output/test_backend.py
157
+ sage/tests/__init__.py
158
+ sage/tests/all.py
159
+ sage/tests/article_heuberger_krenn_kropf_fsm-in-sage.py
160
+ sage/tests/arxiv_0812_2725.py
161
+ sage/tests/benchmark.py
162
+ sage/tests/book_schilling_zabrocki_kschur_primer.py
163
+ sage/tests/book_stein_ent.py
164
+ sage/tests/book_stein_modform.py
165
+ sage/tests/cmdline.py
166
+ sage/tests/combinatorial_hopf_algebras.py
167
+ sage/tests/cython.pyx
168
+ sage/tests/finite_poset.py
169
+ sage/tests/functools_partial_src.py
170
+ sage/tests/gosper-sum.py
171
+ sage/tests/lazy_imports.py
172
+ sage/tests/modular_group_cohomology.py
173
+ sage/tests/numpy.py
174
+ sage/tests/parigp.py
175
+ sage/tests/startup.py
176
+ sage/tests/stl_vector.pyx
177
+ sage/tests/symbolic-series.py
178
+ sage/tests/sympy.py
179
+ sage/tests/test_deprecation.py
180
+ sage/tests/books/__init__.py
181
+ sage/tests/books/computational-mathematics-with-sagemath/README
182
+ sage/tests/books/computational-mathematics-with-sagemath/__init__.py
183
+ sage/tests/books/computational-mathematics-with-sagemath/calculus_doctest.py
184
+ sage/tests/books/computational-mathematics-with-sagemath/combinat_doctest.py
185
+ sage/tests/books/computational-mathematics-with-sagemath/domaines_doctest.py
186
+ sage/tests/books/computational-mathematics-with-sagemath/float_doctest.py
187
+ sage/tests/books/computational-mathematics-with-sagemath/graphique_doctest.py
188
+ sage/tests/books/computational-mathematics-with-sagemath/graphtheory_doctest.py
189
+ sage/tests/books/computational-mathematics-with-sagemath/integration_doctest.py
190
+ sage/tests/books/computational-mathematics-with-sagemath/linalg_doctest.py
191
+ sage/tests/books/computational-mathematics-with-sagemath/linsolve_doctest.py
192
+ sage/tests/books/computational-mathematics-with-sagemath/lp_doctest.py
193
+ sage/tests/books/computational-mathematics-with-sagemath/mpoly_doctest.py
194
+ sage/tests/books/computational-mathematics-with-sagemath/nonlinear_doctest.py
195
+ sage/tests/books/computational-mathematics-with-sagemath/numbertheory_doctest.py
196
+ sage/tests/books/computational-mathematics-with-sagemath/polynomes_doctest.py
197
+ sage/tests/books/computational-mathematics-with-sagemath/premierspas_doctest.py
198
+ sage/tests/books/computational-mathematics-with-sagemath/programmation_doctest.py
199
+ sage/tests/books/computational-mathematics-with-sagemath/recequadiff_doctest.py
200
+ sage/tests/books/computational-mathematics-with-sagemath/sol/__init__.py
201
+ sage/tests/books/computational-mathematics-with-sagemath/sol/calculus_doctest.py
202
+ sage/tests/books/computational-mathematics-with-sagemath/sol/combinat_doctest.py
203
+ sage/tests/books/computational-mathematics-with-sagemath/sol/domaines_doctest.py
204
+ sage/tests/books/computational-mathematics-with-sagemath/sol/float_doctest.py
205
+ sage/tests/books/computational-mathematics-with-sagemath/sol/graphique_doctest.py
206
+ sage/tests/books/computational-mathematics-with-sagemath/sol/graphtheory_doctest.py
207
+ sage/tests/books/computational-mathematics-with-sagemath/sol/integration_doctest.py
208
+ sage/tests/books/computational-mathematics-with-sagemath/sol/linalg_doctest.py
209
+ sage/tests/books/computational-mathematics-with-sagemath/sol/linsolve_doctest.py
210
+ sage/tests/books/computational-mathematics-with-sagemath/sol/lp_doctest.py
211
+ sage/tests/books/computational-mathematics-with-sagemath/sol/mpoly_doctest.py
212
+ sage/tests/books/computational-mathematics-with-sagemath/sol/nonlinear_doctest.py
213
+ sage/tests/books/computational-mathematics-with-sagemath/sol/numbertheory_doctest.py
214
+ sage/tests/books/computational-mathematics-with-sagemath/sol/polynomes_doctest.py
215
+ sage/tests/books/computational-mathematics-with-sagemath/sol/recequadiff_doctest.py
216
+ sage/tests/books/judson-abstract-algebra/__init__.py
217
+ sage/tests/books/judson-abstract-algebra/actions-sage-exercises.py
218
+ sage/tests/books/judson-abstract-algebra/actions-sage.py
219
+ sage/tests/books/judson-abstract-algebra/algcodes-sage.py
220
+ sage/tests/books/judson-abstract-algebra/boolean-sage.py
221
+ sage/tests/books/judson-abstract-algebra/cosets-sage-exercises.py
222
+ sage/tests/books/judson-abstract-algebra/cosets-sage.py
223
+ sage/tests/books/judson-abstract-algebra/crypt-sage.py
224
+ sage/tests/books/judson-abstract-algebra/cyclic-sage.py
225
+ sage/tests/books/judson-abstract-algebra/domains-sage.py
226
+ sage/tests/books/judson-abstract-algebra/fields-sage.py
227
+ sage/tests/books/judson-abstract-algebra/finite-sage.py
228
+ sage/tests/books/judson-abstract-algebra/galois-sage.py
229
+ sage/tests/books/judson-abstract-algebra/groups-sage.py
230
+ sage/tests/books/judson-abstract-algebra/homomorph-sage-exercises.py
231
+ sage/tests/books/judson-abstract-algebra/homomorph-sage.py
232
+ sage/tests/books/judson-abstract-algebra/integers-sage.py
233
+ sage/tests/books/judson-abstract-algebra/isomorph-sage.py
234
+ sage/tests/books/judson-abstract-algebra/normal-sage.py
235
+ sage/tests/books/judson-abstract-algebra/permute-sage.py
236
+ sage/tests/books/judson-abstract-algebra/poly-sage.py
237
+ sage/tests/books/judson-abstract-algebra/rings-sage.py
238
+ sage/tests/books/judson-abstract-algebra/sets-sage.py
239
+ sage/tests/books/judson-abstract-algebra/struct-sage.py
240
+ sage/tests/books/judson-abstract-algebra/sylow-sage.py
241
+ sage/tests/books/judson-abstract-algebra/vect-sage-exercises.py
242
+ sage/tests/books/judson-abstract-algebra/vect-sage.py
243
+ sage/tests/memcheck/__init__.py
244
+ sage/tests/memcheck/run_tests.py
245
+ sage/tests/memcheck/run_tests_in_valgrind.py
246
+ sage/tests/memcheck/symbolic_expression.py
247
+ sage/tests/memcheck/verify_no_leak.py
@@ -1,5 +1,5 @@
1
- passagemath-objects~=10.4.1
2
- passagemath-environment~=10.4.1
1
+ passagemath-objects~=10.4.3
2
+ passagemath-environment~=10.4.3
3
3
  ipykernel>=5.2.1
4
4
  ipython>=7.13.0
5
5
  ipywidgets>=7.5.1
@@ -3,7 +3,6 @@
3
3
  # Minimum requirements for the build system to execute.
4
4
  requires = [
5
5
  'setuptools >= 68.1.1',
6
- 'wheel >=0.36.2',
7
6
  ]
8
7
  build-backend = "setuptools.build_meta"
9
8
 
@@ -11,8 +10,8 @@ build-backend = "setuptools.build_meta"
11
10
  name = "passagemath-repl"
12
11
  description = "passagemath: IPython kernel, Sage preparser, doctester"
13
12
  dependencies = [
14
- 'passagemath-objects ~= 10.4.1',
15
- 'passagemath-environment ~= 10.4.1',
13
+ 'passagemath-objects ~= 10.4.3',
14
+ 'passagemath-environment ~= 10.4.3',
16
15
  'ipykernel >=5.2.1',
17
16
  'ipython >=7.13.0',
18
17
  'ipywidgets >=7.5.1',
@@ -64,6 +63,14 @@ py-modules = [
64
63
  "sage.misc.sagedoc",
65
64
  "sage.misc.sage_input",
66
65
  "sage.misc.sage_eval",
66
+ "sage.misc.explain_pickle",
67
+ "sage.misc.trace",
68
+ "sage.misc.profiler",
69
+ "sage.misc.dev_tools",
70
+ "sage.misc.edit_module",
71
+ "sage.misc.pager",
72
+ "sage.misc.cython",
73
+ "sage.misc.inline_fortran",
67
74
  ]
68
75
  packages = [
69
76
  "sage.doctest",
@@ -71,6 +78,7 @@ packages = [
71
78
  "sage.repl.display",
72
79
  "sage.repl.ipython_kernel",
73
80
  "sage.repl.rich_output",
81
+ "sage.tests",
74
82
  ]
75
83
  script-files = [
76
84
  # Other scripts that should be in the path also for OS packaging of sage:
@@ -3,7 +3,6 @@ include(`sage_spkg_versions_toml.m4')dnl' -*- conf-toml -*-
3
3
  # Minimum requirements for the build system to execute.
4
4
  requires = [
5
5
  SPKG_INSTALL_REQUIRES_setuptools
6
- SPKG_INSTALL_REQUIRES_wheel
7
6
  ]
8
7
  build-backend = "setuptools.build_meta"
9
8
 
@@ -39,6 +38,14 @@ py-modules = [
39
38
  "sage.misc.sagedoc",
40
39
  "sage.misc.sage_input",
41
40
  "sage.misc.sage_eval",
41
+ "sage.misc.explain_pickle",
42
+ "sage.misc.trace",
43
+ "sage.misc.profiler",
44
+ "sage.misc.dev_tools",
45
+ "sage.misc.edit_module",
46
+ "sage.misc.pager",
47
+ "sage.misc.cython",
48
+ "sage.misc.inline_fortran",
42
49
  ]
43
50
  packages = [
44
51
  "sage.doctest",
@@ -46,6 +53,7 @@ packages = [
46
53
  "sage.repl.display",
47
54
  "sage.repl.ipython_kernel",
48
55
  "sage.repl.rich_output",
56
+ "sage.tests",
49
57
  ]
50
58
  script-files = [
51
59
  # Other scripts that should be in the path also for OS packaging of sage:
@@ -145,6 +145,7 @@ class Timer:
145
145
 
146
146
  EXAMPLES::
147
147
 
148
+ sage: # needs sage.schemes
148
149
  sage: from sage.doctest.util import Timer
149
150
  sage: Timer().start().annotate(EllipticCurve)
150
151
  sage: EllipticCurve.cputime # random
@@ -0,0 +1,46 @@
1
+ # sage_setup: distribution = sagemath-repl
2
+
3
+ from sage.misc.all__sagemath_objects import *
4
+
5
+ from sage.misc.sage_eval import sage_eval, sageobj
6
+
7
+ from sage.misc.sage_input import sage_input
8
+
9
+ from sage.misc.banner import version
10
+
11
+ lazy_import('sage.misc.banner', 'banner', deprecation=34259)
12
+
13
+ lazy_import('sage.misc.sagedoc', ['browse_sage_doc',
14
+ 'search_src', 'search_def', 'search_doc',
15
+ 'tutorial', 'reference', 'manual', 'developer',
16
+ 'constructions', 'help'])
17
+
18
+ lazy_import('pydoc', 'help', 'python_help')
19
+
20
+ from sage.misc.explain_pickle import (explain_pickle, unpickle_newobj, unpickle_build,
21
+ unpickle_instantiate, unpickle_persistent,
22
+ unpickle_extension, unpickle_appends)
23
+
24
+ lazy_import('sage.misc.trace', 'trace', deprecation=34259)
25
+
26
+ lazy_import('sage.misc.profiler', 'Profiler', deprecation=34259)
27
+
28
+ from sage.misc.dev_tools import import_statements
29
+
30
+ lazy_import('sage.misc.dev_tools', 'runsnake', deprecation=34259)
31
+
32
+ from sage.misc.edit_module import edit
33
+
34
+ lazy_import('sage.misc.edit_module', 'set_edit_template', deprecation=34259)
35
+
36
+ lazy_import('sage.misc.pager', 'pager')
37
+
38
+
39
+ lazy_import("sage.misc.cython", "cython_lambda")
40
+ lazy_import("sage.misc.cython", "cython_compile", "cython")
41
+ lazy_import('sage.misc.inline_fortran', 'fortran')
42
+
43
+ lazy_import('sage.misc.package', ('installed_packages', 'is_package_installed',
44
+ 'package_versions'),
45
+ deprecation=34259)
46
+ lazy_import('sage.misc.benchmark', 'benchmark', deprecation=34259)