passagemath-objects 10.6.46__cp314-cp314t-macosx_13_0_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of passagemath-objects might be problematic. Click here for more details.

Files changed (280) hide show
  1. passagemath_objects/.dylibs/libgmp.10.dylib +0 -0
  2. passagemath_objects/__init__.py +3 -0
  3. passagemath_objects-10.6.46.dist-info/METADATA +115 -0
  4. passagemath_objects-10.6.46.dist-info/RECORD +280 -0
  5. passagemath_objects-10.6.46.dist-info/WHEEL +6 -0
  6. passagemath_objects-10.6.46.dist-info/top_level.txt +3 -0
  7. sage/all__sagemath_objects.py +37 -0
  8. sage/arith/all__sagemath_objects.py +5 -0
  9. sage/arith/long.pxd +411 -0
  10. sage/arith/numerical_approx.cpython-314t-darwin.so +0 -0
  11. sage/arith/numerical_approx.pxd +35 -0
  12. sage/arith/numerical_approx.pyx +75 -0
  13. sage/arith/power.cpython-314t-darwin.so +0 -0
  14. sage/arith/power.pxd +31 -0
  15. sage/arith/power.pyx +127 -0
  16. sage/categories/action.cpython-314t-darwin.so +0 -0
  17. sage/categories/action.pxd +29 -0
  18. sage/categories/action.pyx +641 -0
  19. sage/categories/algebra_functor.py +745 -0
  20. sage/categories/all__sagemath_objects.py +33 -0
  21. sage/categories/basic.py +62 -0
  22. sage/categories/cartesian_product.py +295 -0
  23. sage/categories/category.py +3401 -0
  24. sage/categories/category_cy_helper.cpython-314t-darwin.so +0 -0
  25. sage/categories/category_cy_helper.pxd +8 -0
  26. sage/categories/category_cy_helper.pyx +322 -0
  27. sage/categories/category_singleton.cpython-314t-darwin.so +0 -0
  28. sage/categories/category_singleton.pxd +3 -0
  29. sage/categories/category_singleton.pyx +342 -0
  30. sage/categories/category_types.py +637 -0
  31. sage/categories/category_with_axiom.py +2876 -0
  32. sage/categories/covariant_functorial_construction.py +703 -0
  33. sage/categories/facade_sets.py +228 -0
  34. sage/categories/functor.cpython-314t-darwin.so +0 -0
  35. sage/categories/functor.pxd +7 -0
  36. sage/categories/functor.pyx +691 -0
  37. sage/categories/homset.py +1338 -0
  38. sage/categories/homsets.py +364 -0
  39. sage/categories/isomorphic_objects.py +73 -0
  40. sage/categories/map.cpython-314t-darwin.so +0 -0
  41. sage/categories/map.pxd +34 -0
  42. sage/categories/map.pyx +2106 -0
  43. sage/categories/morphism.cpython-314t-darwin.so +0 -0
  44. sage/categories/morphism.pxd +14 -0
  45. sage/categories/morphism.pyx +895 -0
  46. sage/categories/objects.py +167 -0
  47. sage/categories/primer.py +1696 -0
  48. sage/categories/pushout.py +4834 -0
  49. sage/categories/quotients.py +64 -0
  50. sage/categories/realizations.py +200 -0
  51. sage/categories/sets_cat.py +3290 -0
  52. sage/categories/sets_with_partial_maps.py +52 -0
  53. sage/categories/subobjects.py +64 -0
  54. sage/categories/subquotients.py +21 -0
  55. sage/categories/with_realizations.py +311 -0
  56. sage/cpython/__init__.py +19 -0
  57. sage/cpython/_py2_random.py +619 -0
  58. sage/cpython/all.py +3 -0
  59. sage/cpython/atexit.cpython-314t-darwin.so +0 -0
  60. sage/cpython/atexit.pyx +269 -0
  61. sage/cpython/builtin_types.cpython-314t-darwin.so +0 -0
  62. sage/cpython/builtin_types.pyx +7 -0
  63. sage/cpython/cython_metaclass.cpython-314t-darwin.so +0 -0
  64. sage/cpython/cython_metaclass.h +117 -0
  65. sage/cpython/cython_metaclass.pxd +3 -0
  66. sage/cpython/cython_metaclass.pyx +130 -0
  67. sage/cpython/debug.cpython-314t-darwin.so +0 -0
  68. sage/cpython/debug.pyx +302 -0
  69. sage/cpython/dict_del_by_value.cpython-314t-darwin.so +0 -0
  70. sage/cpython/dict_del_by_value.pxd +9 -0
  71. sage/cpython/dict_del_by_value.pyx +191 -0
  72. sage/cpython/dict_internal.h +245 -0
  73. sage/cpython/getattr.cpython-314t-darwin.so +0 -0
  74. sage/cpython/getattr.pxd +9 -0
  75. sage/cpython/getattr.pyx +439 -0
  76. sage/cpython/pycore_long.h +97 -0
  77. sage/cpython/pycore_long.pxd +10 -0
  78. sage/cpython/python_debug.h +44 -0
  79. sage/cpython/python_debug.pxd +47 -0
  80. sage/cpython/pyx_visit.h +13 -0
  81. sage/cpython/string.cpython-314t-darwin.so +0 -0
  82. sage/cpython/string.pxd +76 -0
  83. sage/cpython/string.pyx +34 -0
  84. sage/cpython/string_impl.h +60 -0
  85. sage/cpython/type.cpython-314t-darwin.so +0 -0
  86. sage/cpython/type.pxd +2 -0
  87. sage/cpython/type.pyx +40 -0
  88. sage/cpython/wrapperdescr.pxd +67 -0
  89. sage/ext/all__sagemath_objects.py +3 -0
  90. sage/ext/ccobject.h +64 -0
  91. sage/ext/cplusplus.pxd +17 -0
  92. sage/ext/mod_int.h +30 -0
  93. sage/ext/mod_int.pxd +24 -0
  94. sage/ext/stdsage.pxd +39 -0
  95. sage/groups/all__sagemath_objects.py +1 -0
  96. sage/groups/group.cpython-314t-darwin.so +0 -0
  97. sage/groups/group.pxd +14 -0
  98. sage/groups/group.pyx +322 -0
  99. sage/groups/old.cpython-314t-darwin.so +0 -0
  100. sage/groups/old.pxd +14 -0
  101. sage/groups/old.pyx +219 -0
  102. sage/libs/all__sagemath_objects.py +3 -0
  103. sage/libs/gmp/__init__.py +1 -0
  104. sage/libs/gmp/all.pxd +6 -0
  105. sage/libs/gmp/binop.pxd +23 -0
  106. sage/libs/gmp/misc.pxd +8 -0
  107. sage/libs/gmp/mpf.pxd +88 -0
  108. sage/libs/gmp/mpn.pxd +57 -0
  109. sage/libs/gmp/mpq.pxd +57 -0
  110. sage/libs/gmp/mpz.pxd +202 -0
  111. sage/libs/gmp/pylong.cpython-314t-darwin.so +0 -0
  112. sage/libs/gmp/pylong.pxd +12 -0
  113. sage/libs/gmp/pylong.pyx +150 -0
  114. sage/libs/gmp/random.pxd +25 -0
  115. sage/libs/gmp/randomize.pxd +59 -0
  116. sage/libs/gmp/types.pxd +53 -0
  117. sage/libs/gmpxx.pxd +19 -0
  118. sage/misc/abstract_method.py +276 -0
  119. sage/misc/all__sagemath_objects.py +43 -0
  120. sage/misc/bindable_class.py +253 -0
  121. sage/misc/c3_controlled.cpython-314t-darwin.so +0 -0
  122. sage/misc/c3_controlled.pxd +2 -0
  123. sage/misc/c3_controlled.pyx +1402 -0
  124. sage/misc/cachefunc.cpython-314t-darwin.so +0 -0
  125. sage/misc/cachefunc.pxd +43 -0
  126. sage/misc/cachefunc.pyx +3781 -0
  127. sage/misc/call.py +188 -0
  128. sage/misc/classcall_metaclass.cpython-314t-darwin.so +0 -0
  129. sage/misc/classcall_metaclass.pxd +14 -0
  130. sage/misc/classcall_metaclass.pyx +599 -0
  131. sage/misc/constant_function.cpython-314t-darwin.so +0 -0
  132. sage/misc/constant_function.pyx +130 -0
  133. sage/misc/decorators.py +747 -0
  134. sage/misc/fast_methods.cpython-314t-darwin.so +0 -0
  135. sage/misc/fast_methods.pxd +20 -0
  136. sage/misc/fast_methods.pyx +351 -0
  137. sage/misc/flatten.py +90 -0
  138. sage/misc/fpickle.cpython-314t-darwin.so +0 -0
  139. sage/misc/fpickle.pyx +177 -0
  140. sage/misc/function_mangling.cpython-314t-darwin.so +0 -0
  141. sage/misc/function_mangling.pxd +11 -0
  142. sage/misc/function_mangling.pyx +308 -0
  143. sage/misc/inherit_comparison.cpython-314t-darwin.so +0 -0
  144. sage/misc/inherit_comparison.pxd +5 -0
  145. sage/misc/inherit_comparison.pyx +105 -0
  146. sage/misc/instancedoc.cpython-314t-darwin.so +0 -0
  147. sage/misc/instancedoc.pyx +331 -0
  148. sage/misc/lazy_attribute.cpython-314t-darwin.so +0 -0
  149. sage/misc/lazy_attribute.pyx +607 -0
  150. sage/misc/lazy_format.py +135 -0
  151. sage/misc/lazy_import.cpython-314t-darwin.so +0 -0
  152. sage/misc/lazy_import.pyx +1299 -0
  153. sage/misc/lazy_import_cache.py +36 -0
  154. sage/misc/lazy_list.cpython-314t-darwin.so +0 -0
  155. sage/misc/lazy_list.pxd +19 -0
  156. sage/misc/lazy_list.pyx +1187 -0
  157. sage/misc/lazy_string.cpython-314t-darwin.so +0 -0
  158. sage/misc/lazy_string.pxd +7 -0
  159. sage/misc/lazy_string.pyx +546 -0
  160. sage/misc/misc.py +1066 -0
  161. sage/misc/misc_c.cpython-314t-darwin.so +0 -0
  162. sage/misc/misc_c.pxd +3 -0
  163. sage/misc/misc_c.pyx +766 -0
  164. sage/misc/namespace_package.py +37 -0
  165. sage/misc/nested_class.cpython-314t-darwin.so +0 -0
  166. sage/misc/nested_class.pxd +3 -0
  167. sage/misc/nested_class.pyx +394 -0
  168. sage/misc/persist.cpython-314t-darwin.so +0 -0
  169. sage/misc/persist.pyx +1251 -0
  170. sage/misc/prandom.py +418 -0
  171. sage/misc/randstate.cpython-314t-darwin.so +0 -0
  172. sage/misc/randstate.pxd +30 -0
  173. sage/misc/randstate.pyx +1059 -0
  174. sage/misc/repr.py +203 -0
  175. sage/misc/reset.cpython-314t-darwin.so +0 -0
  176. sage/misc/reset.pyx +196 -0
  177. sage/misc/sage_ostools.cpython-314t-darwin.so +0 -0
  178. sage/misc/sage_ostools.pyx +323 -0
  179. sage/misc/sage_timeit.py +275 -0
  180. sage/misc/sage_timeit_class.cpython-314t-darwin.so +0 -0
  181. sage/misc/sage_timeit_class.pyx +120 -0
  182. sage/misc/sage_unittest.py +637 -0
  183. sage/misc/sageinspect.py +2768 -0
  184. sage/misc/session.cpython-314t-darwin.so +0 -0
  185. sage/misc/session.pyx +392 -0
  186. sage/misc/superseded.py +557 -0
  187. sage/misc/test_nested_class.py +228 -0
  188. sage/misc/timing.py +264 -0
  189. sage/misc/unknown.py +222 -0
  190. sage/misc/verbose.py +253 -0
  191. sage/misc/weak_dict.cpython-314t-darwin.so +0 -0
  192. sage/misc/weak_dict.pxd +15 -0
  193. sage/misc/weak_dict.pyx +1231 -0
  194. sage/modules/all__sagemath_objects.py +1 -0
  195. sage/modules/module.cpython-314t-darwin.so +0 -0
  196. sage/modules/module.pxd +5 -0
  197. sage/modules/module.pyx +329 -0
  198. sage/rings/all__sagemath_objects.py +3 -0
  199. sage/rings/integer_fake.h +22 -0
  200. sage/rings/integer_fake.pxd +55 -0
  201. sage/sets/all__sagemath_objects.py +3 -0
  202. sage/sets/pythonclass.cpython-314t-darwin.so +0 -0
  203. sage/sets/pythonclass.pxd +9 -0
  204. sage/sets/pythonclass.pyx +247 -0
  205. sage/structure/__init__.py +4 -0
  206. sage/structure/all.py +30 -0
  207. sage/structure/category_object.cpython-314t-darwin.so +0 -0
  208. sage/structure/category_object.pxd +28 -0
  209. sage/structure/category_object.pyx +1087 -0
  210. sage/structure/coerce.cpython-314t-darwin.so +0 -0
  211. sage/structure/coerce.pxd +44 -0
  212. sage/structure/coerce.pyx +2107 -0
  213. sage/structure/coerce_actions.cpython-314t-darwin.so +0 -0
  214. sage/structure/coerce_actions.pxd +27 -0
  215. sage/structure/coerce_actions.pyx +988 -0
  216. sage/structure/coerce_dict.cpython-314t-darwin.so +0 -0
  217. sage/structure/coerce_dict.pxd +51 -0
  218. sage/structure/coerce_dict.pyx +1557 -0
  219. sage/structure/coerce_exceptions.py +23 -0
  220. sage/structure/coerce_maps.cpython-314t-darwin.so +0 -0
  221. sage/structure/coerce_maps.pxd +28 -0
  222. sage/structure/coerce_maps.pyx +718 -0
  223. sage/structure/debug_options.cpython-314t-darwin.so +0 -0
  224. sage/structure/debug_options.pxd +6 -0
  225. sage/structure/debug_options.pyx +54 -0
  226. sage/structure/dynamic_class.py +541 -0
  227. sage/structure/element.cpython-314t-darwin.so +0 -0
  228. sage/structure/element.pxd +272 -0
  229. sage/structure/element.pyx +4772 -0
  230. sage/structure/element_wrapper.cpython-314t-darwin.so +0 -0
  231. sage/structure/element_wrapper.pxd +12 -0
  232. sage/structure/element_wrapper.pyx +582 -0
  233. sage/structure/factorization.py +1422 -0
  234. sage/structure/factorization_integer.py +105 -0
  235. sage/structure/factory.cpython-314t-darwin.so +0 -0
  236. sage/structure/factory.pyx +786 -0
  237. sage/structure/formal_sum.py +489 -0
  238. sage/structure/gens_py.py +73 -0
  239. sage/structure/global_options.py +1743 -0
  240. sage/structure/indexed_generators.py +863 -0
  241. sage/structure/list_clone.cpython-314t-darwin.so +0 -0
  242. sage/structure/list_clone.pxd +65 -0
  243. sage/structure/list_clone.pyx +1867 -0
  244. sage/structure/list_clone_demo.cpython-314t-darwin.so +0 -0
  245. sage/structure/list_clone_demo.pyx +248 -0
  246. sage/structure/list_clone_timings.py +179 -0
  247. sage/structure/list_clone_timings_cy.cpython-314t-darwin.so +0 -0
  248. sage/structure/list_clone_timings_cy.pyx +86 -0
  249. sage/structure/mutability.cpython-314t-darwin.so +0 -0
  250. sage/structure/mutability.pxd +21 -0
  251. sage/structure/mutability.pyx +348 -0
  252. sage/structure/nonexact.py +69 -0
  253. sage/structure/parent.cpython-314t-darwin.so +0 -0
  254. sage/structure/parent.pxd +112 -0
  255. sage/structure/parent.pyx +3093 -0
  256. sage/structure/parent_base.cpython-314t-darwin.so +0 -0
  257. sage/structure/parent_base.pxd +13 -0
  258. sage/structure/parent_base.pyx +44 -0
  259. sage/structure/parent_gens.cpython-314t-darwin.so +0 -0
  260. sage/structure/parent_gens.pxd +22 -0
  261. sage/structure/parent_gens.pyx +377 -0
  262. sage/structure/parent_old.cpython-314t-darwin.so +0 -0
  263. sage/structure/parent_old.pxd +25 -0
  264. sage/structure/parent_old.pyx +294 -0
  265. sage/structure/proof/__init__.py +1 -0
  266. sage/structure/proof/all.py +243 -0
  267. sage/structure/proof/proof.py +300 -0
  268. sage/structure/richcmp.cpython-314t-darwin.so +0 -0
  269. sage/structure/richcmp.pxd +213 -0
  270. sage/structure/richcmp.pyx +495 -0
  271. sage/structure/sage_object.cpython-314t-darwin.so +0 -0
  272. sage/structure/sage_object.pxd +3 -0
  273. sage/structure/sage_object.pyx +988 -0
  274. sage/structure/sage_object_test.py +19 -0
  275. sage/structure/sequence.py +937 -0
  276. sage/structure/set_factories.py +1178 -0
  277. sage/structure/set_factories_example.py +527 -0
  278. sage/structure/support_view.py +179 -0
  279. sage/structure/test_factory.py +56 -0
  280. sage/structure/unique_representation.py +1359 -0
@@ -0,0 +1,3 @@
1
+ # sage_setup: distribution = sagemath-objects
2
+
3
+ from sage.all__sagemath_objects import *
@@ -0,0 +1,115 @@
1
+ Metadata-Version: 2.4
2
+ Name: passagemath-objects
3
+ Version: 10.6.46
4
+ Summary: passagemath: Sage objects, elements, parents, categories, coercion, metaclasses
5
+ Author-email: The Sage Developers <sage-support@googlegroups.com>
6
+ Maintainer: Matthias Köppe, passagemath contributors
7
+ License-Expression: GPL-2.0-or-later
8
+ Project-URL: release notes, https://github.com/passagemath/passagemath/releases
9
+ Project-URL: repo (upstream), https://github.com/sagemath/sage
10
+ Project-URL: repo, https://github.com/passagemath/passagemath
11
+ Project-URL: documentation, https://passagemath.org/docs/latest
12
+ Project-URL: homepage (upstream), https://www.sagemath.org
13
+ Project-URL: discourse, https://passagemath.discourse.group
14
+ Project-URL: tracker (upstream), https://github.com/sagemath/sage/issues
15
+ Project-URL: tracker, https://github.com/passagemath/passagemath/issues
16
+ Classifier: Development Status :: 6 - Mature
17
+ Classifier: Intended Audience :: Education
18
+ Classifier: Intended Audience :: Science/Research
19
+ Classifier: Operating System :: POSIX
20
+ Classifier: Operating System :: POSIX :: Linux
21
+ Classifier: Operating System :: MacOS :: MacOS X
22
+ Classifier: Operating System :: Microsoft :: Windows
23
+ Classifier: Programming Language :: Python :: 3 :: Only
24
+ Classifier: Programming Language :: Python :: 3.10
25
+ Classifier: Programming Language :: Python :: 3.11
26
+ Classifier: Programming Language :: Python :: 3.12
27
+ Classifier: Programming Language :: Python :: 3.13
28
+ Classifier: Programming Language :: Python :: 3.14
29
+ Classifier: Programming Language :: Python :: Implementation :: CPython
30
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
31
+ Requires-Python: <3.15,>=3.10
32
+ Description-Content-Type: text/x-rst
33
+ Requires-Dist: gmpy2~=2.1.b999
34
+ Requires-Dist: cysignals!=1.12.4; sys_platform == "win32"
35
+ Requires-Dist: cysignals!=1.12.0,>=1.11.2
36
+ Requires-Dist: typing_extensions>=4.7.0; python_version < "3.13"
37
+ Provides-Extra: test
38
+
39
+ ============================================================================================================
40
+ passagemath: Sage objects, elements, parents, categories, coercion, metaclasses
41
+ ============================================================================================================
42
+
43
+ `passagemath <https://github.com/passagemath/passagemath>`__ is open
44
+ source mathematical software in Python, released under the GNU General
45
+ Public Licence GPLv2+.
46
+
47
+ It is a fork of `SageMath <https://www.sagemath.org/>`__, which has been
48
+ developed 2005-2025 under the motto “Creating a Viable Open Source
49
+ Alternative to Magma, Maple, Mathematica, and MATLAB”.
50
+
51
+ The passagemath fork uses the motto "Creating a Free Passage Between the
52
+ Scientific Python Ecosystem and Mathematical Software Communities."
53
+ It was created in October 2024 with the following goals:
54
+
55
+ - providing modularized installation with pip,
56
+ - establishing first-class membership in the scientific Python
57
+ ecosystem,
58
+ - giving `clear attribution of upstream
59
+ projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,
60
+ - providing independently usable Python interfaces to upstream
61
+ libraries,
62
+ - offering `platform portability and integration testing
63
+ services <https://github.com/passagemath/passagemath/issues/704>`__
64
+ to upstream projects,
65
+ - inviting collaborations with upstream projects,
66
+ - `building a professional, respectful, inclusive
67
+ community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
68
+ - `empowering Sage users to participate in the scientific Python ecosystem
69
+ <https://github.com/passagemath/passagemath/issues/248>`__ by publishing packages,
70
+ - developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
71
+ serverless deployment with Javascript,
72
+ - developing a native Windows port.
73
+
74
+ `Full documentation <https://passagemath.org/docs/latest/html/en/index.html>`__ is
75
+ available online.
76
+
77
+ passagemath attempts to support and provides binary wheels suitable for
78
+ all major Linux distributions and recent versions of macOS.
79
+
80
+ Binary wheels for native Windows (x86_64) are are available for a subset of
81
+ the passagemath distributions. Use of the full functionality of passagemath
82
+ on Windows currently requires the use of Windows Subsystem for Linux (WSL)
83
+ or virtualization.
84
+
85
+ The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.14.x.
86
+
87
+
88
+ About this pip-installable distribution package
89
+ -----------------------------------------------
90
+
91
+ The pip-installable distribution package ``passagemath-objects`` is a
92
+ distribution of a small part of the Sage Library.
93
+
94
+ It provides a small, fundamental subset of the modules of the Sage library
95
+ ("sagelib", ``passagemath-standard``), making Sage objects, the element/parent
96
+ framework, categories, the coercion system and the related metaclasses
97
+ available.
98
+
99
+
100
+ Dependencies
101
+ ------------
102
+
103
+ When building from source, development packages of ``gmp``, ``mpfr``, and ``mpc`` are needed.
104
+
105
+
106
+ Documentation
107
+ -------------
108
+
109
+ * `Categories <https://passagemath.org/docs/latest/html/en/reference/categories/index.html>`_
110
+
111
+ * `Structure <https://passagemath.org/docs/latest/html/en/reference/structure/index.html>`_
112
+
113
+ * `Coercion <https://passagemath.org/docs/latest/html/en/reference/coercion/index.html>`_
114
+
115
+ * `Classes, Metaclasses <https://passagemath.org/docs/latest/html/en/reference/misc/index.html#special-base-classes-decorators-etc>`_
@@ -0,0 +1,280 @@
1
+ passagemath_objects-10.6.46.dist-info/RECORD,,
2
+ passagemath_objects-10.6.46.dist-info/WHEEL,sha256=RVsjh5yijuLhpAeoj1rcJ6CnX6JK7wyaBksB-qUN_2E,155
3
+ passagemath_objects-10.6.46.dist-info/top_level.txt,sha256=0d3_E_m23cmoshzIf-G9mEsF55wtJLZjnTM551qb3uc,26
4
+ passagemath_objects-10.6.46.dist-info/METADATA,sha256=U3eISQDG4bEBC_HoV-gs3BdA69SOMdDyVzwPHCuDmj4,5320
5
+ passagemath_objects/__init__.py,sha256=t9J2tkWRjwi9Skhh1Ubj5Te0uvFwkpXUhX8IwP4Ba4U,88
6
+ passagemath_objects/.dylibs/libgmp.10.dylib,sha256=7dhTogpeYdTt59hV7oQXapHQbdCrMOwHrHxiPke8q4k,488712
7
+ sage/all__sagemath_objects.py,sha256=NVxVF3fEVtmNUxMKNHjkVqgXO4-AsnV6iuMsgVh3l_4,804
8
+ sage/misc/c3_controlled.cpython-314t-darwin.so,sha256=sJ-apPjuDJv1mo_dRAfxadWKfhqRmo0hWSaxhtSlkvg,290544
9
+ sage/misc/superseded.py,sha256=3K8MzLbmNupi8gMwYaYK68F7YNaYWTVsI9YO1z0TxBE,19934
10
+ sage/misc/prandom.py,sha256=vnbY62JYLu5_5L1nGbq1SoHkt0ScGBrx-LisbzhM2YY,12432
11
+ sage/misc/verbose.py,sha256=KGMJeArKTqIPTgTxRq4YsSyY7KwZov0m1VmzfImmbUc,6636
12
+ sage/misc/classcall_metaclass.pyx,sha256=Oyg4mTaGRJXh9CdIoFRgvaKaGzF-DM8b3oaDkTmO9rs,21266
13
+ sage/misc/misc.py,sha256=3M5ekIsxGhmZOR2c1AzChqurp7rQl-ErMOe-R1lO_BA,30450
14
+ sage/misc/sage_timeit.py,sha256=9ihN5_yEH5booVXF3HMRMNI_K9-d-hw5bThZt0xleAg,9209
15
+ sage/misc/instancedoc.cpython-314t-darwin.so,sha256=OSKLEERLE32uq03LKkDM1i3tOV-sGhXM3hSBMo6z8m8,66880
16
+ sage/misc/cachefunc.cpython-314t-darwin.so,sha256=2L-DsXHgAihHxT4BWn0hFTGE2dO0a8EejTRZhrnqx8E,494296
17
+ sage/misc/inherit_comparison.cpython-314t-darwin.so,sha256=kRrf2_rKcVHG7yhPt3X6-KjUEOZTUVor3RhiykpRcS4,42008
18
+ sage/misc/weak_dict.pyx,sha256=0gbKGb_Fovx_pIblCYMwsVwxLfTGpU9CgI9n65N8OF0,41601
19
+ sage/misc/flatten.py,sha256=BMribQzTuNq4JqjNkTtla9mEUb7QVCBhskj9rLWAiuQ,2739
20
+ sage/misc/sage_timeit_class.pyx,sha256=3IIxeFsvD7gxemBNgP_tnhuwMWjPiVdUTKQshSHWSxk,3908
21
+ sage/misc/fast_methods.cpython-314t-darwin.so,sha256=0kQLvJAtmHuX9gK5ZGT5EHoPK6GaJ1UXRUMeJiWzLhw,87176
22
+ sage/misc/lazy_string.pyx,sha256=kjC5HtApqcYKUv4VGXK0_zjUqJ_HdLzXAUW5Ws9FdJA,16280
23
+ sage/misc/c3_controlled.pyx,sha256=a3z5yOBzNLzcMS085cQH6S1heXHCU4zT32SvU0ng6F4,56078
24
+ sage/misc/lazy_import_cache.py,sha256=7UUPsvP7XLFIcXZee9tg8jB_0luUr-z3lxTPd8dsU2Y,1005
25
+ sage/misc/instancedoc.pyx,sha256=ml1-c_SKHAnww2zwkJTXbuf2TSHJXtNYQstTSCRipFo,11125
26
+ sage/misc/reset.pyx,sha256=9xnGnC8yOv-3MKXXEAWcnuc7WLrw6lZQDLqsC91rQ5Y,5675
27
+ sage/misc/randstate.cpython-314t-darwin.so,sha256=eI7XrdnV0UvYxIelSwSGkvEHIiOlYLnJEMtwFQ6c_KM,134704
28
+ sage/misc/sage_ostools.pyx,sha256=CaDOaTvu2JXfOwJk8wsgTF_OT_ivjugrqVvBa2FvvqA,9287
29
+ sage/misc/function_mangling.pyx,sha256=bVzo7-pJq0kNLBvR4W3AVuCCr7JrVVnj-9oqEq0bQLI,10873
30
+ sage/misc/sage_timeit_class.cpython-314t-darwin.so,sha256=LigZGIaektAc9_GGR1MapUuahkzmOcxpnhMHc1LHm5U,67288
31
+ sage/misc/lazy_list.pyx,sha256=ib3TZpxutctPqQ2bAwTGVJgo4YIJv8wmKfiBvoBtIsM,38313
32
+ sage/misc/lazy_import.cpython-314t-darwin.so,sha256=F64l5ZOjpBZi8dYxvRvzxm_Gx5kF5AoLZMsNOm7nebs,227120
33
+ sage/misc/lazy_list.cpython-314t-darwin.so,sha256=avmDdiFFGo_xWLEQ8i83270HJ4kbrOkSeihN4c8Cngg,199544
34
+ sage/misc/nested_class.pxd,sha256=8jncbDWcavg4ZjbrbtXscGagkcMVU-ZDYH4k15jZyc4,94
35
+ sage/misc/fast_methods.pyx,sha256=RrRNp3UNliUhKPdIXz_mxu1BL_7iHze4vx7Ulpyaw84,11976
36
+ sage/misc/misc_c.pxd,sha256=6ijmZ05ZScqQVt6NfUEaSbHijl_JK2U4JQlV_E8SxR0,96
37
+ sage/misc/cachefunc.pyx,sha256=H2S0-A5IQEOvKZ4XDwq1_3kuCkc5dzVvwL_6FbRKW-Q,127246
38
+ sage/misc/session.pyx,sha256=vxqDy-kT1QEplhoyuDlRM6WiWmFfYLDZiOmy-gwl3gE,11770
39
+ sage/misc/inherit_comparison.pxd,sha256=vV-3Ek7tnZ-05_uFZwTAYTjsFM5OR5qFknyDu9jJTwU,139
40
+ sage/misc/randstate.pxd,sha256=LERpWdd_7yS8mD_MYIES5yxA-Zh060remnG4jROIApc,746
41
+ sage/misc/repr.py,sha256=Q8sxfz4xNPGbHlMuKnIeAsH2LaZtXKkKwkHEZLlwFic,6987
42
+ sage/misc/randstate.pyx,sha256=gmiTORYmK3lx44l6XWxkjCcD5PO4rHvEJ94TE7K_6bQ,38090
43
+ sage/misc/inherit_comparison.pyx,sha256=qitU_YiVHB-9wHUMh3M2ewuee0DMd7Kq7ZPJXxchjzI,3828
44
+ sage/misc/cachefunc.pxd,sha256=4c9YK_wVbUSit4f5LtoZsgV43_49S_P6LbrO-LDwl9w,1163
45
+ sage/misc/fast_methods.pxd,sha256=A0ImtHm4rQ0JAxnCygpTP0RyqZtodCqqm8_TKXtiYK0,577
46
+ sage/misc/bindable_class.py,sha256=WY48Hlz5tyVP-pKsCebjfsZKcPSDDrZKruv9W3fhhHw,8369
47
+ sage/misc/nested_class.pyx,sha256=j0pwxE44IvMSpUM-Pl3_uv9T2CzfmwxsIoDuFML9VTQ,13318
48
+ sage/misc/misc_c.pyx,sha256=NXV3k96bXvVKqt_jmbtlrpBOE_l8tYy6IgLHwl2vZLs,23685
49
+ sage/misc/timing.py,sha256=vPaH1_zQqiIJDH8W4FSzHPfFq6a5_VFuKi3iJJt4QB0,8574
50
+ sage/misc/lazy_attribute.pyx,sha256=rpc8WnIiCbrZdwi06AxMWKBcN_uuvHlXJ0UI3xpXg2w,19121
51
+ sage/misc/lazy_list.pxd,sha256=ugiVT7-AGL6qSOBVn6YSELu_TJctsEL-Dzpv65ep3XQ,672
52
+ sage/misc/reset.cpython-314t-darwin.so,sha256=yVieqUg1O5BbuUVnrtkADmOW2gvaoRnYWEg82gS_UrY,71632
53
+ sage/misc/function_mangling.pxd,sha256=n_zmWpk40S2JNrwTiBxFRkZaI9Fj7ZD_E9s_qm7PKu0,330
54
+ sage/misc/function_mangling.cpython-314t-darwin.so,sha256=kIAWnVXYG5Q1JvPBtMfrQbEwzI9NBIikqOa3x9b2BOI,85472
55
+ sage/misc/misc_c.cpython-314t-darwin.so,sha256=UWNHG_JZeusBUD1AhRY5YeXTLEx_Sfet2hx3gzIG1kk,135056
56
+ sage/misc/nested_class.cpython-314t-darwin.so,sha256=77GfHW7WvdUvVbSsQHKLqtB07dsBnsyDPW8rWSYvcPA,102848
57
+ sage/misc/sage_ostools.cpython-314t-darwin.so,sha256=FGX8aj1LPWe6v0sl4vd0Yu0DEBOwxx8DOsB9ffYhaxg,106160
58
+ sage/misc/lazy_import.pyx,sha256=ku_tlp1o5BwAfRlJSQtUiGg9c23FjLAQDdOqyw2xhoI,41770
59
+ sage/misc/abstract_method.py,sha256=57iobT5AwJzRPkutZNFoHyHqc4BgAn_NYzvG2PjlP-E,8409
60
+ sage/misc/test_nested_class.py,sha256=E_r0pvZKHIWw-1V3djlwdSKjY5BbaPmp-UFewrRhTLA,5914
61
+ sage/misc/sageinspect.py,sha256=QPEhtfOAmjM8dXPl1v89np73eO2qJYdRCdrrSZFSCGI,107670
62
+ sage/misc/c3_controlled.pxd,sha256=EWT5P-X5Y6-dAslfrcE14QFMLsGHWcLSxCoAEkcN7NY,93
63
+ sage/misc/fpickle.pyx,sha256=Vh5kja4ylA8ln6_ICX5OUvhOXjZDdnazCkB4SC8tGPc,4900
64
+ sage/misc/namespace_package.py,sha256=1Zm09A9QjmQ6i4zp3I2G_x1XEm8wJVFxxZ353LN-EZE,938
65
+ sage/misc/lazy_attribute.cpython-314t-darwin.so,sha256=PSGhVf6Vb439zgXJnwq3bz8oak05gABEWmeWAeObxvU,92224
66
+ sage/misc/lazy_string.pxd,sha256=svK96-FOIZqWLd-uY9F-s_tF9buYOvl8goNGVbc_Uv8,182
67
+ sage/misc/constant_function.cpython-314t-darwin.so,sha256=2BeDQ9cAwd5mc9oVNlRT3raljvlo-Hc8LMsdDx44YYU,83816
68
+ sage/misc/weak_dict.cpython-314t-darwin.so,sha256=NFFnHW4x6CxASSDIIw7oEQGFy3lQ7co3-3CW1VJm_xc,170880
69
+ sage/misc/persist.pyx,sha256=dy8qDVBTtQrG79tvgeaOLom6QNM8hZTxD7KVGnnuxT0,46217
70
+ sage/misc/weak_dict.pxd,sha256=7mDU5vWwLDunO53fgGyEhVvSGZKxvHRx-EprQtgBmOA,428
71
+ sage/misc/call.py,sha256=WerCuE2OSAGLgok9s-2JqTwEIZkvgqfarMUyQsYZlCc,5757
72
+ sage/misc/lazy_string.cpython-314t-darwin.so,sha256=oQlPzkC8HErXTay0cxhErNHwBUyxwwXaRdAhnhur3bw,93800
73
+ sage/misc/fpickle.cpython-314t-darwin.so,sha256=Jry4HyZTu7l1BU26LBidjDVa9-pg4hAGU2jShJDwqMc,100552
74
+ sage/misc/all__sagemath_objects.py,sha256=PA6ug9z-uYIb61IYDsyIxyOmch9QQY8KfYqAJin-lco,1544
75
+ sage/misc/lazy_format.py,sha256=MpN8wJXCvdiyJyOp5x0cfSGNjvUA58bFY7LVjwX5_4c,4379
76
+ sage/misc/sage_unittest.py,sha256=_Kct4IIYd1IIpS2xOcO2rtVRIeAtHCun0ddtdlT3U0I,23894
77
+ sage/misc/unknown.py,sha256=fVh3T3B3vgSKqYqLjyWu2LhIErNlGQVkcJgqIMAJHtc,6481
78
+ sage/misc/session.cpython-314t-darwin.so,sha256=oki_ZaGrRh0psXfg487zRy31XDT2M9BNerJ5Z0zJ2TI,76368
79
+ sage/misc/classcall_metaclass.cpython-314t-darwin.so,sha256=S7_7eg8bL-8AXmcKmtuDaKQJQv_eCfaUJ5RWve7H9EY,106128
80
+ sage/misc/constant_function.pyx,sha256=9whXcoLzKw4sMQv44tqwpGrb4gCNodYoDKrAyO3JJKU,3653
81
+ sage/misc/persist.cpython-314t-darwin.so,sha256=gKYtUM80VfbviCmNigCL7TQQdDMQtlHX1wjrg22AIE0,256376
82
+ sage/misc/classcall_metaclass.pxd,sha256=_VnrhJRQAclaFng-7vwzhDrQW-mwExvPLgP5bk1YmhM,583
83
+ sage/misc/decorators.py,sha256=VOubDgl-3KemmGs2kkyUSLd-WYS8XQ2HGTDBeuRSXAM,26572
84
+ sage/ext/ccobject.h,sha256=eLtqVFdLUrmjR1gkAzuzwRVL55bj31H9-p2n2NKJW3U,1186
85
+ sage/ext/mod_int.h,sha256=YZd376zB1marQ0lgoSfLlrusWkapb_ueFd8xvhNU0MU,1275
86
+ sage/ext/cplusplus.pxd,sha256=ve_HD4J2IbCyDacdg8O58s6vQBkiCuSeFpQc9HTS-UQ,766
87
+ sage/ext/mod_int.pxd,sha256=KbuB1xE_rbe3812HzeAnljlBfeASVe8ea2CIK-t-OIM,878
88
+ sage/ext/stdsage.pxd,sha256=LtnBsa8UN7H5cMbb2AFpj_Bnb9nyl-hQFm2bATj-g_w,1427
89
+ sage/ext/all__sagemath_objects.py,sha256=YDdaT0ZDVNDu-ssAUrDGDpEkHpGC0KRBZ15j5Xk8O80,169
90
+ sage/groups/group.pyx,sha256=CGAhNiFVdAT2Kjv8Hh-AFq423cfiCyt-SfvMMR0rDU0,9827
91
+ sage/groups/old.pyx,sha256=gxDN9ZQSNq3VnccG9So3tLGk2JgSjTrAwKlpkE26aig,6154
92
+ sage/groups/group.cpython-314t-darwin.so,sha256=4CljlQ_-JYCW9qapDUm2wj7gKgpaz1lFdqkv6pUl0NY,121328
93
+ sage/groups/old.cpython-314t-darwin.so,sha256=MkhVbB8Xey7OPXNE9JvmY6KFLHYY3sY5CmW38GriJ18,74552
94
+ sage/groups/old.pxd,sha256=2CXrLHHAFFGvFhOcHEBR4jo65SGynhNEcMF0f9rMsQs,266
95
+ sage/groups/all__sagemath_objects.py,sha256=U0s3i-j8VG_G3hwosaLXkFtIexExCHE66vo6Xk5_V08,46
96
+ sage/groups/group.pxd,sha256=l5XDUVBLZZghkEMm3p72KdVJDLxD85Je9otL5yDkXQM,251
97
+ sage/arith/long.pxd,sha256=wc2jBHq3rpg7oSfahGg7LqU495AgGG-IrU5R6RVXlKA,13944
98
+ sage/arith/numerical_approx.cpython-314t-darwin.so,sha256=Hufrn_4J90hDxY-c01pswQ7XAPNlXW07jlCp1fRXX5I,61304
99
+ sage/arith/numerical_approx.pxd,sha256=gFWmxAnUn8xt1cMwCW0pxfywfy_ZJ3vrRuNjAjlo1dU,950
100
+ sage/arith/power.pyx,sha256=SJamErC6EQinYao_I5JMTWNnYRRxUT-t-jRErZq-T5A,3257
101
+ sage/arith/power.cpython-314t-darwin.so,sha256=fPEx8wMdvUPuxDNhnp8VwKG1Pq-CbZSMAON8bGrvwIc,65640
102
+ sage/arith/power.pxd,sha256=CS0qcAvGCF4VdHFFOxfKtF5cmviM0UyOzGfAYghjTCA,630
103
+ sage/arith/numerical_approx.pyx,sha256=IkdhP04vlBfHcSR4YREYBisONaa9uBWMlQmM8wrF-3Q,2538
104
+ sage/arith/all__sagemath_objects.py,sha256=Xsmp9IOAIWpXfNhDnlC1rPzaAWwkOnDGBX7TSDM7HKc,222
105
+ sage/libs/all__sagemath_objects.py,sha256=YDdaT0ZDVNDu-ssAUrDGDpEkHpGC0KRBZ15j5Xk8O80,169
106
+ sage/libs/gmpxx.pxd,sha256=UZMJb9R2wLkI8IE0cdcheUEZYKVsK9pX6_QGQNIY82E,503
107
+ sage/libs/gmp/types.pxd,sha256=wR4xaLY3oPMQbId8-bD8VkhyUqQBy8weclDvc5r9AcY,1487
108
+ sage/libs/gmp/binop.pxd,sha256=kEYV_DmiSF25RuweUG4qbksBoNrFraslszy4RPG-2mI,880
109
+ sage/libs/gmp/mpf.pxd,sha256=pPdAUid-su3Jr_SCBfrNsKyUZpBzAed1enzj6l5KuS0,3670
110
+ sage/libs/gmp/mpq.pxd,sha256=4E1Ldx99k4EuYKCdgn7iTMqNRy2E8MpzUMErKdxvbZc,2271
111
+ sage/libs/gmp/misc.pxd,sha256=wibMsVyG72PRhtrGo7w223ivijK0pxmAzsYlaB9ML-g,243
112
+ sage/libs/gmp/random.pxd,sha256=IVs3XSfaq39Vr7S0IAVoNvU-mvPhmrjyPWJ4OKAl7ns,1020
113
+ sage/libs/gmp/__init__.py,sha256=U0s3i-j8VG_G3hwosaLXkFtIexExCHE66vo6Xk5_V08,46
114
+ sage/libs/gmp/pylong.pxd,sha256=ZAmPJKtIZJW7S7rDdsjiB7WphHyADSwgR8hH8HLWSaE,378
115
+ sage/libs/gmp/all.pxd,sha256=6w1y2YcnMOazAA-xA2ObVuD6uQ6PvlFGDNa2c6b91dI,219
116
+ sage/libs/gmp/pylong.pyx,sha256=OrXIWymqVFgESFvZ5amY3l4ynBjIel5XnxHQvES5In0,4867
117
+ sage/libs/gmp/mpz.pxd,sha256=76TOHtrqWB9h9LBY2sQok-8dL3coqIXc6y0pLUANHQU,9628
118
+ sage/libs/gmp/mpn.pxd,sha256=xqtMwtfyNMXCuUfrM27MYjTJswuynYvqkNW4RNJMBzk,4151
119
+ sage/libs/gmp/randomize.pxd,sha256=TazhW2I0CQS8oQTa2jA1SKHSgrBha14tNy-6ddnkhFo,2309
120
+ sage/libs/gmp/pylong.cpython-314t-darwin.so,sha256=CeoGsfaYWzzI6R-JPT6Xp-RFxgFYgC1m2roeNRqNVOQ,34064
121
+ sage/cpython/builtin_types.cpython-314t-darwin.so,sha256=TNr6SogwucBF7pRqwaiyg4qZVrUG-S7TESgF6bQSEhA,27344
122
+ sage/cpython/dict_del_by_value.pyx,sha256=QXJYSJ1VJzyksOhZVWay0Uvt92Yyuk61YLyuILmY0is,6416
123
+ sage/cpython/type.pyx,sha256=Xso6fkWMzcPl3lxJAAdy11BQ57gmuDkbIDbi_DmCH0w,1076
124
+ sage/cpython/getattr.pxd,sha256=8Cb3X41HUmaro-m-uD-Hoto63wxoVvNYYd80wbOYNbU,288
125
+ sage/cpython/pyx_visit.h,sha256=MFhGSCe_RsFn-D03QfNixKbe-cD2nzwC7JsNFmUd-rY,651
126
+ sage/cpython/wrapperdescr.pxd,sha256=01d05_VmUeAhJ9tWINAL4MnghxJzJVb7s-bafCejIi0,2263
127
+ sage/cpython/pycore_long.pxd,sha256=R5pyHcmmdtWn_DyNdvY60pcwgn0sTH38WecVWKclwXA,394
128
+ sage/cpython/debug.pyx,sha256=dbWOnaY3Gmrs-WrTpfhIhYnLIX9TIHUmzpToiqSHOkY,11765
129
+ sage/cpython/string_impl.h,sha256=IFEnaYxWnD9-Nn__f3KtGjsMQhUpw1RjHEwSYbDCEyM,1781
130
+ sage/cpython/dict_del_by_value.cpython-314t-darwin.so,sha256=ZHbr8ndoW3he_ejtUrsghTUQw9A4U5NngK8cffGUzio,40288
131
+ sage/cpython/cython_metaclass.h,sha256=UOzAuX8wafy8LQZWuhbFIf4fxfHacBjkvnbIdRiO14U,4058
132
+ sage/cpython/pycore_long.h,sha256=eTJcUr7GR5Cr5g9-Tts33PibfOesLrq_e-XCzsEpcPE,2156
133
+ sage/cpython/__init__.py,sha256=N7Hhh8oGxMh3_UVoAlh2hphJAaQVKOHytva7fe2yNa0,786
134
+ sage/cpython/cython_metaclass.pxd,sha256=lYUJgERJZix2MwpLWrhZm-a6iq7-rT01DAvph4S0T9Y,124
135
+ sage/cpython/string.pxd,sha256=TvD_ZgtYp36TW8mkjwFZaCyh5RS0ekjiokNAa-qskIE,2588
136
+ sage/cpython/builtin_types.pyx,sha256=d0O-Ydnf8SKZ-TtMnpK7E5gLGPpTLJjnrSkdyIqI2Lw,196
137
+ sage/cpython/all.py,sha256=Tux0o-rbgpJYFx4d5KeaoqJqhZb7KyqTdCrRD81Gq7A,148
138
+ sage/cpython/getattr.cpython-314t-darwin.so,sha256=c8TC9m2tDIqhVkE8crqfgYCnqmZxO_71LAOOKWnPva4,73792
139
+ sage/cpython/string.pyx,sha256=WVruGwr0FdR7ZRxk0sWTVQA5kau9Ar3ZTH6XUyHpBDg,1196
140
+ sage/cpython/cython_metaclass.cpython-314t-darwin.so,sha256=-lUZ6dwYJzJMJsV8aFKcQkNSyd402Yc1YzvZa4duLug,30160
141
+ sage/cpython/cython_metaclass.pyx,sha256=FOME93m8ak8IfERSVZf28JufCeWGz0R_jL1xPIVfNwI,4833
142
+ sage/cpython/_py2_random.py,sha256=U4iBlbHd_4HhW6fU2MBPI2ERQZtZFmJIu9j1bPrxlwM,22928
143
+ sage/cpython/debug.cpython-314t-darwin.so,sha256=ZePXeWh4mxFOFLXeyJosdmSqPg0ZVhjSB79P75TR9IM,76976
144
+ sage/cpython/python_debug.pxd,sha256=EpFaKv-z7KzZ6f7g3o-NYUovfp9Yg-nsWbgFODjxI_w,2032
145
+ sage/cpython/dict_internal.h,sha256=McGCYoRGYalDPKk-tRx0wtfImuIV9BJ5Xg5PQdzJTR8,7110
146
+ sage/cpython/type.cpython-314t-darwin.so,sha256=lWARQk08FpFIpnY_wbLtmnV_TBdu_crT31HGSEwVOjk,40600
147
+ sage/cpython/string.cpython-314t-darwin.so,sha256=iyZQH00prWk-gKN0PThsIU90xKpoICMDeL6DDMoQ3A4,45464
148
+ sage/cpython/getattr.pyx,sha256=-FRx8cibqtRVwD8-hZIZEt1v154UP5ZW5dFPCenQcY4,14954
149
+ sage/cpython/atexit.cpython-314t-darwin.so,sha256=m0Z3BuPeBTFjqpzpI-SjUXB-ctsENxEIxpZDAtDLT64,65088
150
+ sage/cpython/python_debug.h,sha256=MP_YprVdq11ZK_tNFcK2AakrhBcY_8ct4lCAm5kDT18,875
151
+ sage/cpython/atexit.pyx,sha256=x9TzrPitvCe-IBVu38gviT1TiK0JpujnYTNxHeP_nWM,9851
152
+ sage/cpython/dict_del_by_value.pxd,sha256=s4fW6tHggYhyNEbYFRca06_uaqZaG0mpKBzHE6usOIk,346
153
+ sage/cpython/type.pxd,sha256=4o2n1_b9Pcrm3kAFKcUaY-incfgUaeNwfOcqni1PxrY,88
154
+ sage/sets/pythonclass.pyx,sha256=ZzUjh8bkoqWPCd85Kcx-NnuEghofSQ0NoCG_CpeCpX4,7136
155
+ sage/sets/pythonclass.cpython-314t-darwin.so,sha256=jfOQjA3RK0M89GU5WdADaerDfj3fKPUzTAYI1IqDai8,114416
156
+ sage/sets/all__sagemath_objects.py,sha256=YDdaT0ZDVNDu-ssAUrDGDpEkHpGC0KRBZ15j5Xk8O80,169
157
+ sage/sets/pythonclass.pxd,sha256=GYb_urQBxr8j28s_6FqtaN0WRZiW2hguXWR3Hztq3LU,189
158
+ sage/rings/integer_fake.pxd,sha256=D7n-VZrrigxZm_D7NQKNikuWm25lg4u7Ity0y7Pv_Io,1949
159
+ sage/rings/all__sagemath_objects.py,sha256=YDdaT0ZDVNDu-ssAUrDGDpEkHpGC0KRBZ15j5Xk8O80,169
160
+ sage/rings/integer_fake.h,sha256=e271zfi8hEZ5nzPLEljAjifRBaB4jOSgf8COx5zH2Zs,396
161
+ sage/modules/module.pxd,sha256=l0gI2rRtwVMJPQNkQfJXqEN9EEovo46yAcs-aHio_Uc,125
162
+ sage/modules/module.pyx,sha256=-QTSiktCdR3n9F5dee8hNk8yVgfWsJ7lzIFtgQHJT6o,12096
163
+ sage/modules/module.cpython-314t-darwin.so,sha256=C2vygI7DA46Rmq5u0khNyiJEJjj4eoq0ogT9qWCwypE,79440
164
+ sage/modules/all__sagemath_objects.py,sha256=U0s3i-j8VG_G3hwosaLXkFtIexExCHE66vo6Xk5_V08,46
165
+ sage/structure/parent_old.cpython-314t-darwin.so,sha256=I0S4XAqrYncaI6vB6W4JutSzAG8tB8cp2z8-E3PEgNU,102480
166
+ sage/structure/gens_py.py,sha256=3e2OoLDBveDRyuaGStNBUZarUNa0CE2Qs9cBGhxR28g,2069
167
+ sage/structure/factory.cpython-314t-darwin.so,sha256=rKwcdCw4_QUFa-NJdmFSCCqSHR_OQE2mTreQ76NjvHo,132512
168
+ sage/structure/parent.pxd,sha256=WZ0dqLTWmhpsSiXR_VN4LHmI9mac8w2fksr-_cuUrSk,4230
169
+ sage/structure/coerce_actions.cpython-314t-darwin.so,sha256=9yffvJA_I4tXghhG54Jn0UVH6pgr-r7Y5wWejyUh04M,220720
170
+ sage/structure/list_clone.pxd,sha256=Uy6QhnoBF8OLylfp74H4hupCyXCd1wVBXO0fAfbWKOw,2121
171
+ sage/structure/sage_object.pxd,sha256=ucLms0iBHPbK0A-IJ-UDLVEbW66BH719SErTxz23po0,78
172
+ sage/structure/sage_object_test.py,sha256=ZAhjc7q979clLhRqEWAneSQDWzxP7bXqtRyQwIXY81M,627
173
+ sage/structure/parent_gens.cpython-314t-darwin.so,sha256=HNzkzsk9zcAw57B7KDukeyHnjICfZyKPEKK0b_tyv10,134704
174
+ sage/structure/support_view.py,sha256=qlclI5fZdRBtWwV0UC5o9KmPPCTdqDUY0_YAAWWnf_k,5381
175
+ sage/structure/list_clone.cpython-314t-darwin.so,sha256=mseVRe-hZJJo6gJbch585OSvZ7XBB1DBg95lPCt2EAQ,337304
176
+ sage/structure/coerce_actions.pyx,sha256=lrg_qYJehodMQN7o3Z_5Igfdszz02cInnLa-Ds8zYwA,37252
177
+ sage/structure/parent_base.pyx,sha256=7Y6Yzx43IDux18_r33Ke_kYndZxYwAvBCW9s6g-YNTo,1764
178
+ sage/structure/list_clone_timings_cy.cpython-314t-darwin.so,sha256=4bekkcPv9k1zzLVy7NDR4ksVaJZrM5KlrlEnc8cOCkg,62808
179
+ sage/structure/parent_old.pyx,sha256=z-tLmDMh5F_gjUYm5pAshEFtldFZfPhXY49H4vzStZw,10485
180
+ sage/structure/element.pyx,sha256=PFFZFGWp9K1yCnqOIyLGT3tEi-gT5VPwAxoNIXOSRmo,188418
181
+ sage/structure/richcmp.pxd,sha256=XI0UNlzfLFW23_8TopFeTl-B6jzDSqhWryKGwbsbTkY,6475
182
+ sage/structure/factory.pyx,sha256=Y6CLDS5XvZZrywNWyo4XhJkyM6Yn_1VJ8MIKZRRNzXs,31258
183
+ sage/structure/dynamic_class.py,sha256=30FYmhsiPynSJwopAhcOeXrTukqOlJpBNjNhtBYt_gw,20222
184
+ sage/structure/element_wrapper.cpython-314t-darwin.so,sha256=rrznrlBHjfwvpuVYMgMZ82ksUYhGBwaycaSXJ3DhLTo,147400
185
+ sage/structure/coerce_maps.pxd,sha256=dm5fxyEnzLHBmAd__K4xLZNuyz0LYpX39YmCmj7amv8,504
186
+ sage/structure/coerce_dict.cpython-314t-darwin.so,sha256=iTjAIfN1mUVuvsO-qsinfz3WzHqanIk-fw3nuIAFIds,205488
187
+ sage/structure/richcmp.cpython-314t-darwin.so,sha256=iEwiiPANSBZAGAneFWRf6B7OyG25Ne0YvtNJzfhgqcQ,117120
188
+ sage/structure/category_object.cpython-314t-darwin.so,sha256=wlBmTuZBkvn9B21DfCCFPHqtckerM3EfQ8HlSnXn6WY,207840
189
+ sage/structure/mutability.cpython-314t-darwin.so,sha256=jY1eq4iGvXShM93aN9uUbBrrG9P2siL3JFmFBsxM234,106840
190
+ sage/structure/sage_object.cpython-314t-darwin.so,sha256=atj1Hw3q6qkCcqTBRIVsMJpvXSx7gV-JKE4NseGl0Qs,195640
191
+ sage/structure/mutability.pyx,sha256=uA5GXQxj1JVE-0Xua5RwV5JgnedSrf0GQPxmrl9HiNs,11493
192
+ sage/structure/category_object.pxd,sha256=rz9gGO9WiOLQ2XP9PdzSIELHW-4vvPmjXvqdD6huRvY,1030
193
+ sage/structure/unique_representation.py,sha256=cdLGUBHPZb4tK3uQ4zqnIH93--I0J6oQQc4wf0N5B5Y,52750
194
+ sage/structure/sequence.py,sha256=MRvLtTYRik3rQvUYLANxgvafNXc9QteQRM1OwbcziPU,29457
195
+ sage/structure/global_options.py,sha256=OwIgjujCtFcIp5YYDkQpOSPXeVABfPFZiotM2Yq2Ap4,69477
196
+ sage/structure/parent.cpython-314t-darwin.so,sha256=rfNxtypuyaaIisnyhJqFmgrNzzyWJT85mUFdDFgmULY,420368
197
+ sage/structure/test_factory.py,sha256=HL9H4MZC73a6Ew13W4VppvmRpcuqiJFEuM5xw3SZqOk,1760
198
+ sage/structure/debug_options.pxd,sha256=yf-VwnEs8Ur2_VYSQsrF9nkj_6AFTSsfcAcLW6IpdWM,200
199
+ sage/structure/parent_gens.pyx,sha256=uIOBoxy-5e8L2YRMEMzX36uPbOg4PCO97iIgcXAfCTQ,12910
200
+ sage/structure/set_factories.py,sha256=TAsPdQ-dQon69PxUv-fiybWHAOOAfJmQZiBQpRyCbdI,41181
201
+ sage/structure/__init__.py,sha256=EVCI863Rj_YxVl2dvc4UurCWk_IreSkmOrtR5vZLZ-4,122
202
+ sage/structure/list_clone_timings.py,sha256=qB1wmsqiKsTkmF2c6NbAlBIZ5DzwJZ8hnTeMMUMwLRI,6692
203
+ sage/structure/factorization_integer.py,sha256=PALiFasjPjEqEz08m1A5qADt14lhMt4Xgpgl4Vnovzw,3818
204
+ sage/structure/coerce_maps.cpython-314t-darwin.so,sha256=wkREy_ZdJ1WLKtSe1cdFFAjXeMO2SccRYy3KeXN4if0,220248
205
+ sage/structure/coerce.pyx,sha256=q2EvaHERVPmvHDAmsVAf9LIYcvCXKhy8pr35uxXuWxM,82161
206
+ sage/structure/coerce_dict.pxd,sha256=3Exj0-GuFQcXtXXKs4ydsU8trgO81fO2cIBP7PDlgZo,1415
207
+ sage/structure/all.py,sha256=5GYCPE_LABmoZGre1WR9mlhvvpWpzqJMZrS9rAPSan8,798
208
+ sage/structure/element_wrapper.pxd,sha256=MI50lX2z0XmOoaFwGXns-rpOcdcduculNkS8t6VP1i4,319
209
+ sage/structure/element_wrapper.pyx,sha256=RH3G4VHj1Rop1w5eLV6ynIPVaV_qPxClhZ846aqxPbY,19276
210
+ sage/structure/factorization.py,sha256=4cKiiZ7KCiTW6MBXWrV3UdyDc-ww7-9p1Twv5LS-n78,45770
211
+ sage/structure/coerce_dict.pyx,sha256=_DuaRSosZsllXhc57Oe9imVrkc2xkQNzdHeNEAdtjVo,49983
212
+ sage/structure/indexed_generators.py,sha256=T3ADtTQ_D3s9waiEbURYTlyr7udHmoCXDCLnSk8xcts,34776
213
+ sage/structure/coerce.pxd,sha256=FklBQUdf23MFPu33SkIWJC9mQw2jjNSIY7PPMlQCNLQ,1369
214
+ sage/structure/list_clone_demo.pyx,sha256=oU65ulMRrP8mkP8aNRlBd8j0Z61tIta868Fxui8LDKs,7643
215
+ sage/structure/debug_options.pyx,sha256=JR58ihocYWnDea5HgTN8WQ_wRVwyYcO6xe8XFM2Ku_k,1974
216
+ sage/structure/coerce_exceptions.py,sha256=0_og2GtBcrr8me7_8edijpOnlKFbFhAiQS7OfpNslAQ,988
217
+ sage/structure/parent_gens.pxd,sha256=mE16F-vEdWAUeE3atp6ZddvIAteQ6jagiYwnVGjHr3s,802
218
+ sage/structure/element.cpython-314t-darwin.so,sha256=Mp6Azw8A9-UUqxk-FWAE7s2M0tQVdlb507HL--3QKWI,603824
219
+ sage/structure/formal_sum.py,sha256=-0PPVOHHlfLGQNmU8YV7qNZhrxanAoVorZuFUKSX8Ss,15953
220
+ sage/structure/mutability.pxd,sha256=SvQMhy7o0PKUnPdNSOdM0w6qpgzEqVzxVXmG1EvmKNo,680
221
+ sage/structure/category_object.pyx,sha256=iK22UiNYaCgkEc4QeRY4Cu9V7oMBVQCZKhtd4O8NpVM,39030
222
+ sage/structure/debug_options.cpython-314t-darwin.so,sha256=oMLAOeRZfNuGJlMX13sTOkF1kHFUb8oa33bAi2FK-xY,37016
223
+ sage/structure/list_clone_timings_cy.pyx,sha256=Yta-vzJVi8ZBH_1mPFJ7mNB11RGB64TqKqtSuil5CPc,2588
224
+ sage/structure/richcmp.pyx,sha256=3q-PX3EvGzjpYz9uPcoRuHU5NiJt_ax32_-9v5QAgNY,17828
225
+ sage/structure/coerce_maps.pyx,sha256=n1_2DKjzOu_I6lxkBXnr6hUqFAQau83Z985ryHK1HLY,25878
226
+ sage/structure/parent_old.pxd,sha256=rzTYw76EYTgql4jxm5X8wvYQ3D8vmU-V8wVQsU3w4Cw,969
227
+ sage/structure/element.pxd,sha256=JaMsIvj0HnpDZf2Q1vSs99SIQv3WKCpqkfg9oWLnTuU,7958
228
+ sage/structure/coerce_actions.pxd,sha256=4Gzyc43JOKIYDPkKUowbdQ-vYpDTrIxJERUed88b6Oo,528
229
+ sage/structure/parent_base.pxd,sha256=sQ4wTvOWWZUY8j_zLQjeFpZeXTCpJ6eNAFhL3BPU9tk,585
230
+ sage/structure/nonexact.py,sha256=kyCU30mUCCbiju6ujgVGe57gtAhavlEQvHDYHSYYupA,1736
231
+ sage/structure/list_clone_demo.cpython-314t-darwin.so,sha256=5_LWGgvL0Q0OEAAQuWFJR6UUOi1O9huF5aGGT2NEEK8,122120
232
+ sage/structure/coerce.cpython-314t-darwin.so,sha256=n01B-PNgN9MjHniuRqL4K1baVtiO7XM7g9z5TmuQxlg,388736
233
+ sage/structure/sage_object.pyx,sha256=v-zZLileKVikJuuZNdYlGp5StPASFAAMgdh7s1mHrPY,32292
234
+ sage/structure/list_clone.pyx,sha256=Jbicq-sIZ7WhqD_r0zbaXk4D0JEI820TrIcGN6EEGNQ,58956
235
+ sage/structure/parent_base.cpython-314t-darwin.so,sha256=we3oVSNgOhyQRjy66wnaKfqLey27HdRtU3EGEwNnvw0,56784
236
+ sage/structure/set_factories_example.py,sha256=NjmC2WP-cCdojYsQhjuZaI9PPlaqMcLdO3FyNnc2aRE,17262
237
+ sage/structure/parent.pyx,sha256=1xhTOHMo_pVq7-LJ0LbM_lppyF0HMoEjEla99Yu4T5I,120215
238
+ sage/structure/proof/__init__.py,sha256=U0s3i-j8VG_G3hwosaLXkFtIexExCHE66vo6Xk5_V08,46
239
+ sage/structure/proof/all.py,sha256=oc3nbgOBRqlm6Azip-reTyYu9WejRD4EwD9gN8aBnbk,7339
240
+ sage/structure/proof/proof.py,sha256=0awMTNTW8UkYw-So8sEswkOH3ZJ2NjwMbjTTmcZZodY,10401
241
+ sage/categories/category_cy_helper.pyx,sha256=8OSlOSed3p6Lp4Sr9vBck7lEtXxnrcnsKjQhbHZh1tY,10890
242
+ sage/categories/action.pyx,sha256=jmGSGsG4VxsrIa26ShNxk1pnz9UdHxsDH6jxNVlHexQ,21056
243
+ sage/categories/category_cy_helper.cpython-314t-darwin.so,sha256=A08V34r1GmKdqxI33oTJKUlay79P2sGdNi5zo4u9bg4,97712
244
+ sage/categories/algebra_functor.py,sha256=uAzDhMfZtzhoLyWTo9EXcsp88eMWQiyKdVuGKjNIZu4,24518
245
+ sage/categories/quotients.py,sha256=aWaYtsUG0-ZHgmuvchh6zfkx6xJxxLumLINPChE942Y,2562
246
+ sage/categories/morphism.pxd,sha256=udKj7cdyqm5oVHsn1abH2D9j2Xyd_47e2ZpTi0ouyVg,347
247
+ sage/categories/facade_sets.py,sha256=RYPBPreMt6hUZBA5x2ArTqrDlzE-heSw114vAv4opGg,8237
248
+ sage/categories/functor.pyx,sha256=VKU-tGKlPxn180i43CwUq6jZUSY3yVx1N78Xb3GxO34,22277
249
+ sage/categories/primer.py,sha256=42CJGnql8lwhVQVl-sbtUz_HlTft5SWmvDzr0PPXQw0,67173
250
+ sage/categories/sets_cat.py,sha256=BpYT3b-W2ENLFhI7seHd6UVVSNdo8PlUNxYRqzJB-fY,134837
251
+ sage/categories/subobjects.py,sha256=upYT6feRHzYRELhoBs3VrJ0cgFNwRntxwsucbuHVsdY,2548
252
+ sage/categories/sets_with_partial_maps.py,sha256=Rn-Z75T-bSG5KJnIdADHbsQAvCJtbcEgxi79V46JXjc,1668
253
+ sage/categories/realizations.py,sha256=4ocuBKRQmROJGau7k-6OizQVLmgiGIOGRwSIvJGE_is,8297
254
+ sage/categories/category_singleton.pyx,sha256=xwsrucWotXXe-lZib5PSE7cMz_5qfIOTS9rIpbxFNns,13719
255
+ sage/categories/homsets.py,sha256=D8Lf2aqcWUcbeDUx7sTAW_MLTU6Tbthlem708qxsjFg,12567
256
+ sage/categories/isomorphic_objects.py,sha256=Uyr_YZf3yyUAB9o5afQNMILaXe8PwM1wKGlt00OGPdg,2993
257
+ sage/categories/morphism.cpython-314t-darwin.so,sha256=_dgv72wXjl38A5lS25qtbV9Pl-L5sWKOBDvEXY3KCQ0,239112
258
+ sage/categories/pushout.py,sha256=JkaaI12Hh-X9z-xhd9_nJgzusQTeDRe4R7fBoNpDxYQ,192356
259
+ sage/categories/category_types.py,sha256=5zGnHgih48q7hEjKl4Sh72fhAnJXmDElgniKe63VHDo,20303
260
+ sage/categories/map.pyx,sha256=TmaBbrziDyU74JmVmDWkHwnRsYC26S8l98MsyopLupc,78296
261
+ sage/categories/functor.cpython-314t-darwin.so,sha256=1PCTccbyK-MLCnhXvL_uiWMJjsUfo3yM2qlnTqlVOyo,141024
262
+ sage/categories/map.pxd,sha256=BuIaeaQ6Kid0Vu6BtwWpZjU6Kbdgfl_oL02qvdtgB2s,1093
263
+ sage/categories/action.cpython-314t-darwin.so,sha256=LtCJs6rL61lMs__QqwrhqlOPL-jkiQ15uCPq3FX1X90,168648
264
+ sage/categories/homset.py,sha256=U8rhTZaH1hSypzW7UHjddBlzl51RIMw297vjNdVybVA,53173
265
+ sage/categories/basic.py,sha256=V1FArAZxEZpxXXHcsY60rknBOSsWqvEbMzVTik8yWJ4,2576
266
+ sage/categories/category_singleton.cpython-314t-darwin.so,sha256=WpFgHS6d7qXhaVB3poaUNUJiqaBlU9pqoacSm230mfY,92760
267
+ sage/categories/category_singleton.pxd,sha256=Jm1lACWOGrs6Jjsy_fdv61NQSyQqnaKftAiNBNJYhgI,139
268
+ sage/categories/covariant_functorial_construction.py,sha256=1iCOoZ-1heNULiTQfGNJ4uN2MDRDQZErWDHx6p-A-MI,27547
269
+ sage/categories/category_with_axiom.py,sha256=0yXKkQJVa_eNoZYZi4HPsK3OmdhG758l4kw2BcfrDPU,114821
270
+ sage/categories/functor.pxd,sha256=HcrYjA83mrJpvnb9xRD7ygHrMIi5FOQSgyRfivnIb5I,203
271
+ sage/categories/morphism.pyx,sha256=JL2rzsKeXkcC2cJoYgNuE2Y6au1L1KGGYVM0B_CvLV4,29074
272
+ sage/categories/cartesian_product.py,sha256=8-y9HOn7IHC4eoOxfSJxaNgTq5RRmwalAW-48i6H9B8,10183
273
+ sage/categories/objects.py,sha256=h-o39k-ugble8Xp_W2X4kPdpdiJ6r8HX-HwVBV9NVKQ,5346
274
+ sage/categories/map.cpython-314t-darwin.so,sha256=6zLeoRBHzKpZCXq4L2_hxSLyHtcCVVoh74VS_Mv-zyc,320784
275
+ sage/categories/with_realizations.py,sha256=tYlFsLXAZzZjZrbPS2YM76Qx9ipjSdOt00ng5pgQqrs,13163
276
+ sage/categories/all__sagemath_objects.py,sha256=l0cQjqOFqQLeB_KplQnKRfuL566SRDm5Q9eBkz72_l4,1148
277
+ sage/categories/subquotients.py,sha256=t4hQukYFVMlI_ZGM7PdXKkT0ch2qVSDHvhbUCIToBPI,706
278
+ sage/categories/category.py,sha256=C1wrDQB95QNB6RFjoipqNxoTP6w9SDDY12EFnmywpH8,129691
279
+ sage/categories/action.pxd,sha256=lhpj480hNMVyP3sWhDt0FZV3q74Y-6Q19-Ba15OO6bc,725
280
+ sage/categories/category_cy_helper.pxd,sha256=JsUgsEflgxFj99fKcUkZIF51hubE3fm1NjYFjEUdNzc,408
@@ -0,0 +1,6 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp314-cp314t-macosx_13_0_x86_64
5
+ Generator: delocate 0.13.1.dev42+ga0af70b54
6
+
@@ -0,0 +1,3 @@
1
+
2
+ passagemath_objects
3
+ sage
@@ -0,0 +1,37 @@
1
+ # sage_setup: distribution = sagemath-objects
2
+ # delvewheel: patch
3
+ import os
4
+ import sys
5
+ import operator
6
+ import math
7
+
8
+ import warnings
9
+
10
+ # TODO: More to be moved from all.py
11
+
12
+ # This import also sets up the interrupt handler
13
+ from cysignals.signals import (AlarmInterrupt, SignalError,
14
+ sig_on_reset as sig_on_count)
15
+
16
+ from time import sleep
17
+
18
+ from sage.misc.all__sagemath_objects import *
19
+ from sage.structure.all import *
20
+ from sage.arith.power import generic_power as power
21
+ from sage.categories.all__sagemath_objects import *
22
+
23
+ from sage.cpython.all import *
24
+
25
+ if sys.platform != 'win32':
26
+ from cysignals.alarm import alarm, cancel_alarm
27
+
28
+ from copy import copy, deepcopy
29
+
30
+ true = True
31
+ false = False
32
+
33
+
34
+ # For doctesting. These are overwritten later
35
+
36
+ Integer = int
37
+ RealNumber = float
@@ -0,0 +1,5 @@
1
+ # sage_setup: distribution = sagemath-objects
2
+ # The presence of this file ensures that sage_setup for sagemath-objects
3
+ # considers this directory as a namespace package
4
+
5
+ from sage.arith.power import generic_power as power