passagemath-objects 10.6.47__cp311-cp311-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.
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.47.dist-info/METADATA +115 -0
  4. passagemath_objects-10.6.47.dist-info/RECORD +280 -0
  5. passagemath_objects-10.6.47.dist-info/WHEEL +6 -0
  6. passagemath_objects-10.6.47.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-311-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-311-darwin.so +0 -0
  14. sage/arith/power.pxd +31 -0
  15. sage/arith/power.pyx +127 -0
  16. sage/categories/action.cpython-311-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-311-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-311-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-311-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-311-darwin.so +0 -0
  41. sage/categories/map.pxd +34 -0
  42. sage/categories/map.pyx +2106 -0
  43. sage/categories/morphism.cpython-311-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-311-darwin.so +0 -0
  60. sage/cpython/atexit.pyx +269 -0
  61. sage/cpython/builtin_types.cpython-311-darwin.so +0 -0
  62. sage/cpython/builtin_types.pyx +7 -0
  63. sage/cpython/cython_metaclass.cpython-311-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-311-darwin.so +0 -0
  68. sage/cpython/debug.pyx +302 -0
  69. sage/cpython/dict_del_by_value.cpython-311-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-311-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-311-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-311-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-311-darwin.so +0 -0
  97. sage/groups/group.pxd +14 -0
  98. sage/groups/group.pyx +322 -0
  99. sage/groups/old.cpython-311-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-311-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-311-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-311-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-311-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-311-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-311-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-311-darwin.so +0 -0
  139. sage/misc/fpickle.pyx +177 -0
  140. sage/misc/function_mangling.cpython-311-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-311-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-311-darwin.so +0 -0
  147. sage/misc/instancedoc.pyx +331 -0
  148. sage/misc/lazy_attribute.cpython-311-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-311-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-311-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-311-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-311-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-311-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-311-darwin.so +0 -0
  169. sage/misc/persist.pyx +1251 -0
  170. sage/misc/prandom.py +418 -0
  171. sage/misc/randstate.cpython-311-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-311-darwin.so +0 -0
  176. sage/misc/reset.pyx +196 -0
  177. sage/misc/sage_ostools.cpython-311-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-311-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-311-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-311-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-311-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-311-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-311-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-311-darwin.so +0 -0
  211. sage/structure/coerce.pxd +44 -0
  212. sage/structure/coerce.pyx +2107 -0
  213. sage/structure/coerce_actions.cpython-311-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-311-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-311-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-311-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-311-darwin.so +0 -0
  228. sage/structure/element.pxd +272 -0
  229. sage/structure/element.pyx +4772 -0
  230. sage/structure/element_wrapper.cpython-311-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-311-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-311-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-311-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-311-darwin.so +0 -0
  248. sage/structure/list_clone_timings_cy.pyx +86 -0
  249. sage/structure/mutability.cpython-311-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-311-darwin.so +0 -0
  254. sage/structure/parent.pxd +112 -0
  255. sage/structure/parent.pyx +3093 -0
  256. sage/structure/parent_base.cpython-311-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-311-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-311-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-311-darwin.so +0 -0
  269. sage/structure/richcmp.pxd +213 -0
  270. sage/structure/richcmp.pyx +495 -0
  271. sage/structure/sage_object.cpython-311-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.47
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/__init__.py,sha256=t9J2tkWRjwi9Skhh1Ubj5Te0uvFwkpXUhX8IwP4Ba4U,88
2
+ passagemath_objects/.dylibs/libgmp.10.dylib,sha256=7dhTogpeYdTt59hV7oQXapHQbdCrMOwHrHxiPke8q4k,488712
3
+ passagemath_objects-10.6.47.dist-info/RECORD,,
4
+ passagemath_objects-10.6.47.dist-info/WHEEL,sha256=wlOID7aumVp4ANpc7b_jjphnWw6TfTPEII6z8zgq67I,154
5
+ passagemath_objects-10.6.47.dist-info/top_level.txt,sha256=0d3_E_m23cmoshzIf-G9mEsF55wtJLZjnTM551qb3uc,26
6
+ passagemath_objects-10.6.47.dist-info/METADATA,sha256=_V1cTGrBXU4csfes4-Ss-NrCJrjIVGyZVKYPADgBYHU,5320
7
+ sage/all__sagemath_objects.py,sha256=NVxVF3fEVtmNUxMKNHjkVqgXO4-AsnV6iuMsgVh3l_4,804
8
+ sage/misc/reset.cpython-311-darwin.so,sha256=pwu0Jld10FBnMMWSP93yMdksT_jbM3yQrK07Nk3rOsA,63808
9
+ sage/misc/superseded.py,sha256=3K8MzLbmNupi8gMwYaYK68F7YNaYWTVsI9YO1z0TxBE,19934
10
+ sage/misc/misc_c.cpython-311-darwin.so,sha256=q8QdrmjFEbV563dKuCtqTp9zaZqagRT63SU-a2sdPtQ,121912
11
+ sage/misc/weak_dict.cpython-311-darwin.so,sha256=30oe5F6MXRdEoKzWw3F5-3lvpc6RcJW977srVw9kICg,157864
12
+ sage/misc/prandom.py,sha256=vnbY62JYLu5_5L1nGbq1SoHkt0ScGBrx-LisbzhM2YY,12432
13
+ sage/misc/verbose.py,sha256=KGMJeArKTqIPTgTxRq4YsSyY7KwZov0m1VmzfImmbUc,6636
14
+ sage/misc/classcall_metaclass.pyx,sha256=Oyg4mTaGRJXh9CdIoFRgvaKaGzF-DM8b3oaDkTmO9rs,21266
15
+ sage/misc/lazy_list.cpython-311-darwin.so,sha256=6NbWiFKhcip6W2eHTaoPWUzc4aIsfQnfrwUG0tDBVxc,186936
16
+ sage/misc/constant_function.cpython-311-darwin.so,sha256=iWOBuzRRuXa31GecDf9SIpBhASzKJj5jZzFKLnteMdw,78368
17
+ sage/misc/lazy_attribute.cpython-311-darwin.so,sha256=-6L7COAssPoYOz1skQL7SON-cArqgu2OYseNcof5NjU,84064
18
+ sage/misc/misc.py,sha256=3M5ekIsxGhmZOR2c1AzChqurp7rQl-ErMOe-R1lO_BA,30450
19
+ sage/misc/sage_timeit.py,sha256=9ihN5_yEH5booVXF3HMRMNI_K9-d-hw5bThZt0xleAg,9209
20
+ sage/misc/weak_dict.pyx,sha256=0gbKGb_Fovx_pIblCYMwsVwxLfTGpU9CgI9n65N8OF0,41601
21
+ sage/misc/flatten.py,sha256=BMribQzTuNq4JqjNkTtla9mEUb7QVCBhskj9rLWAiuQ,2739
22
+ sage/misc/sage_timeit_class.pyx,sha256=3IIxeFsvD7gxemBNgP_tnhuwMWjPiVdUTKQshSHWSxk,3908
23
+ sage/misc/persist.cpython-311-darwin.so,sha256=FJMspS6p4mFpF2FaJpOqRNg1ke9Yyizk3XVTh0J81sQ,236408
24
+ sage/misc/lazy_string.pyx,sha256=kjC5HtApqcYKUv4VGXK0_zjUqJ_HdLzXAUW5Ws9FdJA,16280
25
+ sage/misc/nested_class.cpython-311-darwin.so,sha256=-Jr3-Z24IYbxaVgxKo9B5d8bMQr-BajKTmD5SV6SZ1U,96264
26
+ sage/misc/c3_controlled.pyx,sha256=a3z5yOBzNLzcMS085cQH6S1heXHCU4zT32SvU0ng6F4,56078
27
+ sage/misc/lazy_import_cache.py,sha256=7UUPsvP7XLFIcXZee9tg8jB_0luUr-z3lxTPd8dsU2Y,1005
28
+ sage/misc/instancedoc.pyx,sha256=ml1-c_SKHAnww2zwkJTXbuf2TSHJXtNYQstTSCRipFo,11125
29
+ sage/misc/reset.pyx,sha256=9xnGnC8yOv-3MKXXEAWcnuc7WLrw6lZQDLqsC91rQ5Y,5675
30
+ sage/misc/fast_methods.cpython-311-darwin.so,sha256=i55VouywcCqu-hGiXy5fCR8Rt8rkDhEx4I3FV-9Ixg8,84280
31
+ sage/misc/lazy_string.cpython-311-darwin.so,sha256=LiBnGPNLDqlrplSzJ2yjuBNlQkCTRx7dgwJjKYt55_8,86120
32
+ sage/misc/sage_ostools.pyx,sha256=CaDOaTvu2JXfOwJk8wsgTF_OT_ivjugrqVvBa2FvvqA,9287
33
+ sage/misc/function_mangling.pyx,sha256=bVzo7-pJq0kNLBvR4W3AVuCCr7JrVVnj-9oqEq0bQLI,10873
34
+ sage/misc/lazy_list.pyx,sha256=ib3TZpxutctPqQ2bAwTGVJgo4YIJv8wmKfiBvoBtIsM,38313
35
+ sage/misc/function_mangling.cpython-311-darwin.so,sha256=AbfaK1K8vBsVRXiDL3boZ30mJg3JXRN-S8eTgsWit9I,75240
36
+ sage/misc/nested_class.pxd,sha256=8jncbDWcavg4ZjbrbtXscGagkcMVU-ZDYH4k15jZyc4,94
37
+ sage/misc/cachefunc.cpython-311-darwin.so,sha256=GflunNqcx_XSNjmHTcVX8N_bQYU4but-CNuN6Je7Gr4,448904
38
+ sage/misc/fast_methods.pyx,sha256=RrRNp3UNliUhKPdIXz_mxu1BL_7iHze4vx7Ulpyaw84,11976
39
+ sage/misc/session.cpython-311-darwin.so,sha256=lsaPY5w1UCbaqsz5YAxCGP48MssWeS9NewWYj5iga70,75808
40
+ sage/misc/misc_c.pxd,sha256=6ijmZ05ZScqQVt6NfUEaSbHijl_JK2U4JQlV_E8SxR0,96
41
+ sage/misc/cachefunc.pyx,sha256=H2S0-A5IQEOvKZ4XDwq1_3kuCkc5dzVvwL_6FbRKW-Q,127246
42
+ sage/misc/session.pyx,sha256=vxqDy-kT1QEplhoyuDlRM6WiWmFfYLDZiOmy-gwl3gE,11770
43
+ sage/misc/inherit_comparison.cpython-311-darwin.so,sha256=hGnXqdKnqaZ8tEc9Q7nAUznE1m4MVXyFw1bv0SIwmJ8,41248
44
+ sage/misc/inherit_comparison.pxd,sha256=vV-3Ek7tnZ-05_uFZwTAYTjsFM5OR5qFknyDu9jJTwU,139
45
+ sage/misc/randstate.pxd,sha256=LERpWdd_7yS8mD_MYIES5yxA-Zh060remnG4jROIApc,746
46
+ sage/misc/repr.py,sha256=Q8sxfz4xNPGbHlMuKnIeAsH2LaZtXKkKwkHEZLlwFic,6987
47
+ sage/misc/c3_controlled.cpython-311-darwin.so,sha256=QuffvmA8XTJg52jED_dVbL-1vf8jExaPRlxPAt0mALA,275472
48
+ sage/misc/randstate.pyx,sha256=gmiTORYmK3lx44l6XWxkjCcD5PO4rHvEJ94TE7K_6bQ,38090
49
+ sage/misc/inherit_comparison.pyx,sha256=qitU_YiVHB-9wHUMh3M2ewuee0DMd7Kq7ZPJXxchjzI,3828
50
+ sage/misc/randstate.cpython-311-darwin.so,sha256=HFWxoTNA1f_L7HNt8VVQOg6xr367paVv_H6p2HPjfiE,131528
51
+ sage/misc/cachefunc.pxd,sha256=4c9YK_wVbUSit4f5LtoZsgV43_49S_P6LbrO-LDwl9w,1163
52
+ sage/misc/lazy_import.cpython-311-darwin.so,sha256=hiOtccA8A1zxCVuFBJ-AhWZd5Ss2uNXMuzwiGadb-D0,217152
53
+ sage/misc/fast_methods.pxd,sha256=A0ImtHm4rQ0JAxnCygpTP0RyqZtodCqqm8_TKXtiYK0,577
54
+ sage/misc/bindable_class.py,sha256=WY48Hlz5tyVP-pKsCebjfsZKcPSDDrZKruv9W3fhhHw,8369
55
+ sage/misc/nested_class.pyx,sha256=j0pwxE44IvMSpUM-Pl3_uv9T2CzfmwxsIoDuFML9VTQ,13318
56
+ sage/misc/misc_c.pyx,sha256=NXV3k96bXvVKqt_jmbtlrpBOE_l8tYy6IgLHwl2vZLs,23685
57
+ sage/misc/timing.py,sha256=vPaH1_zQqiIJDH8W4FSzHPfFq6a5_VFuKi3iJJt4QB0,8574
58
+ sage/misc/lazy_attribute.pyx,sha256=rpc8WnIiCbrZdwi06AxMWKBcN_uuvHlXJ0UI3xpXg2w,19121
59
+ sage/misc/fpickle.cpython-311-darwin.so,sha256=fRYdqvDZBgZswUcL0xtcuZ5oBdqREbMuvbSIDsuIVUM,97720
60
+ sage/misc/lazy_list.pxd,sha256=ugiVT7-AGL6qSOBVn6YSELu_TJctsEL-Dzpv65ep3XQ,672
61
+ sage/misc/function_mangling.pxd,sha256=n_zmWpk40S2JNrwTiBxFRkZaI9Fj7ZD_E9s_qm7PKu0,330
62
+ sage/misc/sage_ostools.cpython-311-darwin.so,sha256=TswAYI_MHd-l8NCafA-jTsvN30cPDVEkEalScz7T_3g,93728
63
+ sage/misc/lazy_import.pyx,sha256=ku_tlp1o5BwAfRlJSQtUiGg9c23FjLAQDdOqyw2xhoI,41770
64
+ sage/misc/abstract_method.py,sha256=57iobT5AwJzRPkutZNFoHyHqc4BgAn_NYzvG2PjlP-E,8409
65
+ sage/misc/test_nested_class.py,sha256=E_r0pvZKHIWw-1V3djlwdSKjY5BbaPmp-UFewrRhTLA,5914
66
+ sage/misc/sageinspect.py,sha256=QPEhtfOAmjM8dXPl1v89np73eO2qJYdRCdrrSZFSCGI,107670
67
+ sage/misc/c3_controlled.pxd,sha256=EWT5P-X5Y6-dAslfrcE14QFMLsGHWcLSxCoAEkcN7NY,93
68
+ sage/misc/fpickle.pyx,sha256=Vh5kja4ylA8ln6_ICX5OUvhOXjZDdnazCkB4SC8tGPc,4900
69
+ sage/misc/namespace_package.py,sha256=1Zm09A9QjmQ6i4zp3I2G_x1XEm8wJVFxxZ353LN-EZE,938
70
+ sage/misc/lazy_string.pxd,sha256=svK96-FOIZqWLd-uY9F-s_tF9buYOvl8goNGVbc_Uv8,182
71
+ sage/misc/persist.pyx,sha256=dy8qDVBTtQrG79tvgeaOLom6QNM8hZTxD7KVGnnuxT0,46217
72
+ sage/misc/weak_dict.pxd,sha256=7mDU5vWwLDunO53fgGyEhVvSGZKxvHRx-EprQtgBmOA,428
73
+ sage/misc/call.py,sha256=WerCuE2OSAGLgok9s-2JqTwEIZkvgqfarMUyQsYZlCc,5757
74
+ sage/misc/instancedoc.cpython-311-darwin.so,sha256=J0fLNS6qqWnnlch1j2A8VA7rFhw0nu4d9JQrU-A4gnA,58352
75
+ sage/misc/all__sagemath_objects.py,sha256=PA6ug9z-uYIb61IYDsyIxyOmch9QQY8KfYqAJin-lco,1544
76
+ sage/misc/lazy_format.py,sha256=MpN8wJXCvdiyJyOp5x0cfSGNjvUA58bFY7LVjwX5_4c,4379
77
+ sage/misc/sage_timeit_class.cpython-311-darwin.so,sha256=KHoWYY9bs0iXlPkJPD7ZdaMuqYSKwtBprf76aNJLvNY,62944
78
+ sage/misc/classcall_metaclass.cpython-311-darwin.so,sha256=C43CPlZ3QxagDcjOQOOzM0cMwBbot0_jYj4mE_OU6IQ,101304
79
+ sage/misc/sage_unittest.py,sha256=_Kct4IIYd1IIpS2xOcO2rtVRIeAtHCun0ddtdlT3U0I,23894
80
+ sage/misc/unknown.py,sha256=fVh3T3B3vgSKqYqLjyWu2LhIErNlGQVkcJgqIMAJHtc,6481
81
+ sage/misc/constant_function.pyx,sha256=9whXcoLzKw4sMQv44tqwpGrb4gCNodYoDKrAyO3JJKU,3653
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-311-darwin.so,sha256=vUv-VyXeJikKA173N2FG6m3NZfH9J9lShMUSeKlIe7U,111040
93
+ sage/groups/old.pxd,sha256=2CXrLHHAFFGvFhOcHEBR4jo65SGynhNEcMF0f9rMsQs,266
94
+ sage/groups/old.cpython-311-darwin.so,sha256=IPve9V5o2ShPkJybLvUkm5RlsbCozNalbmKKYeEGHiE,64680
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-311-darwin.so,sha256=OaxAA0nfLhP-qhqKWneCF712JkHNX7eMDqDFee6bTbA,60648
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.pxd,sha256=CS0qcAvGCF4VdHFFOxfKtF5cmviM0UyOzGfAYghjTCA,630
102
+ sage/arith/numerical_approx.pyx,sha256=IkdhP04vlBfHcSR4YREYBisONaa9uBWMlQmM8wrF-3Q,2538
103
+ sage/arith/power.cpython-311-darwin.so,sha256=ojPjK_lqbcr_w7G0zm2sDUE0HUKCcPLvFP4VEqIHBiY,55192
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.cpython-311-darwin.so,sha256=nhovtMzdbkj0UDZFmSjJnFYIx21hgceRhTeMK-rF5qM,29712
117
+ sage/libs/gmp/pylong.pyx,sha256=OrXIWymqVFgESFvZ5amY3l4ynBjIel5XnxHQvES5In0,4867
118
+ sage/libs/gmp/mpz.pxd,sha256=76TOHtrqWB9h9LBY2sQok-8dL3coqIXc6y0pLUANHQU,9628
119
+ sage/libs/gmp/mpn.pxd,sha256=xqtMwtfyNMXCuUfrM27MYjTJswuynYvqkNW4RNJMBzk,4151
120
+ sage/libs/gmp/randomize.pxd,sha256=TazhW2I0CQS8oQTa2jA1SKHSgrBha14tNy-6ddnkhFo,2309
121
+ sage/cpython/dict_del_by_value.pyx,sha256=QXJYSJ1VJzyksOhZVWay0Uvt92Yyuk61YLyuILmY0is,6416
122
+ sage/cpython/getattr.cpython-311-darwin.so,sha256=a-ecjtUgY6qD25LASIX--0Rgl8BdC2cUYV4QatrciRA,64096
123
+ sage/cpython/type.pyx,sha256=Xso6fkWMzcPl3lxJAAdy11BQ57gmuDkbIDbi_DmCH0w,1076
124
+ sage/cpython/atexit.cpython-311-darwin.so,sha256=bi0IoG6k7Tv-PyusirAy7FAxwhWloyxMnmhXsUqW3A0,58304
125
+ sage/cpython/getattr.pxd,sha256=8Cb3X41HUmaro-m-uD-Hoto63wxoVvNYYd80wbOYNbU,288
126
+ sage/cpython/pyx_visit.h,sha256=MFhGSCe_RsFn-D03QfNixKbe-cD2nzwC7JsNFmUd-rY,651
127
+ sage/cpython/wrapperdescr.pxd,sha256=01d05_VmUeAhJ9tWINAL4MnghxJzJVb7s-bafCejIi0,2263
128
+ sage/cpython/type.cpython-311-darwin.so,sha256=z16AXiNOw3KUafO2U70Fi6wf0WufCeUqBPJ9UegStA0,35248
129
+ sage/cpython/pycore_long.pxd,sha256=R5pyHcmmdtWn_DyNdvY60pcwgn0sTH38WecVWKclwXA,394
130
+ sage/cpython/debug.pyx,sha256=dbWOnaY3Gmrs-WrTpfhIhYnLIX9TIHUmzpToiqSHOkY,11765
131
+ sage/cpython/string.cpython-311-darwin.so,sha256=yWTHDMm4F6jlsB2gHCZriFGRGFWwkPJ9rW8jNQ6Pmj4,40808
132
+ sage/cpython/string_impl.h,sha256=IFEnaYxWnD9-Nn__f3KtGjsMQhUpw1RjHEwSYbDCEyM,1781
133
+ sage/cpython/cython_metaclass.h,sha256=UOzAuX8wafy8LQZWuhbFIf4fxfHacBjkvnbIdRiO14U,4058
134
+ sage/cpython/pycore_long.h,sha256=eTJcUr7GR5Cr5g9-Tts33PibfOesLrq_e-XCzsEpcPE,2156
135
+ sage/cpython/__init__.py,sha256=N7Hhh8oGxMh3_UVoAlh2hphJAaQVKOHytva7fe2yNa0,786
136
+ sage/cpython/cython_metaclass.pxd,sha256=lYUJgERJZix2MwpLWrhZm-a6iq7-rT01DAvph4S0T9Y,124
137
+ sage/cpython/string.pxd,sha256=TvD_ZgtYp36TW8mkjwFZaCyh5RS0ekjiokNAa-qskIE,2588
138
+ sage/cpython/builtin_types.pyx,sha256=d0O-Ydnf8SKZ-TtMnpK7E5gLGPpTLJjnrSkdyIqI2Lw,196
139
+ sage/cpython/all.py,sha256=Tux0o-rbgpJYFx4d5KeaoqJqhZb7KyqTdCrRD81Gq7A,148
140
+ sage/cpython/dict_del_by_value.cpython-311-darwin.so,sha256=c_1oTcx8JQdHaHbwqDTWXNGUzZ4-6bCT7-R9VEM0_NU,35176
141
+ sage/cpython/string.pyx,sha256=WVruGwr0FdR7ZRxk0sWTVQA5kau9Ar3ZTH6XUyHpBDg,1196
142
+ sage/cpython/cython_metaclass.pyx,sha256=FOME93m8ak8IfERSVZf28JufCeWGz0R_jL1xPIVfNwI,4833
143
+ sage/cpython/_py2_random.py,sha256=U4iBlbHd_4HhW6fU2MBPI2ERQZtZFmJIu9j1bPrxlwM,22928
144
+ sage/cpython/python_debug.pxd,sha256=EpFaKv-z7KzZ6f7g3o-NYUovfp9Yg-nsWbgFODjxI_w,2032
145
+ sage/cpython/builtin_types.cpython-311-darwin.so,sha256=J0U2KhXmiA7a3XKVUCraY5RJSV5VmHegDyH7O-jM384,28008
146
+ sage/cpython/dict_internal.h,sha256=McGCYoRGYalDPKk-tRx0wtfImuIV9BJ5Xg5PQdzJTR8,7110
147
+ sage/cpython/debug.cpython-311-darwin.so,sha256=3G-uZLFozCKqbbsZzV6EKmcNgtXG-rhi8_-odThmWoA,73592
148
+ sage/cpython/getattr.pyx,sha256=-FRx8cibqtRVwD8-hZIZEt1v154UP5ZW5dFPCenQcY4,14954
149
+ sage/cpython/python_debug.h,sha256=MP_YprVdq11ZK_tNFcK2AakrhBcY_8ct4lCAm5kDT18,875
150
+ sage/cpython/atexit.pyx,sha256=x9TzrPitvCe-IBVu38gviT1TiK0JpujnYTNxHeP_nWM,9851
151
+ sage/cpython/dict_del_by_value.pxd,sha256=s4fW6tHggYhyNEbYFRca06_uaqZaG0mpKBzHE6usOIk,346
152
+ sage/cpython/type.pxd,sha256=4o2n1_b9Pcrm3kAFKcUaY-incfgUaeNwfOcqni1PxrY,88
153
+ sage/cpython/cython_metaclass.cpython-311-darwin.so,sha256=0dthSmSx_K2NM1DLxYzLqeayqc9eyBDTuuO66EQv9vQ,26304
154
+ sage/sets/pythonclass.pyx,sha256=ZzUjh8bkoqWPCd85Kcx-NnuEghofSQ0NoCG_CpeCpX4,7136
155
+ sage/sets/pythonclass.cpython-311-darwin.so,sha256=t7Wmr26vdGyuIw6mTmur8oRBk-S9_OWYmumfNAa0MJ4,100464
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/all__sagemath_objects.py,sha256=U0s3i-j8VG_G3hwosaLXkFtIexExCHE66vo6Xk5_V08,46
164
+ sage/modules/module.cpython-311-darwin.so,sha256=gOuuwnRbOSgIde_b8_mFghBCeWGl0TeOTS5KgkKu-qU,75256
165
+ sage/structure/gens_py.py,sha256=3e2OoLDBveDRyuaGStNBUZarUNa0CE2Qs9cBGhxR28g,2069
166
+ sage/structure/parent.pxd,sha256=WZ0dqLTWmhpsSiXR_VN4LHmI9mac8w2fksr-_cuUrSk,4230
167
+ sage/structure/list_clone.pxd,sha256=Uy6QhnoBF8OLylfp74H4hupCyXCd1wVBXO0fAfbWKOw,2121
168
+ sage/structure/list_clone_timings_cy.cpython-311-darwin.so,sha256=vraddAx9GehCLD8XjrWvxR-cfmZ-n9Ywimz7Ye3kNJ0,58280
169
+ sage/structure/sage_object.pxd,sha256=ucLms0iBHPbK0A-IJ-UDLVEbW66BH719SErTxz23po0,78
170
+ sage/structure/sage_object_test.py,sha256=ZAhjc7q979clLhRqEWAneSQDWzxP7bXqtRyQwIXY81M,627
171
+ sage/structure/support_view.py,sha256=qlclI5fZdRBtWwV0UC5o9KmPPCTdqDUY0_YAAWWnf_k,5381
172
+ sage/structure/list_clone.cpython-311-darwin.so,sha256=Fp_HWw0VX_H_qUhx1slhOMInjmds6_gubYzyF64KvpA,340320
173
+ sage/structure/mutability.cpython-311-darwin.so,sha256=LtiIbAu5yxdbO_46Z3qanREA_7Pbi97SvdK7Z81ipSE,105064
174
+ sage/structure/parent_old.cpython-311-darwin.so,sha256=8-1EnHMlPTWyUR3YYLU-EiXTOJjYo1jDKRTm0yzLyYo,88256
175
+ sage/structure/coerce_actions.pyx,sha256=lrg_qYJehodMQN7o3Z_5Igfdszz02cInnLa-Ds8zYwA,37252
176
+ sage/structure/parent_base.pyx,sha256=7Y6Yzx43IDux18_r33Ke_kYndZxYwAvBCW9s6g-YNTo,1764
177
+ sage/structure/parent_old.pyx,sha256=z-tLmDMh5F_gjUYm5pAshEFtldFZfPhXY49H4vzStZw,10485
178
+ sage/structure/element.pyx,sha256=PFFZFGWp9K1yCnqOIyLGT3tEi-gT5VPwAxoNIXOSRmo,188418
179
+ sage/structure/list_clone_demo.cpython-311-darwin.so,sha256=UmUqca66j7qHmt70Xd-fi2n8ztk3ss_QVTvQEsFyMoM,118712
180
+ sage/structure/richcmp.pxd,sha256=XI0UNlzfLFW23_8TopFeTl-B6jzDSqhWryKGwbsbTkY,6475
181
+ sage/structure/factory.pyx,sha256=Y6CLDS5XvZZrywNWyo4XhJkyM6Yn_1VJ8MIKZRRNzXs,31258
182
+ sage/structure/dynamic_class.py,sha256=30FYmhsiPynSJwopAhcOeXrTukqOlJpBNjNhtBYt_gw,20222
183
+ sage/structure/coerce_maps.pxd,sha256=dm5fxyEnzLHBmAd__K4xLZNuyz0LYpX39YmCmj7amv8,504
184
+ sage/structure/richcmp.cpython-311-darwin.so,sha256=EWcqvrT8hSqFA0a5JsNqKvT0mGZkMeZQkybLltUy2KA,108664
185
+ sage/structure/factory.cpython-311-darwin.so,sha256=apZQ4KIIGK2BWUl_r-a2W6p0E-e9Xwaq1eK3tNmEwdw,126192
186
+ sage/structure/mutability.pyx,sha256=uA5GXQxj1JVE-0Xua5RwV5JgnedSrf0GQPxmrl9HiNs,11493
187
+ sage/structure/category_object.pxd,sha256=rz9gGO9WiOLQ2XP9PdzSIELHW-4vvPmjXvqdD6huRvY,1030
188
+ sage/structure/unique_representation.py,sha256=cdLGUBHPZb4tK3uQ4zqnIH93--I0J6oQQc4wf0N5B5Y,52750
189
+ sage/structure/sequence.py,sha256=MRvLtTYRik3rQvUYLANxgvafNXc9QteQRM1OwbcziPU,29457
190
+ sage/structure/parent_gens.cpython-311-darwin.so,sha256=vDK6mJ_SF4e1oa5hyNcUuz5MtiaSo9HqtG64YjWqG8Q,115168
191
+ sage/structure/coerce.cpython-311-darwin.so,sha256=nEpNZ1-z-LgWGX95-RuJPyKsT5PZ_VrX8-R1Xyl-Ls8,352920
192
+ sage/structure/global_options.py,sha256=OwIgjujCtFcIp5YYDkQpOSPXeVABfPFZiotM2Yq2Ap4,69477
193
+ sage/structure/test_factory.py,sha256=HL9H4MZC73a6Ew13W4VppvmRpcuqiJFEuM5xw3SZqOk,1760
194
+ sage/structure/debug_options.pxd,sha256=yf-VwnEs8Ur2_VYSQsrF9nkj_6AFTSsfcAcLW6IpdWM,200
195
+ sage/structure/parent_gens.pyx,sha256=uIOBoxy-5e8L2YRMEMzX36uPbOg4PCO97iIgcXAfCTQ,12910
196
+ sage/structure/set_factories.py,sha256=TAsPdQ-dQon69PxUv-fiybWHAOOAfJmQZiBQpRyCbdI,41181
197
+ sage/structure/parent.cpython-311-darwin.so,sha256=OnjbGLhF4mUw_FdemSDh66deXxqXyn6pIRMoORgDKOE,381384
198
+ sage/structure/__init__.py,sha256=EVCI863Rj_YxVl2dvc4UurCWk_IreSkmOrtR5vZLZ-4,122
199
+ sage/structure/list_clone_timings.py,sha256=qB1wmsqiKsTkmF2c6NbAlBIZ5DzwJZ8hnTeMMUMwLRI,6692
200
+ sage/structure/factorization_integer.py,sha256=PALiFasjPjEqEz08m1A5qADt14lhMt4Xgpgl4Vnovzw,3818
201
+ sage/structure/coerce.pyx,sha256=q2EvaHERVPmvHDAmsVAf9LIYcvCXKhy8pr35uxXuWxM,82161
202
+ sage/structure/coerce_dict.pxd,sha256=3Exj0-GuFQcXtXXKs4ydsU8trgO81fO2cIBP7PDlgZo,1415
203
+ sage/structure/all.py,sha256=5GYCPE_LABmoZGre1WR9mlhvvpWpzqJMZrS9rAPSan8,798
204
+ sage/structure/parent_base.cpython-311-darwin.so,sha256=WGggZLpskDSbxtTowMqBs6O28azqJfiNgCLqQS5T2dA,51528
205
+ sage/structure/element_wrapper.pxd,sha256=MI50lX2z0XmOoaFwGXns-rpOcdcduculNkS8t6VP1i4,319
206
+ sage/structure/coerce_actions.cpython-311-darwin.so,sha256=6umfgMW-BQMi67NLi-rq9sRYpQwORMtJS2ChkUE0-Ko,208280
207
+ sage/structure/element_wrapper.pyx,sha256=RH3G4VHj1Rop1w5eLV6ynIPVaV_qPxClhZ846aqxPbY,19276
208
+ sage/structure/factorization.py,sha256=4cKiiZ7KCiTW6MBXWrV3UdyDc-ww7-9p1Twv5LS-n78,45770
209
+ sage/structure/coerce_dict.pyx,sha256=_DuaRSosZsllXhc57Oe9imVrkc2xkQNzdHeNEAdtjVo,49983
210
+ sage/structure/indexed_generators.py,sha256=T3ADtTQ_D3s9waiEbURYTlyr7udHmoCXDCLnSk8xcts,34776
211
+ sage/structure/coerce.pxd,sha256=FklBQUdf23MFPu33SkIWJC9mQw2jjNSIY7PPMlQCNLQ,1369
212
+ sage/structure/list_clone_demo.pyx,sha256=oU65ulMRrP8mkP8aNRlBd8j0Z61tIta868Fxui8LDKs,7643
213
+ sage/structure/debug_options.pyx,sha256=JR58ihocYWnDea5HgTN8WQ_wRVwyYcO6xe8XFM2Ku_k,1974
214
+ sage/structure/coerce_exceptions.py,sha256=0_og2GtBcrr8me7_8edijpOnlKFbFhAiQS7OfpNslAQ,988
215
+ sage/structure/parent_gens.pxd,sha256=mE16F-vEdWAUeE3atp6ZddvIAteQ6jagiYwnVGjHr3s,802
216
+ sage/structure/formal_sum.py,sha256=-0PPVOHHlfLGQNmU8YV7qNZhrxanAoVorZuFUKSX8Ss,15953
217
+ sage/structure/mutability.pxd,sha256=SvQMhy7o0PKUnPdNSOdM0w6qpgzEqVzxVXmG1EvmKNo,680
218
+ sage/structure/category_object.pyx,sha256=iK22UiNYaCgkEc4QeRY4Cu9V7oMBVQCZKhtd4O8NpVM,39030
219
+ sage/structure/coerce_dict.cpython-311-darwin.so,sha256=v3QAI-PvwzSbUlpgH_OW89vJbOn39DIK99uDaud1eoA,178096
220
+ sage/structure/list_clone_timings_cy.pyx,sha256=Yta-vzJVi8ZBH_1mPFJ7mNB11RGB64TqKqtSuil5CPc,2588
221
+ sage/structure/richcmp.pyx,sha256=3q-PX3EvGzjpYz9uPcoRuHU5NiJt_ax32_-9v5QAgNY,17828
222
+ sage/structure/coerce_maps.pyx,sha256=n1_2DKjzOu_I6lxkBXnr6hUqFAQau83Z985ryHK1HLY,25878
223
+ sage/structure/parent_old.pxd,sha256=rzTYw76EYTgql4jxm5X8wvYQ3D8vmU-V8wVQsU3w4Cw,969
224
+ sage/structure/element_wrapper.cpython-311-darwin.so,sha256=2VBMFV6gDp4_mkjbam490VQ62dSpxQFYaZSVlg1OY5g,135016
225
+ sage/structure/element.pxd,sha256=JaMsIvj0HnpDZf2Q1vSs99SIQv3WKCpqkfg9oWLnTuU,7958
226
+ sage/structure/sage_object.cpython-311-darwin.so,sha256=DtmnvIoeR7jaAcObKJzBqCrHMxW7fq80cbHS9b_Yxsk,179536
227
+ sage/structure/coerce_maps.cpython-311-darwin.so,sha256=Nunj7Z6hyE0xQDreEr-xBOq-vBMjmclKEAdubQW-nOk,204472
228
+ sage/structure/debug_options.cpython-311-darwin.so,sha256=074uRvSvf0DAArIQSu_I6gMCSHqNMPSDK9E_I_m7aHE,36632
229
+ sage/structure/coerce_actions.pxd,sha256=4Gzyc43JOKIYDPkKUowbdQ-vYpDTrIxJERUed88b6Oo,528
230
+ sage/structure/parent_base.pxd,sha256=sQ4wTvOWWZUY8j_zLQjeFpZeXTCpJ6eNAFhL3BPU9tk,585
231
+ sage/structure/nonexact.py,sha256=kyCU30mUCCbiju6ujgVGe57gtAhavlEQvHDYHSYYupA,1736
232
+ sage/structure/sage_object.pyx,sha256=v-zZLileKVikJuuZNdYlGp5StPASFAAMgdh7s1mHrPY,32292
233
+ sage/structure/element.cpython-311-darwin.so,sha256=Wy4_r8ONzvU8U9c3LXUVqt2vamazaW42SCzEcFq0glQ,565200
234
+ sage/structure/list_clone.pyx,sha256=Jbicq-sIZ7WhqD_r0zbaXk4D0JEI820TrIcGN6EEGNQ,58956
235
+ sage/structure/category_object.cpython-311-darwin.so,sha256=hZehFkM1pDJEE2tzIeDxeBXWLDFSo4q3CfPGuuW71q4,182312
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/category_cy_helper.cpython-311-darwin.so,sha256=fUXVJ6sp4tLy2kOf-oOsjFOFRqIF4J-nZ3QiQ5mRBno,86512
243
+ sage/categories/action.pyx,sha256=jmGSGsG4VxsrIa26ShNxk1pnz9UdHxsDH6jxNVlHexQ,21056
244
+ sage/categories/action.cpython-311-darwin.so,sha256=VBHnWweIenPZScRYidi3_neQD7HFWTQ4GhjZatwfTbM,153176
245
+ sage/categories/algebra_functor.py,sha256=uAzDhMfZtzhoLyWTo9EXcsp88eMWQiyKdVuGKjNIZu4,24518
246
+ sage/categories/quotients.py,sha256=aWaYtsUG0-ZHgmuvchh6zfkx6xJxxLumLINPChE942Y,2562
247
+ sage/categories/morphism.pxd,sha256=udKj7cdyqm5oVHsn1abH2D9j2Xyd_47e2ZpTi0ouyVg,347
248
+ sage/categories/facade_sets.py,sha256=RYPBPreMt6hUZBA5x2ArTqrDlzE-heSw114vAv4opGg,8237
249
+ sage/categories/functor.pyx,sha256=VKU-tGKlPxn180i43CwUq6jZUSY3yVx1N78Xb3GxO34,22277
250
+ sage/categories/primer.py,sha256=42CJGnql8lwhVQVl-sbtUz_HlTft5SWmvDzr0PPXQw0,67173
251
+ sage/categories/sets_cat.py,sha256=BpYT3b-W2ENLFhI7seHd6UVVSNdo8PlUNxYRqzJB-fY,134837
252
+ sage/categories/subobjects.py,sha256=upYT6feRHzYRELhoBs3VrJ0cgFNwRntxwsucbuHVsdY,2548
253
+ sage/categories/sets_with_partial_maps.py,sha256=Rn-Z75T-bSG5KJnIdADHbsQAvCJtbcEgxi79V46JXjc,1668
254
+ sage/categories/realizations.py,sha256=4ocuBKRQmROJGau7k-6OizQVLmgiGIOGRwSIvJGE_is,8297
255
+ sage/categories/category_singleton.pyx,sha256=xwsrucWotXXe-lZib5PSE7cMz_5qfIOTS9rIpbxFNns,13719
256
+ sage/categories/homsets.py,sha256=D8Lf2aqcWUcbeDUx7sTAW_MLTU6Tbthlem708qxsjFg,12567
257
+ sage/categories/isomorphic_objects.py,sha256=Uyr_YZf3yyUAB9o5afQNMILaXe8PwM1wKGlt00OGPdg,2993
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/category_singleton.cpython-311-darwin.so,sha256=jDx6eYuWiYJN-JJLMlhPmugplPD1PKVJYDRsigo3htE,86280
262
+ sage/categories/map.pxd,sha256=BuIaeaQ6Kid0Vu6BtwWpZjU6Kbdgfl_oL02qvdtgB2s,1093
263
+ sage/categories/homset.py,sha256=U8rhTZaH1hSypzW7UHjddBlzl51RIMw297vjNdVybVA,53173
264
+ sage/categories/morphism.cpython-311-darwin.so,sha256=FQ40k_6pYItI095_1wZLOw-2d4v7SdNcxvsl982OKnE,219760
265
+ sage/categories/basic.py,sha256=V1FArAZxEZpxXXHcsY60rknBOSsWqvEbMzVTik8yWJ4,2576
266
+ sage/categories/category_singleton.pxd,sha256=Jm1lACWOGrs6Jjsy_fdv61NQSyQqnaKftAiNBNJYhgI,139
267
+ sage/categories/covariant_functorial_construction.py,sha256=1iCOoZ-1heNULiTQfGNJ4uN2MDRDQZErWDHx6p-A-MI,27547
268
+ sage/categories/functor.cpython-311-darwin.so,sha256=XBymgRkdcXWggj8Z6dmxpyrl4v9f1XlcyQJgnFKLPUo,134336
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-311-darwin.so,sha256=WRPO9eC8huoK5lETOPFdmzlUivTmgJfNd6rR_hftZAQ,284232
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: cp311-cp311-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