passagemath-objects 10.6.41__cp312-cp312-win_amd64.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 (281) hide show
  1. passagemath_objects/__init__.py +3 -0
  2. passagemath_objects-10.6.41.dist-info/DELVEWHEEL +2 -0
  3. passagemath_objects-10.6.41.dist-info/METADATA +115 -0
  4. passagemath_objects-10.6.41.dist-info/RECORD +281 -0
  5. passagemath_objects-10.6.41.dist-info/WHEEL +5 -0
  6. passagemath_objects-10.6.41.dist-info/top_level.txt +3 -0
  7. passagemath_objects.libs/libgmp-10-79b4110c7ea2b760f16cfef97e8a8a34.dll +0 -0
  8. sage/all__sagemath_objects.py +46 -0
  9. sage/arith/all__sagemath_objects.py +5 -0
  10. sage/arith/long.pxd +411 -0
  11. sage/arith/numerical_approx.cp312-win_amd64.pyd +0 -0
  12. sage/arith/numerical_approx.pxd +35 -0
  13. sage/arith/numerical_approx.pyx +75 -0
  14. sage/arith/power.cp312-win_amd64.pyd +0 -0
  15. sage/arith/power.pxd +31 -0
  16. sage/arith/power.pyx +127 -0
  17. sage/categories/action.cp312-win_amd64.pyd +0 -0
  18. sage/categories/action.pxd +29 -0
  19. sage/categories/action.pyx +641 -0
  20. sage/categories/algebra_functor.py +745 -0
  21. sage/categories/all__sagemath_objects.py +33 -0
  22. sage/categories/basic.py +71 -0
  23. sage/categories/cartesian_product.py +295 -0
  24. sage/categories/category.py +3401 -0
  25. sage/categories/category_cy_helper.cp312-win_amd64.pyd +0 -0
  26. sage/categories/category_cy_helper.pxd +8 -0
  27. sage/categories/category_cy_helper.pyx +322 -0
  28. sage/categories/category_singleton.cp312-win_amd64.pyd +0 -0
  29. sage/categories/category_singleton.pxd +3 -0
  30. sage/categories/category_singleton.pyx +342 -0
  31. sage/categories/category_types.py +637 -0
  32. sage/categories/category_with_axiom.py +2885 -0
  33. sage/categories/covariant_functorial_construction.py +703 -0
  34. sage/categories/facade_sets.py +228 -0
  35. sage/categories/functor.cp312-win_amd64.pyd +0 -0
  36. sage/categories/functor.pxd +7 -0
  37. sage/categories/functor.pyx +691 -0
  38. sage/categories/homset.py +1338 -0
  39. sage/categories/homsets.py +364 -0
  40. sage/categories/isomorphic_objects.py +73 -0
  41. sage/categories/map.cp312-win_amd64.pyd +0 -0
  42. sage/categories/map.pxd +34 -0
  43. sage/categories/map.pyx +2112 -0
  44. sage/categories/morphism.cp312-win_amd64.pyd +0 -0
  45. sage/categories/morphism.pxd +14 -0
  46. sage/categories/morphism.pyx +895 -0
  47. sage/categories/objects.py +167 -0
  48. sage/categories/primer.py +1696 -0
  49. sage/categories/pushout.py +4834 -0
  50. sage/categories/quotients.py +64 -0
  51. sage/categories/realizations.py +200 -0
  52. sage/categories/sets_cat.py +3228 -0
  53. sage/categories/sets_with_partial_maps.py +52 -0
  54. sage/categories/subobjects.py +64 -0
  55. sage/categories/subquotients.py +21 -0
  56. sage/categories/with_realizations.py +311 -0
  57. sage/cpython/__init__.py +28 -0
  58. sage/cpython/_py2_random.py +619 -0
  59. sage/cpython/all.py +3 -0
  60. sage/cpython/atexit.cp312-win_amd64.pyd +0 -0
  61. sage/cpython/atexit.pyx +269 -0
  62. sage/cpython/builtin_types.cp312-win_amd64.pyd +0 -0
  63. sage/cpython/builtin_types.pyx +7 -0
  64. sage/cpython/cython_metaclass.cp312-win_amd64.pyd +0 -0
  65. sage/cpython/cython_metaclass.h +117 -0
  66. sage/cpython/cython_metaclass.pxd +3 -0
  67. sage/cpython/cython_metaclass.pyx +130 -0
  68. sage/cpython/debug.cp312-win_amd64.pyd +0 -0
  69. sage/cpython/debug.pyx +302 -0
  70. sage/cpython/dict_del_by_value.cp312-win_amd64.pyd +0 -0
  71. sage/cpython/dict_del_by_value.pxd +9 -0
  72. sage/cpython/dict_del_by_value.pyx +191 -0
  73. sage/cpython/dict_internal.h +245 -0
  74. sage/cpython/getattr.cp312-win_amd64.pyd +0 -0
  75. sage/cpython/getattr.pxd +9 -0
  76. sage/cpython/getattr.pyx +439 -0
  77. sage/cpython/pycore_long.h +97 -0
  78. sage/cpython/pycore_long.pxd +10 -0
  79. sage/cpython/python_debug.h +44 -0
  80. sage/cpython/python_debug.pxd +47 -0
  81. sage/cpython/pyx_visit.h +13 -0
  82. sage/cpython/string.cp312-win_amd64.pyd +0 -0
  83. sage/cpython/string.pxd +76 -0
  84. sage/cpython/string.pyx +34 -0
  85. sage/cpython/string_impl.h +60 -0
  86. sage/cpython/type.cp312-win_amd64.pyd +0 -0
  87. sage/cpython/type.pxd +2 -0
  88. sage/cpython/type.pyx +40 -0
  89. sage/cpython/wrapperdescr.pxd +67 -0
  90. sage/ext/all__sagemath_objects.py +3 -0
  91. sage/ext/ccobject.h +64 -0
  92. sage/ext/cplusplus.pxd +17 -0
  93. sage/ext/mod_int.h +30 -0
  94. sage/ext/mod_int.pxd +24 -0
  95. sage/ext/stdsage.pxd +39 -0
  96. sage/groups/all__sagemath_objects.py +1 -0
  97. sage/groups/group.cp312-win_amd64.pyd +0 -0
  98. sage/groups/group.pxd +14 -0
  99. sage/groups/group.pyx +322 -0
  100. sage/groups/old.cp312-win_amd64.pyd +0 -0
  101. sage/groups/old.pxd +14 -0
  102. sage/groups/old.pyx +219 -0
  103. sage/libs/all__sagemath_objects.py +3 -0
  104. sage/libs/gmp/__init__.py +1 -0
  105. sage/libs/gmp/all.pxd +6 -0
  106. sage/libs/gmp/binop.pxd +23 -0
  107. sage/libs/gmp/misc.pxd +8 -0
  108. sage/libs/gmp/mpf.pxd +88 -0
  109. sage/libs/gmp/mpn.pxd +57 -0
  110. sage/libs/gmp/mpq.pxd +57 -0
  111. sage/libs/gmp/mpz.pxd +202 -0
  112. sage/libs/gmp/pylong.cp312-win_amd64.pyd +0 -0
  113. sage/libs/gmp/pylong.pxd +12 -0
  114. sage/libs/gmp/pylong.pyx +150 -0
  115. sage/libs/gmp/random.pxd +25 -0
  116. sage/libs/gmp/randomize.pxd +59 -0
  117. sage/libs/gmp/types.pxd +53 -0
  118. sage/libs/gmpxx.pxd +19 -0
  119. sage/misc/abstract_method.py +276 -0
  120. sage/misc/all__sagemath_objects.py +43 -0
  121. sage/misc/bindable_class.py +253 -0
  122. sage/misc/c3_controlled.cp312-win_amd64.pyd +0 -0
  123. sage/misc/c3_controlled.pxd +2 -0
  124. sage/misc/c3_controlled.pyx +1402 -0
  125. sage/misc/cachefunc.cp312-win_amd64.pyd +0 -0
  126. sage/misc/cachefunc.pxd +43 -0
  127. sage/misc/cachefunc.pyx +3781 -0
  128. sage/misc/call.py +188 -0
  129. sage/misc/classcall_metaclass.cp312-win_amd64.pyd +0 -0
  130. sage/misc/classcall_metaclass.pxd +14 -0
  131. sage/misc/classcall_metaclass.pyx +599 -0
  132. sage/misc/constant_function.cp312-win_amd64.pyd +0 -0
  133. sage/misc/constant_function.pyx +130 -0
  134. sage/misc/decorators.py +747 -0
  135. sage/misc/fast_methods.cp312-win_amd64.pyd +0 -0
  136. sage/misc/fast_methods.pxd +20 -0
  137. sage/misc/fast_methods.pyx +351 -0
  138. sage/misc/flatten.py +90 -0
  139. sage/misc/fpickle.cp312-win_amd64.pyd +0 -0
  140. sage/misc/fpickle.pyx +177 -0
  141. sage/misc/function_mangling.cp312-win_amd64.pyd +0 -0
  142. sage/misc/function_mangling.pxd +11 -0
  143. sage/misc/function_mangling.pyx +308 -0
  144. sage/misc/inherit_comparison.cp312-win_amd64.pyd +0 -0
  145. sage/misc/inherit_comparison.pxd +5 -0
  146. sage/misc/inherit_comparison.pyx +105 -0
  147. sage/misc/instancedoc.cp312-win_amd64.pyd +0 -0
  148. sage/misc/instancedoc.pyx +331 -0
  149. sage/misc/lazy_attribute.cp312-win_amd64.pyd +0 -0
  150. sage/misc/lazy_attribute.pyx +607 -0
  151. sage/misc/lazy_format.py +135 -0
  152. sage/misc/lazy_import.cp312-win_amd64.pyd +0 -0
  153. sage/misc/lazy_import.pyx +1299 -0
  154. sage/misc/lazy_import_cache.py +36 -0
  155. sage/misc/lazy_list.cp312-win_amd64.pyd +0 -0
  156. sage/misc/lazy_list.pxd +19 -0
  157. sage/misc/lazy_list.pyx +1187 -0
  158. sage/misc/lazy_string.cp312-win_amd64.pyd +0 -0
  159. sage/misc/lazy_string.pxd +7 -0
  160. sage/misc/lazy_string.pyx +546 -0
  161. sage/misc/misc.py +1066 -0
  162. sage/misc/misc_c.cp312-win_amd64.pyd +0 -0
  163. sage/misc/misc_c.pxd +3 -0
  164. sage/misc/misc_c.pyx +766 -0
  165. sage/misc/namespace_package.py +37 -0
  166. sage/misc/nested_class.cp312-win_amd64.pyd +0 -0
  167. sage/misc/nested_class.pxd +3 -0
  168. sage/misc/nested_class.pyx +394 -0
  169. sage/misc/persist.cp312-win_amd64.pyd +0 -0
  170. sage/misc/persist.pyx +1251 -0
  171. sage/misc/prandom.py +418 -0
  172. sage/misc/randstate.cp312-win_amd64.pyd +0 -0
  173. sage/misc/randstate.pxd +30 -0
  174. sage/misc/randstate.pyx +1059 -0
  175. sage/misc/repr.py +203 -0
  176. sage/misc/reset.cp312-win_amd64.pyd +0 -0
  177. sage/misc/reset.pyx +196 -0
  178. sage/misc/sage_ostools.cp312-win_amd64.pyd +0 -0
  179. sage/misc/sage_ostools.pyx +323 -0
  180. sage/misc/sage_timeit.py +276 -0
  181. sage/misc/sage_timeit_class.cp312-win_amd64.pyd +0 -0
  182. sage/misc/sage_timeit_class.pyx +120 -0
  183. sage/misc/sage_unittest.py +637 -0
  184. sage/misc/sageinspect.py +2768 -0
  185. sage/misc/session.cp312-win_amd64.pyd +0 -0
  186. sage/misc/session.pyx +392 -0
  187. sage/misc/superseded.py +557 -0
  188. sage/misc/test_nested_class.py +228 -0
  189. sage/misc/timing.py +264 -0
  190. sage/misc/unknown.py +222 -0
  191. sage/misc/verbose.py +253 -0
  192. sage/misc/weak_dict.cp312-win_amd64.pyd +0 -0
  193. sage/misc/weak_dict.pxd +15 -0
  194. sage/misc/weak_dict.pyx +1231 -0
  195. sage/modules/all__sagemath_objects.py +1 -0
  196. sage/modules/module.cp312-win_amd64.pyd +0 -0
  197. sage/modules/module.pxd +5 -0
  198. sage/modules/module.pyx +329 -0
  199. sage/rings/all__sagemath_objects.py +3 -0
  200. sage/rings/integer_fake.h +22 -0
  201. sage/rings/integer_fake.pxd +55 -0
  202. sage/sets/all__sagemath_objects.py +3 -0
  203. sage/sets/pythonclass.cp312-win_amd64.pyd +0 -0
  204. sage/sets/pythonclass.pxd +9 -0
  205. sage/sets/pythonclass.pyx +247 -0
  206. sage/structure/__init__.py +13 -0
  207. sage/structure/all.py +30 -0
  208. sage/structure/category_object.cp312-win_amd64.pyd +0 -0
  209. sage/structure/category_object.pxd +28 -0
  210. sage/structure/category_object.pyx +1087 -0
  211. sage/structure/coerce.cp312-win_amd64.pyd +0 -0
  212. sage/structure/coerce.pxd +44 -0
  213. sage/structure/coerce.pyx +2107 -0
  214. sage/structure/coerce_actions.cp312-win_amd64.pyd +0 -0
  215. sage/structure/coerce_actions.pxd +27 -0
  216. sage/structure/coerce_actions.pyx +988 -0
  217. sage/structure/coerce_dict.cp312-win_amd64.pyd +0 -0
  218. sage/structure/coerce_dict.pxd +51 -0
  219. sage/structure/coerce_dict.pyx +1557 -0
  220. sage/structure/coerce_exceptions.py +23 -0
  221. sage/structure/coerce_maps.cp312-win_amd64.pyd +0 -0
  222. sage/structure/coerce_maps.pxd +28 -0
  223. sage/structure/coerce_maps.pyx +718 -0
  224. sage/structure/debug_options.cp312-win_amd64.pyd +0 -0
  225. sage/structure/debug_options.pxd +6 -0
  226. sage/structure/debug_options.pyx +54 -0
  227. sage/structure/dynamic_class.py +541 -0
  228. sage/structure/element.cp312-win_amd64.pyd +0 -0
  229. sage/structure/element.pxd +272 -0
  230. sage/structure/element.pyx +4772 -0
  231. sage/structure/element_wrapper.cp312-win_amd64.pyd +0 -0
  232. sage/structure/element_wrapper.pxd +12 -0
  233. sage/structure/element_wrapper.pyx +582 -0
  234. sage/structure/factorization.py +1422 -0
  235. sage/structure/factorization_integer.py +105 -0
  236. sage/structure/factory.cp312-win_amd64.pyd +0 -0
  237. sage/structure/factory.pyx +786 -0
  238. sage/structure/formal_sum.py +489 -0
  239. sage/structure/gens_py.py +73 -0
  240. sage/structure/global_options.py +1743 -0
  241. sage/structure/indexed_generators.py +863 -0
  242. sage/structure/list_clone.cp312-win_amd64.pyd +0 -0
  243. sage/structure/list_clone.pxd +65 -0
  244. sage/structure/list_clone.pyx +1867 -0
  245. sage/structure/list_clone_demo.cp312-win_amd64.pyd +0 -0
  246. sage/structure/list_clone_demo.pyx +248 -0
  247. sage/structure/list_clone_timings.py +179 -0
  248. sage/structure/list_clone_timings_cy.cp312-win_amd64.pyd +0 -0
  249. sage/structure/list_clone_timings_cy.pyx +86 -0
  250. sage/structure/mutability.cp312-win_amd64.pyd +0 -0
  251. sage/structure/mutability.pxd +21 -0
  252. sage/structure/mutability.pyx +348 -0
  253. sage/structure/nonexact.py +69 -0
  254. sage/structure/parent.cp312-win_amd64.pyd +0 -0
  255. sage/structure/parent.pxd +112 -0
  256. sage/structure/parent.pyx +3093 -0
  257. sage/structure/parent_base.cp312-win_amd64.pyd +0 -0
  258. sage/structure/parent_base.pxd +13 -0
  259. sage/structure/parent_base.pyx +44 -0
  260. sage/structure/parent_gens.cp312-win_amd64.pyd +0 -0
  261. sage/structure/parent_gens.pxd +22 -0
  262. sage/structure/parent_gens.pyx +377 -0
  263. sage/structure/parent_old.cp312-win_amd64.pyd +0 -0
  264. sage/structure/parent_old.pxd +25 -0
  265. sage/structure/parent_old.pyx +294 -0
  266. sage/structure/proof/__init__.py +1 -0
  267. sage/structure/proof/all.py +243 -0
  268. sage/structure/proof/proof.py +300 -0
  269. sage/structure/richcmp.cp312-win_amd64.pyd +0 -0
  270. sage/structure/richcmp.pxd +213 -0
  271. sage/structure/richcmp.pyx +495 -0
  272. sage/structure/sage_object.cp312-win_amd64.pyd +0 -0
  273. sage/structure/sage_object.pxd +3 -0
  274. sage/structure/sage_object.pyx +988 -0
  275. sage/structure/sage_object_test.py +19 -0
  276. sage/structure/sequence.py +937 -0
  277. sage/structure/set_factories.py +1178 -0
  278. sage/structure/set_factories_example.py +527 -0
  279. sage/structure/support_view.py +179 -0
  280. sage/structure/test_factory.py +56 -0
  281. 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,2 @@
1
+ Version: 1.11.2
2
+ Arguments: ['C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-2jo1wamn\\cp312-win_amd64\\build\\venv\\Scripts\\delvewheel', 'repair', '-vv', '--custom-patch', '-w', 'C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-2jo1wamn\\cp312-win_amd64\\repaired_wheel', 'C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-2jo1wamn\\cp312-win_amd64\\built_wheel\\passagemath_objects-10.6.41-cp312-cp312-win_amd64.whl']
@@ -0,0 +1,115 @@
1
+ Metadata-Version: 2.4
2
+ Name: passagemath-objects
3
+ Version: 10.6.41
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,281 @@
1
+ passagemath_objects/__init__.py,sha256=t9J2tkWRjwi9Skhh1Ubj5Te0uvFwkpXUhX8IwP4Ba4U,88
2
+ passagemath_objects-10.6.41.dist-info/DELVEWHEEL,sha256=hBqJ_KIDQiXe3l5Zlval2vg208Uj7jDU3l82o57kDiA,439
3
+ passagemath_objects-10.6.41.dist-info/METADATA,sha256=6rlUcfwB84p9ZTYBpckjCTFfGnzxiPBLGRwutxdVL4w,5435
4
+ passagemath_objects-10.6.41.dist-info/RECORD,,
5
+ passagemath_objects-10.6.41.dist-info/top_level.txt,sha256=0d3_E_m23cmoshzIf-G9mEsF55wtJLZjnTM551qb3uc,26
6
+ passagemath_objects-10.6.41.dist-info/WHEEL,sha256=8UP9x9puWI0P1V_d7K2oMTBqfeLNm21CTzZ_Ptr0NXU,101
7
+ passagemath_objects.libs/libgmp-10-79b4110c7ea2b760f16cfef97e8a8a34.dll,sha256=ebQRDH6it2DxbP75foqKNHmimAyVqFYDzgCHlp_yDr0,3004991
8
+ sage/all__sagemath_objects.py,sha256=pn4WPpvv-sWg5LppBj_-keSZNHElySBi2YXRI1f8rks,1106
9
+ sage/arith/all__sagemath_objects.py,sha256=Xsmp9IOAIWpXfNhDnlC1rPzaAWwkOnDGBX7TSDM7HKc,222
10
+ sage/arith/long.pxd,sha256=wc2jBHq3rpg7oSfahGg7LqU495AgGG-IrU5R6RVXlKA,13944
11
+ sage/arith/numerical_approx.cp312-win_amd64.pyd,sha256=TMpluLxpNzDhnTXzn1RcDfrPcT2spBkHHGFtqLhpfbA,39424
12
+ sage/arith/numerical_approx.pxd,sha256=gFWmxAnUn8xt1cMwCW0pxfywfy_ZJ3vrRuNjAjlo1dU,950
13
+ sage/arith/numerical_approx.pyx,sha256=IkdhP04vlBfHcSR4YREYBisONaa9uBWMlQmM8wrF-3Q,2538
14
+ sage/arith/power.cp312-win_amd64.pyd,sha256=NYsa77ogX7YeKDW0bwfEHwMz3AppfceT9v2HaFS3qCY,40960
15
+ sage/arith/power.pxd,sha256=CS0qcAvGCF4VdHFFOxfKtF5cmviM0UyOzGfAYghjTCA,630
16
+ sage/arith/power.pyx,sha256=SJamErC6EQinYao_I5JMTWNnYRRxUT-t-jRErZq-T5A,3257
17
+ sage/categories/action.cp312-win_amd64.pyd,sha256=pcrK6-uNgQ4Bi0uFVaMZsgMpnPMS4pdxM8TGZyrXh6w,92160
18
+ sage/categories/action.pxd,sha256=lhpj480hNMVyP3sWhDt0FZV3q74Y-6Q19-Ba15OO6bc,725
19
+ sage/categories/action.pyx,sha256=jmGSGsG4VxsrIa26ShNxk1pnz9UdHxsDH6jxNVlHexQ,21056
20
+ sage/categories/algebra_functor.py,sha256=uAzDhMfZtzhoLyWTo9EXcsp88eMWQiyKdVuGKjNIZu4,24518
21
+ sage/categories/all__sagemath_objects.py,sha256=l0cQjqOFqQLeB_KplQnKRfuL566SRDm5Q9eBkz72_l4,1148
22
+ sage/categories/basic.py,sha256=fMF4al6qlRfH6C8h3Kyp676hgvKlfvTapNmgMc44Luo,2889
23
+ sage/categories/cartesian_product.py,sha256=8-y9HOn7IHC4eoOxfSJxaNgTq5RRmwalAW-48i6H9B8,10183
24
+ sage/categories/category.py,sha256=C1wrDQB95QNB6RFjoipqNxoTP6w9SDDY12EFnmywpH8,129691
25
+ sage/categories/category_cy_helper.cp312-win_amd64.pyd,sha256=4asVrjO-4gX05WdExAPEt0rON_MXotRQXbyaR66SLwQ,57856
26
+ sage/categories/category_cy_helper.pxd,sha256=JsUgsEflgxFj99fKcUkZIF51hubE3fm1NjYFjEUdNzc,408
27
+ sage/categories/category_cy_helper.pyx,sha256=8OSlOSed3p6Lp4Sr9vBck7lEtXxnrcnsKjQhbHZh1tY,10890
28
+ sage/categories/category_singleton.cp312-win_amd64.pyd,sha256=9HnTKmdjmthLENG0OBYDA9aLPT13xZAF7lFerGiwSDE,59904
29
+ sage/categories/category_singleton.pxd,sha256=Jm1lACWOGrs6Jjsy_fdv61NQSyQqnaKftAiNBNJYhgI,139
30
+ sage/categories/category_singleton.pyx,sha256=xwsrucWotXXe-lZib5PSE7cMz_5qfIOTS9rIpbxFNns,13719
31
+ sage/categories/category_types.py,sha256=5zGnHgih48q7hEjKl4Sh72fhAnJXmDElgniKe63VHDo,20303
32
+ sage/categories/category_with_axiom.py,sha256=v-tLYIex9xNCFl-ng6pPtKNR3p-K7eRF4QCwO9VJxoU,115134
33
+ sage/categories/covariant_functorial_construction.py,sha256=1iCOoZ-1heNULiTQfGNJ4uN2MDRDQZErWDHx6p-A-MI,27547
34
+ sage/categories/facade_sets.py,sha256=RYPBPreMt6hUZBA5x2ArTqrDlzE-heSw114vAv4opGg,8237
35
+ sage/categories/functor.cp312-win_amd64.pyd,sha256=kd5SmooZbt_o-H897hGzquVzUQN6RDfJqM4UCR__n1k,90624
36
+ sage/categories/functor.pxd,sha256=HcrYjA83mrJpvnb9xRD7ygHrMIi5FOQSgyRfivnIb5I,203
37
+ sage/categories/functor.pyx,sha256=VKU-tGKlPxn180i43CwUq6jZUSY3yVx1N78Xb3GxO34,22277
38
+ sage/categories/homset.py,sha256=U8rhTZaH1hSypzW7UHjddBlzl51RIMw297vjNdVybVA,53173
39
+ sage/categories/homsets.py,sha256=D8Lf2aqcWUcbeDUx7sTAW_MLTU6Tbthlem708qxsjFg,12567
40
+ sage/categories/isomorphic_objects.py,sha256=Uyr_YZf3yyUAB9o5afQNMILaXe8PwM1wKGlt00OGPdg,2993
41
+ sage/categories/map.cp312-win_amd64.pyd,sha256=J17rZ4ECDcVpBX-KnWJR1E7DLTeAuKGqi2mdhQlD6PI,202240
42
+ sage/categories/map.pxd,sha256=BuIaeaQ6Kid0Vu6BtwWpZjU6Kbdgfl_oL02qvdtgB2s,1093
43
+ sage/categories/map.pyx,sha256=T2JEvZlFbCTXIN-PfbXOTG3JNouw8mlfqltV-Q0MPVk,78451
44
+ sage/categories/morphism.cp312-win_amd64.pyd,sha256=sn-Jc_AIQCDBIuCkVESyCnMQtUjhqlrjMjSthh0o47o,132096
45
+ sage/categories/morphism.pxd,sha256=udKj7cdyqm5oVHsn1abH2D9j2Xyd_47e2ZpTi0ouyVg,347
46
+ sage/categories/morphism.pyx,sha256=JL2rzsKeXkcC2cJoYgNuE2Y6au1L1KGGYVM0B_CvLV4,29074
47
+ sage/categories/objects.py,sha256=h-o39k-ugble8Xp_W2X4kPdpdiJ6r8HX-HwVBV9NVKQ,5346
48
+ sage/categories/primer.py,sha256=23FNm2rMEjZDJ4oIisHooAK9xgOsw1VrnvSji9-kPvk,67064
49
+ sage/categories/pushout.py,sha256=JkaaI12Hh-X9z-xhd9_nJgzusQTeDRe4R7fBoNpDxYQ,192356
50
+ sage/categories/quotients.py,sha256=aWaYtsUG0-ZHgmuvchh6zfkx6xJxxLumLINPChE942Y,2562
51
+ sage/categories/realizations.py,sha256=4ocuBKRQmROJGau7k-6OizQVLmgiGIOGRwSIvJGE_is,8297
52
+ sage/categories/sets_cat.py,sha256=bVLsdneRUzh1knBFwlmo9OQEwVl0dpSfChe4Qanf_PU,132801
53
+ sage/categories/sets_with_partial_maps.py,sha256=Rn-Z75T-bSG5KJnIdADHbsQAvCJtbcEgxi79V46JXjc,1668
54
+ sage/categories/subobjects.py,sha256=upYT6feRHzYRELhoBs3VrJ0cgFNwRntxwsucbuHVsdY,2548
55
+ sage/categories/subquotients.py,sha256=t4hQukYFVMlI_ZGM7PdXKkT0ch2qVSDHvhbUCIToBPI,706
56
+ sage/categories/with_realizations.py,sha256=tYlFsLXAZzZjZrbPS2YM76Qx9ipjSdOt00ng5pgQqrs,13163
57
+ sage/cpython/all.py,sha256=Tux0o-rbgpJYFx4d5KeaoqJqhZb7KyqTdCrRD81Gq7A,148
58
+ sage/cpython/atexit.cp312-win_amd64.pyd,sha256=eDeNlqjOqn4kEoV-f2DtB_iJQoM469vYSW5oWtqZn34,40960
59
+ sage/cpython/atexit.pyx,sha256=x9TzrPitvCe-IBVu38gviT1TiK0JpujnYTNxHeP_nWM,9851
60
+ sage/cpython/builtin_types.cp312-win_amd64.pyd,sha256=iXsDkXM8mbeHEdXcd5TyqFZ3pZgD_-D7RhGcYcwNocw,17920
61
+ sage/cpython/builtin_types.pyx,sha256=d0O-Ydnf8SKZ-TtMnpK7E5gLGPpTLJjnrSkdyIqI2Lw,196
62
+ sage/cpython/cython_metaclass.cp312-win_amd64.pyd,sha256=VNfU0qsYEv60nZah9Qhpk_Td_kDOySmNJ70wlYypDXk,20992
63
+ sage/cpython/cython_metaclass.h,sha256=UOzAuX8wafy8LQZWuhbFIf4fxfHacBjkvnbIdRiO14U,4058
64
+ sage/cpython/cython_metaclass.pxd,sha256=lYUJgERJZix2MwpLWrhZm-a6iq7-rT01DAvph4S0T9Y,124
65
+ sage/cpython/cython_metaclass.pyx,sha256=FOME93m8ak8IfERSVZf28JufCeWGz0R_jL1xPIVfNwI,4833
66
+ sage/cpython/debug.cp312-win_amd64.pyd,sha256=HLU2gonH-Ea-vb5uVO2EZ0JfscCjNL2nSFOusjEu7lI,51712
67
+ sage/cpython/debug.pyx,sha256=dbWOnaY3Gmrs-WrTpfhIhYnLIX9TIHUmzpToiqSHOkY,11765
68
+ sage/cpython/dict_del_by_value.cp312-win_amd64.pyd,sha256=50v-C-D-6rxFqTAjGunLFzTOUCnZAtPAsr44ZtHG0QA,26624
69
+ sage/cpython/dict_del_by_value.pxd,sha256=s4fW6tHggYhyNEbYFRca06_uaqZaG0mpKBzHE6usOIk,346
70
+ sage/cpython/dict_del_by_value.pyx,sha256=QXJYSJ1VJzyksOhZVWay0Uvt92Yyuk61YLyuILmY0is,6416
71
+ sage/cpython/dict_internal.h,sha256=McGCYoRGYalDPKk-tRx0wtfImuIV9BJ5Xg5PQdzJTR8,7110
72
+ sage/cpython/getattr.cp312-win_amd64.pyd,sha256=dRYM20F2mkPZZAHVMDG3nAJbHsXsTxy85BdBNKrD2Ko,49664
73
+ sage/cpython/getattr.pxd,sha256=8Cb3X41HUmaro-m-uD-Hoto63wxoVvNYYd80wbOYNbU,288
74
+ sage/cpython/getattr.pyx,sha256=-FRx8cibqtRVwD8-hZIZEt1v154UP5ZW5dFPCenQcY4,14954
75
+ sage/cpython/pycore_long.h,sha256=eTJcUr7GR5Cr5g9-Tts33PibfOesLrq_e-XCzsEpcPE,2156
76
+ sage/cpython/pycore_long.pxd,sha256=R5pyHcmmdtWn_DyNdvY60pcwgn0sTH38WecVWKclwXA,394
77
+ sage/cpython/python_debug.h,sha256=MP_YprVdq11ZK_tNFcK2AakrhBcY_8ct4lCAm5kDT18,875
78
+ sage/cpython/python_debug.pxd,sha256=EpFaKv-z7KzZ6f7g3o-NYUovfp9Yg-nsWbgFODjxI_w,2032
79
+ sage/cpython/pyx_visit.h,sha256=MFhGSCe_RsFn-D03QfNixKbe-cD2nzwC7JsNFmUd-rY,651
80
+ sage/cpython/string.cp312-win_amd64.pyd,sha256=xDRHyAX2-ECGx4ii2uNBuRCLSreQgIYWXRcTNtSRlnk,29184
81
+ sage/cpython/string.pxd,sha256=TvD_ZgtYp36TW8mkjwFZaCyh5RS0ekjiokNAa-qskIE,2588
82
+ sage/cpython/string.pyx,sha256=WVruGwr0FdR7ZRxk0sWTVQA5kau9Ar3ZTH6XUyHpBDg,1196
83
+ sage/cpython/string_impl.h,sha256=IFEnaYxWnD9-Nn__f3KtGjsMQhUpw1RjHEwSYbDCEyM,1781
84
+ sage/cpython/type.cp312-win_amd64.pyd,sha256=y0Us89AZ59QGdgsNYUoz86n6u5kPsmO5nVwlJ4xw8IA,26112
85
+ sage/cpython/type.pxd,sha256=4o2n1_b9Pcrm3kAFKcUaY-incfgUaeNwfOcqni1PxrY,88
86
+ sage/cpython/type.pyx,sha256=Xso6fkWMzcPl3lxJAAdy11BQ57gmuDkbIDbi_DmCH0w,1076
87
+ sage/cpython/wrapperdescr.pxd,sha256=01d05_VmUeAhJ9tWINAL4MnghxJzJVb7s-bafCejIi0,2263
88
+ sage/cpython/_py2_random.py,sha256=U4iBlbHd_4HhW6fU2MBPI2ERQZtZFmJIu9j1bPrxlwM,22928
89
+ sage/cpython/__init__.py,sha256=-kkFFcpyAfOSWCjMifWhtBDKHnkLO6NdO-nIw0ZBn90,1099
90
+ sage/ext/all__sagemath_objects.py,sha256=YDdaT0ZDVNDu-ssAUrDGDpEkHpGC0KRBZ15j5Xk8O80,169
91
+ sage/ext/ccobject.h,sha256=eLtqVFdLUrmjR1gkAzuzwRVL55bj31H9-p2n2NKJW3U,1186
92
+ sage/ext/cplusplus.pxd,sha256=ve_HD4J2IbCyDacdg8O58s6vQBkiCuSeFpQc9HTS-UQ,766
93
+ sage/ext/mod_int.h,sha256=YZd376zB1marQ0lgoSfLlrusWkapb_ueFd8xvhNU0MU,1275
94
+ sage/ext/mod_int.pxd,sha256=KbuB1xE_rbe3812HzeAnljlBfeASVe8ea2CIK-t-OIM,878
95
+ sage/ext/stdsage.pxd,sha256=LtnBsa8UN7H5cMbb2AFpj_Bnb9nyl-hQFm2bATj-g_w,1427
96
+ sage/groups/all__sagemath_objects.py,sha256=U0s3i-j8VG_G3hwosaLXkFtIexExCHE66vo6Xk5_V08,46
97
+ sage/groups/group.cp312-win_amd64.pyd,sha256=dEJ45F2jLGNfAB1Z1aXKoi2mIUJLX-sNlCA2RzNaMo8,75264
98
+ sage/groups/group.pxd,sha256=l5XDUVBLZZghkEMm3p72KdVJDLxD85Je9otL5yDkXQM,251
99
+ sage/groups/group.pyx,sha256=CGAhNiFVdAT2Kjv8Hh-AFq423cfiCyt-SfvMMR0rDU0,9827
100
+ sage/groups/old.cp312-win_amd64.pyd,sha256=8CgGMqWz6lQT27FVTHQrBrd75Nsj9m-KywwryR5hF48,47616
101
+ sage/groups/old.pxd,sha256=2CXrLHHAFFGvFhOcHEBR4jo65SGynhNEcMF0f9rMsQs,266
102
+ sage/groups/old.pyx,sha256=gxDN9ZQSNq3VnccG9So3tLGk2JgSjTrAwKlpkE26aig,6154
103
+ sage/libs/all__sagemath_objects.py,sha256=YDdaT0ZDVNDu-ssAUrDGDpEkHpGC0KRBZ15j5Xk8O80,169
104
+ sage/libs/gmpxx.pxd,sha256=UZMJb9R2wLkI8IE0cdcheUEZYKVsK9pX6_QGQNIY82E,503
105
+ sage/libs/gmp/all.pxd,sha256=6w1y2YcnMOazAA-xA2ObVuD6uQ6PvlFGDNa2c6b91dI,219
106
+ sage/libs/gmp/binop.pxd,sha256=kEYV_DmiSF25RuweUG4qbksBoNrFraslszy4RPG-2mI,880
107
+ sage/libs/gmp/misc.pxd,sha256=wibMsVyG72PRhtrGo7w223ivijK0pxmAzsYlaB9ML-g,243
108
+ sage/libs/gmp/mpf.pxd,sha256=pPdAUid-su3Jr_SCBfrNsKyUZpBzAed1enzj6l5KuS0,3670
109
+ sage/libs/gmp/mpn.pxd,sha256=xqtMwtfyNMXCuUfrM27MYjTJswuynYvqkNW4RNJMBzk,4151
110
+ sage/libs/gmp/mpq.pxd,sha256=4E1Ldx99k4EuYKCdgn7iTMqNRy2E8MpzUMErKdxvbZc,2271
111
+ sage/libs/gmp/mpz.pxd,sha256=76TOHtrqWB9h9LBY2sQok-8dL3coqIXc6y0pLUANHQU,9628
112
+ sage/libs/gmp/pylong.cp312-win_amd64.pyd,sha256=AQ26vaRMDQrJrgTcP3PPvCACKKIjsyTPYmiLn5WHTds,19456
113
+ sage/libs/gmp/pylong.pxd,sha256=ZAmPJKtIZJW7S7rDdsjiB7WphHyADSwgR8hH8HLWSaE,378
114
+ sage/libs/gmp/pylong.pyx,sha256=OrXIWymqVFgESFvZ5amY3l4ynBjIel5XnxHQvES5In0,4867
115
+ sage/libs/gmp/random.pxd,sha256=IVs3XSfaq39Vr7S0IAVoNvU-mvPhmrjyPWJ4OKAl7ns,1020
116
+ sage/libs/gmp/randomize.pxd,sha256=TazhW2I0CQS8oQTa2jA1SKHSgrBha14tNy-6ddnkhFo,2309
117
+ sage/libs/gmp/types.pxd,sha256=wR4xaLY3oPMQbId8-bD8VkhyUqQBy8weclDvc5r9AcY,1487
118
+ sage/libs/gmp/__init__.py,sha256=U0s3i-j8VG_G3hwosaLXkFtIexExCHE66vo6Xk5_V08,46
119
+ sage/misc/abstract_method.py,sha256=57iobT5AwJzRPkutZNFoHyHqc4BgAn_NYzvG2PjlP-E,8409
120
+ sage/misc/all__sagemath_objects.py,sha256=PA6ug9z-uYIb61IYDsyIxyOmch9QQY8KfYqAJin-lco,1544
121
+ sage/misc/bindable_class.py,sha256=WY48Hlz5tyVP-pKsCebjfsZKcPSDDrZKruv9W3fhhHw,8369
122
+ sage/misc/c3_controlled.cp312-win_amd64.pyd,sha256=ByZqV0cfOOzbawFIJ14FHmQPNP9elT-TrNb48le_vcc,177152
123
+ sage/misc/c3_controlled.pxd,sha256=EWT5P-X5Y6-dAslfrcE14QFMLsGHWcLSxCoAEkcN7NY,93
124
+ sage/misc/c3_controlled.pyx,sha256=a3z5yOBzNLzcMS085cQH6S1heXHCU4zT32SvU0ng6F4,56078
125
+ sage/misc/cachefunc.cp312-win_amd64.pyd,sha256=PdSsCPshn4lJMwuNGx9xfVlK-AUqBIV15IkpgsVzPjA,326144
126
+ sage/misc/cachefunc.pxd,sha256=4c9YK_wVbUSit4f5LtoZsgV43_49S_P6LbrO-LDwl9w,1163
127
+ sage/misc/cachefunc.pyx,sha256=H2S0-A5IQEOvKZ4XDwq1_3kuCkc5dzVvwL_6FbRKW-Q,127246
128
+ sage/misc/call.py,sha256=WerCuE2OSAGLgok9s-2JqTwEIZkvgqfarMUyQsYZlCc,5757
129
+ sage/misc/classcall_metaclass.cp312-win_amd64.pyd,sha256=Ws2_v6D8nOvt3c1aN3LDBbKrTxusAR_gx6-NQjcuHDo,73216
130
+ sage/misc/classcall_metaclass.pxd,sha256=_VnrhJRQAclaFng-7vwzhDrQW-mwExvPLgP5bk1YmhM,583
131
+ sage/misc/classcall_metaclass.pyx,sha256=Oyg4mTaGRJXh9CdIoFRgvaKaGzF-DM8b3oaDkTmO9rs,21266
132
+ sage/misc/constant_function.cp312-win_amd64.pyd,sha256=_Tnm6S1FL-HY3QT0w1Idb-fwZQmexlFbID-ekijiBuo,52224
133
+ sage/misc/constant_function.pyx,sha256=9whXcoLzKw4sMQv44tqwpGrb4gCNodYoDKrAyO3JJKU,3653
134
+ sage/misc/decorators.py,sha256=VOubDgl-3KemmGs2kkyUSLd-WYS8XQ2HGTDBeuRSXAM,26572
135
+ sage/misc/fast_methods.cp312-win_amd64.pyd,sha256=8g5w5x1s1Otpvdyw31JURiZhsmFFDAaN7O1addpd3Xw,56320
136
+ sage/misc/fast_methods.pxd,sha256=A0ImtHm4rQ0JAxnCygpTP0RyqZtodCqqm8_TKXtiYK0,577
137
+ sage/misc/fast_methods.pyx,sha256=RrRNp3UNliUhKPdIXz_mxu1BL_7iHze4vx7Ulpyaw84,11976
138
+ sage/misc/flatten.py,sha256=BMribQzTuNq4JqjNkTtla9mEUb7QVCBhskj9rLWAiuQ,2739
139
+ sage/misc/fpickle.cp312-win_amd64.pyd,sha256=rRfKeEc8y4UuytboksnWSjtKHRi9bGx3gyu3_Vrkn_I,64000
140
+ sage/misc/fpickle.pyx,sha256=Vh5kja4ylA8ln6_ICX5OUvhOXjZDdnazCkB4SC8tGPc,4900
141
+ sage/misc/function_mangling.cp312-win_amd64.pyd,sha256=XHqfuMZdVg8JenVOhXaXr1ch3-H5Eh_7wMQsrBff34w,50688
142
+ sage/misc/function_mangling.pxd,sha256=n_zmWpk40S2JNrwTiBxFRkZaI9Fj7ZD_E9s_qm7PKu0,330
143
+ sage/misc/function_mangling.pyx,sha256=bVzo7-pJq0kNLBvR4W3AVuCCr7JrVVnj-9oqEq0bQLI,10873
144
+ sage/misc/inherit_comparison.cp312-win_amd64.pyd,sha256=W29Zy1yM4OPCGMhEXgBgEHZF4GIfxmVQDuwo_PVszio,29184
145
+ sage/misc/inherit_comparison.pxd,sha256=vV-3Ek7tnZ-05_uFZwTAYTjsFM5OR5qFknyDu9jJTwU,139
146
+ sage/misc/inherit_comparison.pyx,sha256=qitU_YiVHB-9wHUMh3M2ewuee0DMd7Kq7ZPJXxchjzI,3828
147
+ sage/misc/instancedoc.cp312-win_amd64.pyd,sha256=AoBmcSaQUGmffqRtEsOoT4zS0nZSx6FyiXoHJzISkqI,46080
148
+ sage/misc/instancedoc.pyx,sha256=ml1-c_SKHAnww2zwkJTXbuf2TSHJXtNYQstTSCRipFo,11125
149
+ sage/misc/lazy_attribute.cp312-win_amd64.pyd,sha256=nl28GhxKkwlM4ms5aVKkWMFyrEo7RFA7_fcmDn_DXYQ,58368
150
+ sage/misc/lazy_attribute.pyx,sha256=rpc8WnIiCbrZdwi06AxMWKBcN_uuvHlXJ0UI3xpXg2w,19121
151
+ sage/misc/lazy_format.py,sha256=MpN8wJXCvdiyJyOp5x0cfSGNjvUA58bFY7LVjwX5_4c,4379
152
+ sage/misc/lazy_import.cp312-win_amd64.pyd,sha256=h4b085O2gz7XQs17APH_MhwktpZHG1HAUr1QfRMPCwY,134656
153
+ sage/misc/lazy_import.pyx,sha256=ku_tlp1o5BwAfRlJSQtUiGg9c23FjLAQDdOqyw2xhoI,41770
154
+ sage/misc/lazy_import_cache.py,sha256=7UUPsvP7XLFIcXZee9tg8jB_0luUr-z3lxTPd8dsU2Y,1005
155
+ sage/misc/lazy_list.cp312-win_amd64.pyd,sha256=L3izFON4WwRl3NeMVfN8CoJl7HB9_n_HkSWa11jQ5gQ,118272
156
+ sage/misc/lazy_list.pxd,sha256=ugiVT7-AGL6qSOBVn6YSELu_TJctsEL-Dzpv65ep3XQ,672
157
+ sage/misc/lazy_list.pyx,sha256=ib3TZpxutctPqQ2bAwTGVJgo4YIJv8wmKfiBvoBtIsM,38313
158
+ sage/misc/lazy_string.cp312-win_amd64.pyd,sha256=3YXtRuR1ZVjcaHQCLe437jIjGI8aw5fYYlh_HSgvzEw,59904
159
+ sage/misc/lazy_string.pxd,sha256=svK96-FOIZqWLd-uY9F-s_tF9buYOvl8goNGVbc_Uv8,182
160
+ sage/misc/lazy_string.pyx,sha256=kjC5HtApqcYKUv4VGXK0_zjUqJ_HdLzXAUW5Ws9FdJA,16280
161
+ sage/misc/misc.py,sha256=3M5ekIsxGhmZOR2c1AzChqurp7rQl-ErMOe-R1lO_BA,30450
162
+ sage/misc/misc_c.cp312-win_amd64.pyd,sha256=bYxOT1Hc0FFZBph19CcvgNrgdhrF_DpmhneOUp2ks50,84480
163
+ sage/misc/misc_c.pxd,sha256=6ijmZ05ZScqQVt6NfUEaSbHijl_JK2U4JQlV_E8SxR0,96
164
+ sage/misc/misc_c.pyx,sha256=NXV3k96bXvVKqt_jmbtlrpBOE_l8tYy6IgLHwl2vZLs,23685
165
+ sage/misc/namespace_package.py,sha256=1Zm09A9QjmQ6i4zp3I2G_x1XEm8wJVFxxZ353LN-EZE,938
166
+ sage/misc/nested_class.cp312-win_amd64.pyd,sha256=S9FstkkUs_F3osz0PObihF11QUn05lS3bKBQ21kYcvU,66560
167
+ sage/misc/nested_class.pxd,sha256=8jncbDWcavg4ZjbrbtXscGagkcMVU-ZDYH4k15jZyc4,94
168
+ sage/misc/nested_class.pyx,sha256=j0pwxE44IvMSpUM-Pl3_uv9T2CzfmwxsIoDuFML9VTQ,13318
169
+ sage/misc/persist.cp312-win_amd64.pyd,sha256=vie9qimV07mnAaCdIqm_hV004c3sTZKVAinyASTr1qk,174080
170
+ sage/misc/persist.pyx,sha256=dy8qDVBTtQrG79tvgeaOLom6QNM8hZTxD7KVGnnuxT0,46217
171
+ sage/misc/prandom.py,sha256=vnbY62JYLu5_5L1nGbq1SoHkt0ScGBrx-LisbzhM2YY,12432
172
+ sage/misc/randstate.cp312-win_amd64.pyd,sha256=bngmhjw8wnQErLrCBZYAGMqm86f503sCjF9zBp7yqU0,93184
173
+ sage/misc/randstate.pxd,sha256=LERpWdd_7yS8mD_MYIES5yxA-Zh060remnG4jROIApc,746
174
+ sage/misc/randstate.pyx,sha256=gmiTORYmK3lx44l6XWxkjCcD5PO4rHvEJ94TE7K_6bQ,38090
175
+ sage/misc/repr.py,sha256=Q8sxfz4xNPGbHlMuKnIeAsH2LaZtXKkKwkHEZLlwFic,6987
176
+ sage/misc/reset.cp312-win_amd64.pyd,sha256=Do-mu3MmBUyOkt_OMz7sEmQfLjaJ014sXg3x93HScD0,50688
177
+ sage/misc/reset.pyx,sha256=9xnGnC8yOv-3MKXXEAWcnuc7WLrw6lZQDLqsC91rQ5Y,5675
178
+ sage/misc/sageinspect.py,sha256=QPEhtfOAmjM8dXPl1v89np73eO2qJYdRCdrrSZFSCGI,107670
179
+ sage/misc/sage_ostools.cp312-win_amd64.pyd,sha256=tIukGEyjF-gcIZ-3TncUQPIX-d3H3E-Yx_Y7ox7kCZM,74240
180
+ sage/misc/sage_ostools.pyx,sha256=CaDOaTvu2JXfOwJk8wsgTF_OT_ivjugrqVvBa2FvvqA,9287
181
+ sage/misc/sage_timeit.py,sha256=OyQwrmryF7Ozy5obRKaLFr43A0ww-W5zMp86UjQgJCE,9210
182
+ sage/misc/sage_timeit_class.cp312-win_amd64.pyd,sha256=WsnnNt-txSZ6MzBvcY4MVbV82b98OpyIUZ27yMwiw-0,43008
183
+ sage/misc/sage_timeit_class.pyx,sha256=3IIxeFsvD7gxemBNgP_tnhuwMWjPiVdUTKQshSHWSxk,3908
184
+ sage/misc/sage_unittest.py,sha256=_Kct4IIYd1IIpS2xOcO2rtVRIeAtHCun0ddtdlT3U0I,23894
185
+ sage/misc/session.cp312-win_amd64.pyd,sha256=1kxW1X4Xo0wZ65p50HxbEUBy7Y_tv0dGCRQ5gm_MoyM,53760
186
+ sage/misc/session.pyx,sha256=vxqDy-kT1QEplhoyuDlRM6WiWmFfYLDZiOmy-gwl3gE,11770
187
+ sage/misc/superseded.py,sha256=3K8MzLbmNupi8gMwYaYK68F7YNaYWTVsI9YO1z0TxBE,19934
188
+ sage/misc/test_nested_class.py,sha256=E_r0pvZKHIWw-1V3djlwdSKjY5BbaPmp-UFewrRhTLA,5914
189
+ sage/misc/timing.py,sha256=vPaH1_zQqiIJDH8W4FSzHPfFq6a5_VFuKi3iJJt4QB0,8574
190
+ sage/misc/unknown.py,sha256=fVh3T3B3vgSKqYqLjyWu2LhIErNlGQVkcJgqIMAJHtc,6481
191
+ sage/misc/verbose.py,sha256=KGMJeArKTqIPTgTxRq4YsSyY7KwZov0m1VmzfImmbUc,6636
192
+ sage/misc/weak_dict.cp312-win_amd64.pyd,sha256=uid4Lx2SGW-DZcAJrrsfIldn-1yTpVe7ykyKiIh_p0E,111104
193
+ sage/misc/weak_dict.pxd,sha256=7mDU5vWwLDunO53fgGyEhVvSGZKxvHRx-EprQtgBmOA,428
194
+ sage/misc/weak_dict.pyx,sha256=0gbKGb_Fovx_pIblCYMwsVwxLfTGpU9CgI9n65N8OF0,41601
195
+ sage/modules/all__sagemath_objects.py,sha256=U0s3i-j8VG_G3hwosaLXkFtIexExCHE66vo6Xk5_V08,46
196
+ sage/modules/module.cp312-win_amd64.pyd,sha256=XeNg2rgH3ctirlgqaLwInYhkGTTyS7K9WbKcJlD2l74,52224
197
+ sage/modules/module.pxd,sha256=l0gI2rRtwVMJPQNkQfJXqEN9EEovo46yAcs-aHio_Uc,125
198
+ sage/modules/module.pyx,sha256=-QTSiktCdR3n9F5dee8hNk8yVgfWsJ7lzIFtgQHJT6o,12096
199
+ sage/rings/all__sagemath_objects.py,sha256=YDdaT0ZDVNDu-ssAUrDGDpEkHpGC0KRBZ15j5Xk8O80,169
200
+ sage/rings/integer_fake.h,sha256=e271zfi8hEZ5nzPLEljAjifRBaB4jOSgf8COx5zH2Zs,396
201
+ sage/rings/integer_fake.pxd,sha256=D7n-VZrrigxZm_D7NQKNikuWm25lg4u7Ity0y7Pv_Io,1949
202
+ sage/sets/all__sagemath_objects.py,sha256=YDdaT0ZDVNDu-ssAUrDGDpEkHpGC0KRBZ15j5Xk8O80,169
203
+ sage/sets/pythonclass.cp312-win_amd64.pyd,sha256=y75rMehOMrF2Vr-vverZWCtaH9lAq8nnAdecInPmbFo,68096
204
+ sage/sets/pythonclass.pxd,sha256=GYb_urQBxr8j28s_6FqtaN0WRZiW2hguXWR3Hztq3LU,189
205
+ sage/sets/pythonclass.pyx,sha256=ZzUjh8bkoqWPCd85Kcx-NnuEghofSQ0NoCG_CpeCpX4,7136
206
+ sage/structure/all.py,sha256=5GYCPE_LABmoZGre1WR9mlhvvpWpzqJMZrS9rAPSan8,798
207
+ sage/structure/category_object.cp312-win_amd64.pyd,sha256=rtKGBU4vW6yDmrPoZ_sD-Y00TeWvGG505Zmf4fMSjzo,124928
208
+ sage/structure/category_object.pxd,sha256=rz9gGO9WiOLQ2XP9PdzSIELHW-4vvPmjXvqdD6huRvY,1030
209
+ sage/structure/category_object.pyx,sha256=iK22UiNYaCgkEc4QeRY4Cu9V7oMBVQCZKhtd4O8NpVM,39030
210
+ sage/structure/coerce.cp312-win_amd64.pyd,sha256=to9vfEeXGXR1B_IwKftRz72PBRdl8v4aJTV_bbewxQE,245760
211
+ sage/structure/coerce.pxd,sha256=FklBQUdf23MFPu33SkIWJC9mQw2jjNSIY7PPMlQCNLQ,1369
212
+ sage/structure/coerce.pyx,sha256=q2EvaHERVPmvHDAmsVAf9LIYcvCXKhy8pr35uxXuWxM,82161
213
+ sage/structure/coerce_actions.cp312-win_amd64.pyd,sha256=NBiJej-zinN6Q_8M2Oy2yGeeTY5rWlsSyF9HpGPgjMs,128512
214
+ sage/structure/coerce_actions.pxd,sha256=4Gzyc43JOKIYDPkKUowbdQ-vYpDTrIxJERUed88b6Oo,528
215
+ sage/structure/coerce_actions.pyx,sha256=lrg_qYJehodMQN7o3Z_5Igfdszz02cInnLa-Ds8zYwA,37252
216
+ sage/structure/coerce_dict.cp312-win_amd64.pyd,sha256=qMNxP72z8tEqs17yYyl3QfcU0b-ip666J0wpCPVp93U,118272
217
+ sage/structure/coerce_dict.pxd,sha256=3Exj0-GuFQcXtXXKs4ydsU8trgO81fO2cIBP7PDlgZo,1415
218
+ sage/structure/coerce_dict.pyx,sha256=_DuaRSosZsllXhc57Oe9imVrkc2xkQNzdHeNEAdtjVo,49983
219
+ sage/structure/coerce_exceptions.py,sha256=0_og2GtBcrr8me7_8edijpOnlKFbFhAiQS7OfpNslAQ,988
220
+ sage/structure/coerce_maps.cp312-win_amd64.pyd,sha256=nmdYswhKSq8qbNpt5WjIYeMxH1stzirgnCt10pcuH90,118784
221
+ sage/structure/coerce_maps.pxd,sha256=dm5fxyEnzLHBmAd__K4xLZNuyz0LYpX39YmCmj7amv8,504
222
+ sage/structure/coerce_maps.pyx,sha256=n1_2DKjzOu_I6lxkBXnr6hUqFAQau83Z985ryHK1HLY,25878
223
+ sage/structure/debug_options.cp312-win_amd64.pyd,sha256=oLFxKFR7iw98hMaj9nQvGyhMLpmyr56gavY4REupyCA,25600
224
+ sage/structure/debug_options.pxd,sha256=yf-VwnEs8Ur2_VYSQsrF9nkj_6AFTSsfcAcLW6IpdWM,200
225
+ sage/structure/debug_options.pyx,sha256=JR58ihocYWnDea5HgTN8WQ_wRVwyYcO6xe8XFM2Ku_k,1974
226
+ sage/structure/dynamic_class.py,sha256=30FYmhsiPynSJwopAhcOeXrTukqOlJpBNjNhtBYt_gw,20222
227
+ sage/structure/element.cp312-win_amd64.pyd,sha256=DAqzwPiHajVpjW6Ml7XnnjLQ7vTVjyr6vRfaSo5aEAs,382976
228
+ sage/structure/element.pxd,sha256=JaMsIvj0HnpDZf2Q1vSs99SIQv3WKCpqkfg9oWLnTuU,7958
229
+ sage/structure/element.pyx,sha256=PFFZFGWp9K1yCnqOIyLGT3tEi-gT5VPwAxoNIXOSRmo,188418
230
+ sage/structure/element_wrapper.cp312-win_amd64.pyd,sha256=Z4AHxb7FGtO-vcy6KSIhyvvCC8XmBwNWGc3P2oQdhsA,87552
231
+ sage/structure/element_wrapper.pxd,sha256=MI50lX2z0XmOoaFwGXns-rpOcdcduculNkS8t6VP1i4,319
232
+ sage/structure/element_wrapper.pyx,sha256=RH3G4VHj1Rop1w5eLV6ynIPVaV_qPxClhZ846aqxPbY,19276
233
+ sage/structure/factorization.py,sha256=4cKiiZ7KCiTW6MBXWrV3UdyDc-ww7-9p1Twv5LS-n78,45770
234
+ sage/structure/factorization_integer.py,sha256=PALiFasjPjEqEz08m1A5qADt14lhMt4Xgpgl4Vnovzw,3818
235
+ sage/structure/factory.cp312-win_amd64.pyd,sha256=sLU1ptSgMXg0bu57EdmuG0aDL_H40R8lRwHuSPVMIpk,94208
236
+ sage/structure/factory.pyx,sha256=Y6CLDS5XvZZrywNWyo4XhJkyM6Yn_1VJ8MIKZRRNzXs,31258
237
+ sage/structure/formal_sum.py,sha256=-0PPVOHHlfLGQNmU8YV7qNZhrxanAoVorZuFUKSX8Ss,15953
238
+ sage/structure/gens_py.py,sha256=3e2OoLDBveDRyuaGStNBUZarUNa0CE2Qs9cBGhxR28g,2069
239
+ sage/structure/global_options.py,sha256=OwIgjujCtFcIp5YYDkQpOSPXeVABfPFZiotM2Yq2Ap4,69477
240
+ sage/structure/indexed_generators.py,sha256=T3ADtTQ_D3s9waiEbURYTlyr7udHmoCXDCLnSk8xcts,34776
241
+ sage/structure/list_clone.cp312-win_amd64.pyd,sha256=d_Hmah05dalHjXl6XCYKprwSCu9DI7t9GSR658Ldyuo,191488
242
+ sage/structure/list_clone.pxd,sha256=Uy6QhnoBF8OLylfp74H4hupCyXCd1wVBXO0fAfbWKOw,2121
243
+ sage/structure/list_clone.pyx,sha256=Jbicq-sIZ7WhqD_r0zbaXk4D0JEI820TrIcGN6EEGNQ,58956
244
+ sage/structure/list_clone_demo.cp312-win_amd64.pyd,sha256=6dwWb_Z4I1_3kth3MuZ8hQAUPyMToR6V0KYhI0gZ4YE,71168
245
+ sage/structure/list_clone_demo.pyx,sha256=oU65ulMRrP8mkP8aNRlBd8j0Z61tIta868Fxui8LDKs,7643
246
+ sage/structure/list_clone_timings.py,sha256=qB1wmsqiKsTkmF2c6NbAlBIZ5DzwJZ8hnTeMMUMwLRI,6692
247
+ sage/structure/list_clone_timings_cy.cp312-win_amd64.pyd,sha256=Sl3SUNllv9ptC3hzDWvyTGbfaQ6KIP2BYgF_ZizShf8,36864
248
+ sage/structure/list_clone_timings_cy.pyx,sha256=Yta-vzJVi8ZBH_1mPFJ7mNB11RGB64TqKqtSuil5CPc,2588
249
+ sage/structure/mutability.cp312-win_amd64.pyd,sha256=TnbMYsON-yayws5J_EYWFiDzAHGhaEqbPtpouxkt4w0,68096
250
+ sage/structure/mutability.pxd,sha256=SvQMhy7o0PKUnPdNSOdM0w6qpgzEqVzxVXmG1EvmKNo,680
251
+ sage/structure/mutability.pyx,sha256=uA5GXQxj1JVE-0Xua5RwV5JgnedSrf0GQPxmrl9HiNs,11493
252
+ sage/structure/nonexact.py,sha256=kyCU30mUCCbiju6ujgVGe57gtAhavlEQvHDYHSYYupA,1736
253
+ sage/structure/parent.cp312-win_amd64.pyd,sha256=J8EPKFDdb0rNAdfi4EsHSoHDpgJ6Pur5ow_1lXV_6TE,275456
254
+ sage/structure/parent.pxd,sha256=WZ0dqLTWmhpsSiXR_VN4LHmI9mac8w2fksr-_cuUrSk,4230
255
+ sage/structure/parent.pyx,sha256=1xhTOHMo_pVq7-LJ0LbM_lppyF0HMoEjEla99Yu4T5I,120215
256
+ sage/structure/parent_base.cp312-win_amd64.pyd,sha256=wY5cnP-dc_UJbraa83YYTVg-MbZYppxnGBnWX43_ltM,36352
257
+ sage/structure/parent_base.pxd,sha256=sQ4wTvOWWZUY8j_zLQjeFpZeXTCpJ6eNAFhL3BPU9tk,585
258
+ sage/structure/parent_base.pyx,sha256=7Y6Yzx43IDux18_r33Ke_kYndZxYwAvBCW9s6g-YNTo,1764
259
+ sage/structure/parent_gens.cp312-win_amd64.pyd,sha256=ejA1b7WFVaFsFrI4tu1JemVR0hftb3WY7pyvn26AHNA,78336
260
+ sage/structure/parent_gens.pxd,sha256=mE16F-vEdWAUeE3atp6ZddvIAteQ6jagiYwnVGjHr3s,802
261
+ sage/structure/parent_gens.pyx,sha256=uIOBoxy-5e8L2YRMEMzX36uPbOg4PCO97iIgcXAfCTQ,12910
262
+ sage/structure/parent_old.cp312-win_amd64.pyd,sha256=Rn9dknHSuz-H5_nBQwlU5D8MFsG6RWTtm7PBDojrwlA,65024
263
+ sage/structure/parent_old.pxd,sha256=rzTYw76EYTgql4jxm5X8wvYQ3D8vmU-V8wVQsU3w4Cw,969
264
+ sage/structure/parent_old.pyx,sha256=z-tLmDMh5F_gjUYm5pAshEFtldFZfPhXY49H4vzStZw,10485
265
+ sage/structure/richcmp.cp312-win_amd64.pyd,sha256=wACE0gY-cu7kEsPH5XhxoYWtttwKa-RL1IlMdEs5PQQ,74752
266
+ sage/structure/richcmp.pxd,sha256=XI0UNlzfLFW23_8TopFeTl-B6jzDSqhWryKGwbsbTkY,6475
267
+ sage/structure/richcmp.pyx,sha256=3q-PX3EvGzjpYz9uPcoRuHU5NiJt_ax32_-9v5QAgNY,17828
268
+ sage/structure/sage_object.cp312-win_amd64.pyd,sha256=PTtO394LvfwBaV4W11L8YqhKcMvVn3CeeAVPMaBbBXg,129024
269
+ sage/structure/sage_object.pxd,sha256=ucLms0iBHPbK0A-IJ-UDLVEbW66BH719SErTxz23po0,78
270
+ sage/structure/sage_object.pyx,sha256=v-zZLileKVikJuuZNdYlGp5StPASFAAMgdh7s1mHrPY,32292
271
+ sage/structure/sage_object_test.py,sha256=ZAhjc7q979clLhRqEWAneSQDWzxP7bXqtRyQwIXY81M,627
272
+ sage/structure/sequence.py,sha256=MRvLtTYRik3rQvUYLANxgvafNXc9QteQRM1OwbcziPU,29457
273
+ sage/structure/set_factories.py,sha256=TAsPdQ-dQon69PxUv-fiybWHAOOAfJmQZiBQpRyCbdI,41181
274
+ sage/structure/set_factories_example.py,sha256=NjmC2WP-cCdojYsQhjuZaI9PPlaqMcLdO3FyNnc2aRE,17262
275
+ sage/structure/support_view.py,sha256=qlclI5fZdRBtWwV0UC5o9KmPPCTdqDUY0_YAAWWnf_k,5381
276
+ sage/structure/test_factory.py,sha256=HL9H4MZC73a6Ew13W4VppvmRpcuqiJFEuM5xw3SZqOk,1760
277
+ sage/structure/unique_representation.py,sha256=cdLGUBHPZb4tK3uQ4zqnIH93--I0J6oQQc4wf0N5B5Y,52750
278
+ sage/structure/__init__.py,sha256=6b4GFOtMiBf8yf6M9kUnAn7lrq3Mx7Bz-WxneBnD9Ak,435
279
+ sage/structure/proof/all.py,sha256=oc3nbgOBRqlm6Azip-reTyYu9WejRD4EwD9gN8aBnbk,7339
280
+ sage/structure/proof/proof.py,sha256=0awMTNTW8UkYw-So8sEswkOH3ZJ2NjwMbjTTmcZZodY,10401
281
+ sage/structure/proof/__init__.py,sha256=U0s3i-j8VG_G3hwosaLXkFtIexExCHE66vo6Xk5_V08,46
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp312-cp312-win_amd64
5
+
@@ -0,0 +1,3 @@
1
+
2
+ passagemath_objects
3
+ sage
@@ -0,0 +1,46 @@
1
+ # sage_setup: distribution = sagemath-objects
2
+ # start delvewheel patch
3
+ def _delvewheel_patch_1_11_2():
4
+ import os
5
+ if os.path.isdir(libs_dir := os.path.abspath(os.path.join(os.path.dirname(__file__), os.pardir, 'passagemath_objects.libs'))):
6
+ os.add_dll_directory(libs_dir)
7
+
8
+
9
+ _delvewheel_patch_1_11_2()
10
+ del _delvewheel_patch_1_11_2
11
+ # end delvewheel patch
12
+ import os
13
+ import sys
14
+ import operator
15
+ import math
16
+
17
+ import warnings
18
+
19
+ # TODO: More to be moved from all.py
20
+
21
+ # This import also sets up the interrupt handler
22
+ from cysignals.signals import (AlarmInterrupt, SignalError,
23
+ sig_on_reset as sig_on_count)
24
+
25
+ from time import sleep
26
+
27
+ from sage.misc.all__sagemath_objects import *
28
+ from sage.structure.all import *
29
+ from sage.arith.power import generic_power as power
30
+ from sage.categories.all__sagemath_objects import *
31
+
32
+ from sage.cpython.all import *
33
+
34
+ if sys.platform != 'win32':
35
+ from cysignals.alarm import alarm, cancel_alarm
36
+
37
+ from copy import copy, deepcopy
38
+
39
+ true = True
40
+ false = False
41
+
42
+
43
+ # For doctesting. These are overwritten later
44
+
45
+ Integer = int
46
+ 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