passagemath-objects 10.8.1a3__cp314-cp314-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 (283) hide show
  1. passagemath_objects/__init__.py +3 -0
  2. passagemath_objects-10.8.1a3.dist-info/DELVEWHEEL +2 -0
  3. passagemath_objects-10.8.1a3.dist-info/METADATA +114 -0
  4. passagemath_objects-10.8.1a3.dist-info/RECORD +283 -0
  5. passagemath_objects-10.8.1a3.dist-info/WHEEL +5 -0
  6. passagemath_objects-10.8.1a3.dist-info/top_level.txt +3 -0
  7. passagemath_objects.libs/libgmp-10-60021eeab4282b29024e43b2b1412b53.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.cp314-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.cp314-win_amd64.pyd +0 -0
  15. sage/arith/power.pxd +31 -0
  16. sage/arith/power.pyx +127 -0
  17. sage/categories/action.cp314-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 +292 -0
  24. sage/categories/category.py +3379 -0
  25. sage/categories/category_cy_helper.cp314-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.cp314-win_amd64.pyd +0 -0
  29. sage/categories/category_singleton.pxd +3 -0
  30. sage/categories/category_singleton.pyx +343 -0
  31. sage/categories/category_types.py +637 -0
  32. sage/categories/category_with_axiom.py +2889 -0
  33. sage/categories/covariant_functorial_construction.py +700 -0
  34. sage/categories/facade_sets.py +228 -0
  35. sage/categories/functor.cp314-win_amd64.pyd +0 -0
  36. sage/categories/functor.pxd +7 -0
  37. sage/categories/functor.pyx +659 -0
  38. sage/categories/homset.py +1289 -0
  39. sage/categories/homsets.py +364 -0
  40. sage/categories/isomorphic_objects.py +73 -0
  41. sage/categories/map.cp314-win_amd64.pyd +0 -0
  42. sage/categories/map.pxd +34 -0
  43. sage/categories/map.pyx +2106 -0
  44. sage/categories/morphism.cp314-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 +1695 -0
  49. sage/categories/pushout.py +4847 -0
  50. sage/categories/quotients.py +64 -0
  51. sage/categories/realizations.py +200 -0
  52. sage/categories/sets_cat.py +3305 -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 +22 -0
  58. sage/cpython/_py2_random.py +619 -0
  59. sage/cpython/all.py +3 -0
  60. sage/cpython/atexit.cp314-win_amd64.pyd +0 -0
  61. sage/cpython/atexit.pyx +269 -0
  62. sage/cpython/builtin_types.cp314-win_amd64.pyd +0 -0
  63. sage/cpython/builtin_types.pyx +7 -0
  64. sage/cpython/cython_metaclass.cp314-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.cp314-win_amd64.pyd +0 -0
  69. sage/cpython/debug.pyx +302 -0
  70. sage/cpython/dict_del_by_value.cp314-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 +80 -0
  74. sage/cpython/getattr.cp314-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.cp314-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.cp314-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.cp314-win_amd64.pyd +0 -0
  98. sage/groups/group.pxd +14 -0
  99. sage/groups/group.pyx +296 -0
  100. sage/groups/old.cp314-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.cp314-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.cp314-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.cp314-win_amd64.pyd +0 -0
  126. sage/misc/cachefunc.pxd +43 -0
  127. sage/misc/cachefunc.pyx +3801 -0
  128. sage/misc/call.py +188 -0
  129. sage/misc/classcall_metaclass.cp314-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.cp314-win_amd64.pyd +0 -0
  133. sage/misc/constant_function.pyx +130 -0
  134. sage/misc/decorators.py +739 -0
  135. sage/misc/fast_methods.cp314-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.cp314-win_amd64.pyd +0 -0
  140. sage/misc/fpickle.pyx +176 -0
  141. sage/misc/function_mangling.cp314-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.cp314-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.cp314-win_amd64.pyd +0 -0
  148. sage/misc/instancedoc.pyx +331 -0
  149. sage/misc/lazy_attribute.cp314-win_amd64.pyd +0 -0
  150. sage/misc/lazy_attribute.pyx +607 -0
  151. sage/misc/lazy_format.py +132 -0
  152. sage/misc/lazy_import.cp314-win_amd64.pyd +0 -0
  153. sage/misc/lazy_import.pxd +13 -0
  154. sage/misc/lazy_import.pyx +1307 -0
  155. sage/misc/lazy_import_cache.py +36 -0
  156. sage/misc/lazy_list.cp314-win_amd64.pyd +0 -0
  157. sage/misc/lazy_list.pxd +19 -0
  158. sage/misc/lazy_list.pyx +1187 -0
  159. sage/misc/lazy_string.cp314-win_amd64.pyd +0 -0
  160. sage/misc/lazy_string.pxd +7 -0
  161. sage/misc/lazy_string.pyx +546 -0
  162. sage/misc/misc.py +980 -0
  163. sage/misc/misc_c.cp314-win_amd64.pyd +0 -0
  164. sage/misc/misc_c.pxd +3 -0
  165. sage/misc/misc_c.pyx +765 -0
  166. sage/misc/namespace_package.py +37 -0
  167. sage/misc/nested_class.cp314-win_amd64.pyd +0 -0
  168. sage/misc/nested_class.pxd +3 -0
  169. sage/misc/nested_class.pyx +394 -0
  170. sage/misc/persist.cp314-win_amd64.pyd +0 -0
  171. sage/misc/persist.pyx +1279 -0
  172. sage/misc/prandom.py +418 -0
  173. sage/misc/randstate.cp314-win_amd64.pyd +0 -0
  174. sage/misc/randstate.pxd +31 -0
  175. sage/misc/randstate.pyx +1096 -0
  176. sage/misc/repr.py +203 -0
  177. sage/misc/reset.cp314-win_amd64.pyd +0 -0
  178. sage/misc/reset.pyx +196 -0
  179. sage/misc/sage_ostools.cp314-win_amd64.pyd +0 -0
  180. sage/misc/sage_ostools.pyx +323 -0
  181. sage/misc/sage_timeit.py +275 -0
  182. sage/misc/sage_timeit_class.cp314-win_amd64.pyd +0 -0
  183. sage/misc/sage_timeit_class.pyx +120 -0
  184. sage/misc/sage_unittest.py +639 -0
  185. sage/misc/sageinspect.py +2792 -0
  186. sage/misc/session.cp314-win_amd64.pyd +0 -0
  187. sage/misc/session.pyx +392 -0
  188. sage/misc/superseded.py +576 -0
  189. sage/misc/test_nested_class.py +228 -0
  190. sage/misc/timing.py +264 -0
  191. sage/misc/unknown.py +222 -0
  192. sage/misc/verbose.py +253 -0
  193. sage/misc/weak_dict.cp314-win_amd64.pyd +0 -0
  194. sage/misc/weak_dict.pxd +15 -0
  195. sage/misc/weak_dict.pyx +1197 -0
  196. sage/modules/all__sagemath_objects.py +1 -0
  197. sage/modules/module.cp314-win_amd64.pyd +0 -0
  198. sage/modules/module.pxd +5 -0
  199. sage/modules/module.pyx +329 -0
  200. sage/rings/all__sagemath_objects.py +3 -0
  201. sage/rings/integer_fake.h +22 -0
  202. sage/rings/integer_fake.pxd +55 -0
  203. sage/rings/integer_fake.pyi +8 -0
  204. sage/sets/all__sagemath_objects.py +3 -0
  205. sage/sets/pythonclass.cp314-win_amd64.pyd +0 -0
  206. sage/sets/pythonclass.pxd +9 -0
  207. sage/sets/pythonclass.pyx +247 -0
  208. sage/structure/__init__.py +13 -0
  209. sage/structure/all.py +30 -0
  210. sage/structure/category_object.cp314-win_amd64.pyd +0 -0
  211. sage/structure/category_object.pxd +28 -0
  212. sage/structure/category_object.pyx +1090 -0
  213. sage/structure/coerce.cp314-win_amd64.pyd +0 -0
  214. sage/structure/coerce.pxd +44 -0
  215. sage/structure/coerce.pyx +2113 -0
  216. sage/structure/coerce_actions.cp314-win_amd64.pyd +0 -0
  217. sage/structure/coerce_actions.pxd +27 -0
  218. sage/structure/coerce_actions.pyx +988 -0
  219. sage/structure/coerce_dict.cp314-win_amd64.pyd +0 -0
  220. sage/structure/coerce_dict.pxd +51 -0
  221. sage/structure/coerce_dict.pyx +1557 -0
  222. sage/structure/coerce_exceptions.py +23 -0
  223. sage/structure/coerce_maps.cp314-win_amd64.pyd +0 -0
  224. sage/structure/coerce_maps.pxd +24 -0
  225. sage/structure/coerce_maps.pyx +656 -0
  226. sage/structure/debug_options.cp314-win_amd64.pyd +0 -0
  227. sage/structure/debug_options.pxd +6 -0
  228. sage/structure/debug_options.pyx +54 -0
  229. sage/structure/dynamic_class.py +541 -0
  230. sage/structure/element.cp314-win_amd64.pyd +0 -0
  231. sage/structure/element.pxd +271 -0
  232. sage/structure/element.pyx +4584 -0
  233. sage/structure/element_wrapper.cp314-win_amd64.pyd +0 -0
  234. sage/structure/element_wrapper.pxd +12 -0
  235. sage/structure/element_wrapper.pyx +582 -0
  236. sage/structure/factorization.py +1457 -0
  237. sage/structure/factorization_integer.py +154 -0
  238. sage/structure/factory.cp314-win_amd64.pyd +0 -0
  239. sage/structure/factory.pyx +863 -0
  240. sage/structure/formal_sum.py +489 -0
  241. sage/structure/gens_py.py +73 -0
  242. sage/structure/global_options.py +1725 -0
  243. sage/structure/indexed_generators.py +863 -0
  244. sage/structure/list_clone.cp314-win_amd64.pyd +0 -0
  245. sage/structure/list_clone.pxd +65 -0
  246. sage/structure/list_clone.pyx +1867 -0
  247. sage/structure/list_clone_demo.cp314-win_amd64.pyd +0 -0
  248. sage/structure/list_clone_demo.pyx +248 -0
  249. sage/structure/list_clone_timings.py +179 -0
  250. sage/structure/list_clone_timings_cy.cp314-win_amd64.pyd +0 -0
  251. sage/structure/list_clone_timings_cy.pyx +86 -0
  252. sage/structure/mutability.cp314-win_amd64.pyd +0 -0
  253. sage/structure/mutability.pxd +21 -0
  254. sage/structure/mutability.pyx +346 -0
  255. sage/structure/nonexact.py +69 -0
  256. sage/structure/parent.cp314-win_amd64.pyd +0 -0
  257. sage/structure/parent.pxd +112 -0
  258. sage/structure/parent.pyx +3087 -0
  259. sage/structure/parent_base.cp314-win_amd64.pyd +0 -0
  260. sage/structure/parent_base.pxd +13 -0
  261. sage/structure/parent_base.pyx +35 -0
  262. sage/structure/parent_gens.cp314-win_amd64.pyd +0 -0
  263. sage/structure/parent_gens.pxd +22 -0
  264. sage/structure/parent_gens.pyx +374 -0
  265. sage/structure/parent_old.cp314-win_amd64.pyd +0 -0
  266. sage/structure/parent_old.pxd +24 -0
  267. sage/structure/parent_old.pyx +278 -0
  268. sage/structure/proof/__init__.py +1 -0
  269. sage/structure/proof/all.py +243 -0
  270. sage/structure/proof/proof.py +300 -0
  271. sage/structure/richcmp.cp314-win_amd64.pyd +0 -0
  272. sage/structure/richcmp.pxd +212 -0
  273. sage/structure/richcmp.pyx +494 -0
  274. sage/structure/sage_object.cp314-win_amd64.pyd +0 -0
  275. sage/structure/sage_object.pxd +3 -0
  276. sage/structure/sage_object.pyx +1088 -0
  277. sage/structure/sage_object_test.py +19 -0
  278. sage/structure/sequence.py +937 -0
  279. sage/structure/set_factories.py +1178 -0
  280. sage/structure/set_factories_example.py +527 -0
  281. sage/structure/support_view.py +164 -0
  282. sage/structure/test_factory.py +56 -0
  283. sage/structure/unique_representation.py +1443 -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.12.0
2
+ Arguments: ['C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-6po0gdt2\\cp314-win_amd64\\build\\venv\\Scripts\\delvewheel', 'repair', '-vv', '--custom-patch', '-w', 'C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-6po0gdt2\\cp314-win_amd64\\repaired_wheel', 'C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-6po0gdt2\\cp314-win_amd64\\built_wheel\\passagemath_objects-10.8.1a3-cp314-cp314-win_amd64.whl']
@@ -0,0 +1,114 @@
1
+ Metadata-Version: 2.4
2
+ Name: passagemath-objects
3
+ Version: 10.8.1a3
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.11
25
+ Classifier: Programming Language :: Python :: 3.12
26
+ Classifier: Programming Language :: Python :: 3.13
27
+ Classifier: Programming Language :: Python :: 3.14
28
+ Classifier: Programming Language :: Python :: Implementation :: CPython
29
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
30
+ Requires-Python: <3.15,>=3.11
31
+ Description-Content-Type: text/x-rst
32
+ Requires-Dist: gmpy2~=2.1.b999
33
+ Requires-Dist: cysignals!=1.12.4; sys_platform == "win32"
34
+ Requires-Dist: cysignals!=1.12.0,>=1.11.2
35
+ Requires-Dist: typing_extensions>=4.7.0; python_version < "3.13"
36
+ Provides-Extra: test
37
+
38
+ ============================================================================================================
39
+ passagemath: Sage objects, elements, parents, categories, coercion, metaclasses
40
+ ============================================================================================================
41
+
42
+ `passagemath <https://github.com/passagemath/passagemath>`__ is open
43
+ source mathematical software in Python, released under the GNU General
44
+ Public Licence GPLv2+.
45
+
46
+ It is a fork of `SageMath <https://www.sagemath.org/>`__, which has been
47
+ developed 2005-2025 under the motto “Creating a Viable Open Source
48
+ Alternative to Magma, Maple, Mathematica, and MATLAB”.
49
+
50
+ The passagemath fork uses the motto "Creating a Free Passage Between the
51
+ Scientific Python Ecosystem and Mathematical Software Communities."
52
+ It was created in October 2024 with the following goals:
53
+
54
+ - providing modularized installation with pip,
55
+ - establishing first-class membership in the scientific Python
56
+ ecosystem,
57
+ - giving `clear attribution of upstream
58
+ projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,
59
+ - providing independently usable Python interfaces to upstream
60
+ libraries,
61
+ - offering `platform portability and integration testing
62
+ services <https://github.com/passagemath/passagemath/issues/704>`__
63
+ to upstream projects,
64
+ - inviting collaborations with upstream projects,
65
+ - `building a professional, respectful, inclusive
66
+ community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
67
+ - `empowering Sage users to participate in the scientific Python ecosystem
68
+ <https://github.com/passagemath/passagemath/issues/248>`__ by publishing packages,
69
+ - developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
70
+ serverless deployment with Javascript,
71
+ - developing a native Windows port.
72
+
73
+ `Full documentation <https://passagemath.org/docs/latest/html/en/index.html>`__ is
74
+ available online.
75
+
76
+ passagemath attempts to support and provides binary wheels suitable for
77
+ all major Linux distributions and recent versions of macOS.
78
+
79
+ Binary wheels for native Windows (x86_64) are are available for a subset of
80
+ the passagemath distributions. Use of the full functionality of passagemath
81
+ on Windows currently requires the use of Windows Subsystem for Linux (WSL)
82
+ or virtualization.
83
+
84
+ The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.14.x.
85
+
86
+
87
+ About this pip-installable distribution package
88
+ -----------------------------------------------
89
+
90
+ The pip-installable distribution package ``passagemath-objects`` is a
91
+ distribution of a small part of the Sage Library.
92
+
93
+ It provides a small, fundamental subset of the modules of the Sage library
94
+ ("sagelib", ``passagemath-standard``), making Sage objects, the element/parent
95
+ framework, categories, the coercion system and the related metaclasses
96
+ available.
97
+
98
+
99
+ Dependencies
100
+ ------------
101
+
102
+ When building from source, development packages of ``gmp``, ``mpfr``, and ``mpc`` are needed.
103
+
104
+
105
+ Documentation
106
+ -------------
107
+
108
+ * `Categories <https://passagemath.org/docs/latest/html/en/reference/categories/index.html>`_
109
+
110
+ * `Structure <https://passagemath.org/docs/latest/html/en/reference/structure/index.html>`_
111
+
112
+ * `Coercion <https://passagemath.org/docs/latest/html/en/reference/coercion/index.html>`_
113
+
114
+ * `Classes, Metaclasses <https://passagemath.org/docs/latest/html/en/reference/misc/index.html#special-base-classes-decorators-etc>`_
@@ -0,0 +1,283 @@
1
+ passagemath_objects/__init__.py,sha256=t9J2tkWRjwi9Skhh1Ubj5Te0uvFwkpXUhX8IwP4Ba4U,88
2
+ passagemath_objects-10.8.1a3.dist-info/DELVEWHEEL,sha256=wSZkjAPDC43f_KRElegoyB4safymC48Fr5Pk_TnxxRw,440
3
+ passagemath_objects-10.8.1a3.dist-info/METADATA,sha256=SvXX3NTuPoVxrkBmw0ptyks8qYlxmCLsBjhtlX9N6Nk,5384
4
+ passagemath_objects-10.8.1a3.dist-info/RECORD,,
5
+ passagemath_objects-10.8.1a3.dist-info/top_level.txt,sha256=0d3_E_m23cmoshzIf-G9mEsF55wtJLZjnTM551qb3uc,26
6
+ passagemath_objects-10.8.1a3.dist-info/WHEEL,sha256=z-AL790RFdWKt_PD8upif4biP-wiSujrp37waEcSdi0,102
7
+ passagemath_objects.libs/libgmp-10-60021eeab4282b29024e43b2b1412b53.dll,sha256=YAIe6rQoKykCTkOysUErUz5AAD5tBBHtbtXa6zKTLuI,3004991
8
+ sage/all__sagemath_objects.py,sha256=Y18xroIK2MfpLXJ2j7F40gekv2wLCLQDbugfShf7P3w,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.cp314-win_amd64.pyd,sha256=J8sy3x3bHRyalDFj-2DtqhkTfjqQYLPctvTvu4CXk1Y,56320
12
+ sage/arith/numerical_approx.pxd,sha256=gFWmxAnUn8xt1cMwCW0pxfywfy_ZJ3vrRuNjAjlo1dU,950
13
+ sage/arith/numerical_approx.pyx,sha256=IkdhP04vlBfHcSR4YREYBisONaa9uBWMlQmM8wrF-3Q,2538
14
+ sage/arith/power.cp314-win_amd64.pyd,sha256=dzYPNY5a2rwAUIO5UDGlhHuBVeDXLI6ZM11bViKb8P4,57856
15
+ sage/arith/power.pxd,sha256=CS0qcAvGCF4VdHFFOxfKtF5cmviM0UyOzGfAYghjTCA,630
16
+ sage/arith/power.pyx,sha256=SJamErC6EQinYao_I5JMTWNnYRRxUT-t-jRErZq-T5A,3257
17
+ sage/categories/action.cp314-win_amd64.pyd,sha256=vR12tDFj11uz0ubn_Hw-Q6xoyza7inVpGHzAGK5iZJ0,116736
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=wX2Jd-SpxmvRWz2wUpzX5ekc5ljoXuPdiA03GrUWz7I,24516
21
+ sage/categories/all__sagemath_objects.py,sha256=l0cQjqOFqQLeB_KplQnKRfuL566SRDm5Q9eBkz72_l4,1148
22
+ sage/categories/basic.py,sha256=xuc_6bvQiXP0NQLP2Ep7a2it9uyDY3gwDTAzLq4X7CY,2889
23
+ sage/categories/cartesian_product.py,sha256=5XhKeUpIFzpO7kwJYY1kthA4jbRXIzcA2SOtIRiw5Ck,10052
24
+ sage/categories/category.py,sha256=l-mSct_For_bXqWrkmtDxSpwPI10tMSMEivGJOcasLU,128934
25
+ sage/categories/category_cy_helper.cp314-win_amd64.pyd,sha256=2bpCxN1JnnmAUxHG3B6Somh9-4c5m2x_fO2YSb8WHTs,72192
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.cp314-win_amd64.pyd,sha256=xT9FbaHWXuJf5wrCi87wQWB-UGSDHDaIADNXusShSos,60928
29
+ sage/categories/category_singleton.pxd,sha256=Jm1lACWOGrs6Jjsy_fdv61NQSyQqnaKftAiNBNJYhgI,139
30
+ sage/categories/category_singleton.pyx,sha256=KhV8KoQvl67JrwpDckJVEe6oJGpnTN-NMPmNN0aA-NQ,13728
31
+ sage/categories/category_types.py,sha256=TeWkkpufvJZb_JgtBfidxcj6lUB_oZkDOKf9O7lBFZQ,20327
32
+ sage/categories/category_with_axiom.py,sha256=UZv3PYKQxp5AnN6kmxk_wr-C_lw0nsQIEuq1zFWVrXc,115295
33
+ sage/categories/covariant_functorial_construction.py,sha256=PnOozUGrkz0P2Fpw8pbG2tG9bmFgc3Vygi-fuIZUnp0,27416
34
+ sage/categories/facade_sets.py,sha256=EwTdCo9lJUJ1ogcMgqEndKim9_r4ic545Upw5cN36LA,8245
35
+ sage/categories/functor.cp314-win_amd64.pyd,sha256=lrI-oD8RcrGXfd8yOO9vZAzCdFGdY-eXtfUDu3xIN7o,92672
36
+ sage/categories/functor.pxd,sha256=HcrYjA83mrJpvnb9xRD7ygHrMIi5FOQSgyRfivnIb5I,203
37
+ sage/categories/functor.pyx,sha256=6FJFbpBFWhTVH0J7BBUpHfI_cxz6NlwzBw3p9JZhpSE,21326
38
+ sage/categories/homset.py,sha256=QbHQNGH5WOXAfeGqNlaJntYLkWGf6Q2ZVVLfa52GurE,51583
39
+ sage/categories/homsets.py,sha256=D8Lf2aqcWUcbeDUx7sTAW_MLTU6Tbthlem708qxsjFg,12567
40
+ sage/categories/isomorphic_objects.py,sha256=Uyr_YZf3yyUAB9o5afQNMILaXe8PwM1wKGlt00OGPdg,2993
41
+ sage/categories/map.cp314-win_amd64.pyd,sha256=eLIVLigK9PSXX4anKAq_Q-OLFk0OEmMDOvHWo-ZMJiw,233472
42
+ sage/categories/map.pxd,sha256=BuIaeaQ6Kid0Vu6BtwWpZjU6Kbdgfl_oL02qvdtgB2s,1093
43
+ sage/categories/map.pyx,sha256=TmaBbrziDyU74JmVmDWkHwnRsYC26S8l98MsyopLupc,78296
44
+ sage/categories/morphism.cp314-win_amd64.pyd,sha256=-pW4isEYSTsT_qpliWHgRb2xIoz_hSaIuT3Uilv6k-0,148480
45
+ sage/categories/morphism.pxd,sha256=udKj7cdyqm5oVHsn1abH2D9j2Xyd_47e2ZpTi0ouyVg,347
46
+ sage/categories/morphism.pyx,sha256=Q5zQWQuGHacJleMx_MGDmZbkNfFyX_U7WrY7PjSqeDg,29082
47
+ sage/categories/objects.py,sha256=WRhbHGLDDa4xY2AH0akVj_PPLg4IGOqpVMJeZk91pvA,5354
48
+ sage/categories/primer.py,sha256=aISo4mkhelJw0DLTg4POaCoRflCvEaO3xq3JVOWH9Oo,67171
49
+ sage/categories/pushout.py,sha256=7FyKwx2I7ffsYKtU8o4tos6iYhFd79z_w8MPjzPgQgk,193098
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=s9Fh5mqT8sBVD4XDZkWE4X2d0KIxpxLEcPtsUCJvZUk,135331
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.cp314-win_amd64.pyd,sha256=9slwca8Cpea2BuQvr9KTtVV9FgJCTnhsiw6bqdRbMVk,54272
59
+ sage/cpython/atexit.pyx,sha256=x9TzrPitvCe-IBVu38gviT1TiK0JpujnYTNxHeP_nWM,9851
60
+ sage/cpython/builtin_types.cp314-win_amd64.pyd,sha256=5yCwH2VjMN4WgHS_Z1DlnlPb4ZIgObbjsIlGoOoySpo,17920
61
+ sage/cpython/builtin_types.pyx,sha256=d0O-Ydnf8SKZ-TtMnpK7E5gLGPpTLJjnrSkdyIqI2Lw,196
62
+ sage/cpython/cython_metaclass.cp314-win_amd64.pyd,sha256=WmKK1ZuqD3TgOIhKdRWrp1kHBH1t-9gcI_B_3ve6REA,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.cp314-win_amd64.pyd,sha256=620LejbCH_un4SAuY45drQFtmYyib_0OkOnQpoNECqE,67072
67
+ sage/cpython/debug.pyx,sha256=dbWOnaY3Gmrs-WrTpfhIhYnLIX9TIHUmzpToiqSHOkY,11765
68
+ sage/cpython/dict_del_by_value.cp314-win_amd64.pyd,sha256=uNL-ta7ScDXCctJZsqmW_agYxrfC0AAlBod20MYliKg,38912
69
+ sage/cpython/dict_del_by_value.pxd,sha256=s4fW6tHggYhyNEbYFRca06_uaqZaG0mpKBzHE6usOIk,346
70
+ sage/cpython/dict_del_by_value.pyx,sha256=6B17dOas7ZvAMlY8HHupON1sDsY99GxoDGKTQrGT8uY,6418
71
+ sage/cpython/dict_internal.h,sha256=qP0wFqE33n9eYHKx6okspBBoP8ibxTyzCiEsjEGJpiI,2174
72
+ sage/cpython/getattr.cp314-win_amd64.pyd,sha256=8I_i5JjacsHhb7yqDFcS9B_DOOSJHaHbPNTkp1umiZU,67584
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.cp314-win_amd64.pyd,sha256=jmlmBhXS-8d0Cj3V9ZEDqaC8QCnPfiLl0H9yqnAHVyI,40960
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.cp314-win_amd64.pyd,sha256=4D0wVuD1APC2LzTxxsh85aTB4mxaQmSscFvVRb7paoA,38400
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=hN20yC4PXVLFxxF92KRp3MlDNcwm_LYirrCc7grQLCo,880
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.cp314-win_amd64.pyd,sha256=qOrcjZd0r-CK9ZCTlHCjv4hbj0pMkST7RYvbtvjcNjw,87040
98
+ sage/groups/group.pxd,sha256=l5XDUVBLZZghkEMm3p72KdVJDLxD85Je9otL5yDkXQM,251
99
+ sage/groups/group.pyx,sha256=pNVHCE2WkQ93cihEKywvdwq_-W-H97RVYJQ0kV2t_qY,9066
100
+ sage/groups/old.cp314-win_amd64.pyd,sha256=rqOl7SoppABWMXYtJKuEURzp1hVQ1vqSIlI65Zg_Eqc,61952
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=IUeCgd1l5tEGDvnK1bm8UbgiENFOiNfr6NY-6-hXNnU,9634
112
+ sage/libs/gmp/pylong.cp314-win_amd64.pyd,sha256=WGOPW7nLCeTwXmfyaZcGYIZg-2h-BniSa2sLZ38qFt4,20480
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.cp314-win_amd64.pyd,sha256=5qn8ozCCadm3NKyiybJem2jD1k6xWC2teK5r_1-X8Fw,183296
123
+ sage/misc/c3_controlled.pxd,sha256=EWT5P-X5Y6-dAslfrcE14QFMLsGHWcLSxCoAEkcN7NY,93
124
+ sage/misc/c3_controlled.pyx,sha256=5UrTV2xADSqta-GQYxOWCaCqVJOgwwEOmIP64CeTI6M,56086
125
+ sage/misc/cachefunc.cp314-win_amd64.pyd,sha256=jVQJ_qRscb2F1Dt-gtay_-ZlUCNQQY-odB7OA7QMuBE,351232
126
+ sage/misc/cachefunc.pxd,sha256=4c9YK_wVbUSit4f5LtoZsgV43_49S_P6LbrO-LDwl9w,1163
127
+ sage/misc/cachefunc.pyx,sha256=3HgFMvrmS0opJ-54rLkhI-qZX_jgQ5XNCrirar-Sa0M,128235
128
+ sage/misc/call.py,sha256=WerCuE2OSAGLgok9s-2JqTwEIZkvgqfarMUyQsYZlCc,5757
129
+ sage/misc/classcall_metaclass.cp314-win_amd64.pyd,sha256=5lO1hYxu6s-gx-Om5NT2M10LUcWBAQ1Ix-2GB7WICcc,72704
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.cp314-win_amd64.pyd,sha256=VeEr9nwGdOSyn8ucwF2_i-4FF2LNiWI0XKhEpCY7EIM,52736
133
+ sage/misc/constant_function.pyx,sha256=9whXcoLzKw4sMQv44tqwpGrb4gCNodYoDKrAyO3JJKU,3653
134
+ sage/misc/decorators.py,sha256=50y_ETusxI7JVQwO7yR1G3wcQ10P_wqoRzXOBrGg8Nw,26235
135
+ sage/misc/fast_methods.cp314-win_amd64.pyd,sha256=pQzFz89MFEub_tJHNJKE4Tc26XcWsjMsZJIrlLcJJAc,55296
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.cp314-win_amd64.pyd,sha256=eCX2mJPKRIvDKiwLY-uE2iC4mgN1TTOH-8CwA5Qoh5s,65024
140
+ sage/misc/fpickle.pyx,sha256=rHvQbRq3rSi0oOZdnLWpimufoTroPgbZcRIlnuSGe80,4877
141
+ sage/misc/function_mangling.cp314-win_amd64.pyd,sha256=kgRtv3Z96N18HI1HwLOHuIoZbZvrsi0ItxdXUVcbN0g,63488
142
+ sage/misc/function_mangling.pxd,sha256=n_zmWpk40S2JNrwTiBxFRkZaI9Fj7ZD_E9s_qm7PKu0,330
143
+ sage/misc/function_mangling.pyx,sha256=i9ASaVAq8rMIKHyy8Uy5193TeF7xeotIhHfMC1cXwoM,10873
144
+ sage/misc/inherit_comparison.cp314-win_amd64.pyd,sha256=1qMnF2x0mlbPb-Ev968rThuqgIf4u6KMt7DA7G0lzKQ,27648
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.cp314-win_amd64.pyd,sha256=kZjX5JmQkymsWgjs5qVXy1Xx7wG16oWYGRAziEuq9Dw,58880
148
+ sage/misc/instancedoc.pyx,sha256=ml1-c_SKHAnww2zwkJTXbuf2TSHJXtNYQstTSCRipFo,11125
149
+ sage/misc/lazy_attribute.cp314-win_amd64.pyd,sha256=k_j7vTd1HXZ7KtHXuf1gR2jSMvpgHIsa7vXkhesuKj4,59904
150
+ sage/misc/lazy_attribute.pyx,sha256=Q6QlwileBhbSq5uaK9dFlruYUZ_T4xhKmGz4i6plW7w,19118
151
+ sage/misc/lazy_format.py,sha256=3fy4Kwxbx2MdWpq4s5EH2-8IIm6cUtkYuJtuvryGgwg,4248
152
+ sage/misc/lazy_import.cp314-win_amd64.pyd,sha256=8CBqCJR12PA_CZu7yxr0t0_iZ5aqXrYSwl---yJK2qQ,157696
153
+ sage/misc/lazy_import.pxd,sha256=-RQhlgvFbkclsZpA3h6hTxn4YN9BvV5n3N_HRrTIG9o,392
154
+ sage/misc/lazy_import.pyx,sha256=4R-nWAMk9EUAQPgoikJCSdV0suilnVcXGy_T1MT4L_o,42179
155
+ sage/misc/lazy_import_cache.py,sha256=7UUPsvP7XLFIcXZee9tg8jB_0luUr-z3lxTPd8dsU2Y,1005
156
+ sage/misc/lazy_list.cp314-win_amd64.pyd,sha256=i-OWpS1XwDmaAW6aTC4Y0MD783zqoA6CYs2BsARD0_Q,134656
157
+ sage/misc/lazy_list.pxd,sha256=ugiVT7-AGL6qSOBVn6YSELu_TJctsEL-Dzpv65ep3XQ,672
158
+ sage/misc/lazy_list.pyx,sha256=ib3TZpxutctPqQ2bAwTGVJgo4YIJv8wmKfiBvoBtIsM,38313
159
+ sage/misc/lazy_string.cp314-win_amd64.pyd,sha256=mYe2B1AvPjEUkDtJ9weIG3y3jimNWOcGdGw7-EQskHk,73216
160
+ sage/misc/lazy_string.pxd,sha256=svK96-FOIZqWLd-uY9F-s_tF9buYOvl8goNGVbc_Uv8,182
161
+ sage/misc/lazy_string.pyx,sha256=kjC5HtApqcYKUv4VGXK0_zjUqJ_HdLzXAUW5Ws9FdJA,16280
162
+ sage/misc/misc.py,sha256=i_GDk1BZZy9ISWhaEEO9ZlXKIi5pMbmnL6m1Tf1581Q,27185
163
+ sage/misc/misc_c.cp314-win_amd64.pyd,sha256=QPXnigS9EMN35mg8_uJyvnDMBZcMNyZNMz9JC5pkPBM,87040
164
+ sage/misc/misc_c.pxd,sha256=6ijmZ05ZScqQVt6NfUEaSbHijl_JK2U4JQlV_E8SxR0,96
165
+ sage/misc/misc_c.pyx,sha256=N6MlozSsi20MsydfWiwQHuHvQL-ydolGmNGNTWEY01s,23666
166
+ sage/misc/namespace_package.py,sha256=1Zm09A9QjmQ6i4zp3I2G_x1XEm8wJVFxxZ353LN-EZE,938
167
+ sage/misc/nested_class.cp314-win_amd64.pyd,sha256=bYmDW6IfCmrEkdQpsONVFJGliAK8gi3J-AGoqbsQfXw,66560
168
+ sage/misc/nested_class.pxd,sha256=8jncbDWcavg4ZjbrbtXscGagkcMVU-ZDYH4k15jZyc4,94
169
+ sage/misc/nested_class.pyx,sha256=j0pwxE44IvMSpUM-Pl3_uv9T2CzfmwxsIoDuFML9VTQ,13318
170
+ sage/misc/persist.cp314-win_amd64.pyd,sha256=JCBvnPUVo8tIwH1buZX5bCaf6iVpl1H09Lm9aoZ37Yo,187392
171
+ sage/misc/persist.pyx,sha256=_LcKUa9KhoT9M11Rv3H4XZSoERqaeqlWsBli4zOoz-U,47049
172
+ sage/misc/prandom.py,sha256=vnbY62JYLu5_5L1nGbq1SoHkt0ScGBrx-LisbzhM2YY,12432
173
+ sage/misc/randstate.cp314-win_amd64.pyd,sha256=o-7JpkUD0wK9tisT5qlVB5NIJsC6KHToDrkJoaKktXU,116224
174
+ sage/misc/randstate.pxd,sha256=HZS9exHit_3xj-_aQ58Bqfvdro1nH_ZduXjdHNfjlT0,781
175
+ sage/misc/randstate.pyx,sha256=kJEB03EDR0cXmqqmIBL3yI7_ep6Mn87Sr8c3nmSwG_M,39588
176
+ sage/misc/repr.py,sha256=Q8sxfz4xNPGbHlMuKnIeAsH2LaZtXKkKwkHEZLlwFic,6987
177
+ sage/misc/reset.cp314-win_amd64.pyd,sha256=POFcqk5XoFiAaLGTcOBdC9guO5P82GXAWwMeyBO3zXo,63488
178
+ sage/misc/reset.pyx,sha256=loXKDqDCdujODBAjZKvu0hGMr1b2CExmHCdiTlcIL6c,5671
179
+ sage/misc/sageinspect.py,sha256=wSVy9tlOWEAFEW3uCPtiIDb4XV4N0MrpFYbmsGDCHyk,108405
180
+ sage/misc/sage_ostools.cp314-win_amd64.pyd,sha256=3ujk9wRPbAtRrRrtJDZRbFWfovdQ-4CJ05oxdMhDJ14,86016
181
+ sage/misc/sage_ostools.pyx,sha256=CaDOaTvu2JXfOwJk8wsgTF_OT_ivjugrqVvBa2FvvqA,9287
182
+ sage/misc/sage_timeit.py,sha256=9ihN5_yEH5booVXF3HMRMNI_K9-d-hw5bThZt0xleAg,9209
183
+ sage/misc/sage_timeit_class.cp314-win_amd64.pyd,sha256=I8sA8rryx8DtYphW7Dn4zBESLoepwGqx70MfUSnnORM,41984
184
+ sage/misc/sage_timeit_class.pyx,sha256=3IIxeFsvD7gxemBNgP_tnhuwMWjPiVdUTKQshSHWSxk,3908
185
+ sage/misc/sage_unittest.py,sha256=WneymQYfBslGNakxfSGCFAny-I3UEu0HTvD6FA7HarE,23978
186
+ sage/misc/session.cp314-win_amd64.pyd,sha256=XrBBcryU0NGhjQf04YoYvF9IZ_1rpbBrXIcAvBQvK8I,67584
187
+ sage/misc/session.pyx,sha256=vxqDy-kT1QEplhoyuDlRM6WiWmFfYLDZiOmy-gwl3gE,11770
188
+ sage/misc/superseded.py,sha256=DJh9SiEHPPEwkEQQroA3VH3rCVoXDZCEhADonEi6WLU,21145
189
+ sage/misc/test_nested_class.py,sha256=E_r0pvZKHIWw-1V3djlwdSKjY5BbaPmp-UFewrRhTLA,5914
190
+ sage/misc/timing.py,sha256=vPaH1_zQqiIJDH8W4FSzHPfFq6a5_VFuKi3iJJt4QB0,8574
191
+ sage/misc/unknown.py,sha256=fVh3T3B3vgSKqYqLjyWu2LhIErNlGQVkcJgqIMAJHtc,6481
192
+ sage/misc/verbose.py,sha256=KGMJeArKTqIPTgTxRq4YsSyY7KwZov0m1VmzfImmbUc,6636
193
+ sage/misc/weak_dict.cp314-win_amd64.pyd,sha256=95f1VeFC3oSM1N5fCwxouk3Y-WfM-qbo0DczJ90EwB8,122880
194
+ sage/misc/weak_dict.pxd,sha256=7mDU5vWwLDunO53fgGyEhVvSGZKxvHRx-EprQtgBmOA,428
195
+ sage/misc/weak_dict.pyx,sha256=oVPSfeHlzB3glg8YGv9M4ZwPQLQjkE40S6jNvRCHxiU,40469
196
+ sage/modules/all__sagemath_objects.py,sha256=U0s3i-j8VG_G3hwosaLXkFtIexExCHE66vo6Xk5_V08,46
197
+ sage/modules/module.cp314-win_amd64.pyd,sha256=4NEf1SyCi1CrcVnjQLeA34CFB1dDcfoIiSPsrnKAgr0,67584
198
+ sage/modules/module.pxd,sha256=l0gI2rRtwVMJPQNkQfJXqEN9EEovo46yAcs-aHio_Uc,125
199
+ sage/modules/module.pyx,sha256=7H9944eKgLxLKLrJ9d8PL69R4tYUEWvYBM8OgFSq2eA,12095
200
+ sage/rings/all__sagemath_objects.py,sha256=YDdaT0ZDVNDu-ssAUrDGDpEkHpGC0KRBZ15j5Xk8O80,169
201
+ sage/rings/integer_fake.h,sha256=e271zfi8hEZ5nzPLEljAjifRBaB4jOSgf8COx5zH2Zs,396
202
+ sage/rings/integer_fake.pxd,sha256=D7n-VZrrigxZm_D7NQKNikuWm25lg4u7Ity0y7Pv_Io,1949
203
+ sage/rings/integer_fake.pyi,sha256=4HtIEM3UiQT6zCkky9vWkZhK3svlHtCHIRnGESQ5gB4,172
204
+ sage/sets/all__sagemath_objects.py,sha256=YDdaT0ZDVNDu-ssAUrDGDpEkHpGC0KRBZ15j5Xk8O80,169
205
+ sage/sets/pythonclass.cp314-win_amd64.pyd,sha256=XZeSVLGGettMGqU6b9d85YpjkVy0ej49nOKX7xMszeY,72704
206
+ sage/sets/pythonclass.pxd,sha256=GYb_urQBxr8j28s_6FqtaN0WRZiW2hguXWR3Hztq3LU,189
207
+ sage/sets/pythonclass.pyx,sha256=ZzUjh8bkoqWPCd85Kcx-NnuEghofSQ0NoCG_CpeCpX4,7136
208
+ sage/structure/all.py,sha256=5GYCPE_LABmoZGre1WR9mlhvvpWpzqJMZrS9rAPSan8,798
209
+ sage/structure/category_object.cp314-win_amd64.pyd,sha256=bpo9EvnpBcF2wD7LqizGYCg5sCMCnru7w8caC9-DEKc,146944
210
+ sage/structure/category_object.pxd,sha256=rz9gGO9WiOLQ2XP9PdzSIELHW-4vvPmjXvqdD6huRvY,1030
211
+ sage/structure/category_object.pyx,sha256=8FgUYdaTPed4KFnGBUUPrwqriN3RqvKZ6nZL6S2nu3E,39004
212
+ sage/structure/coerce.cp314-win_amd64.pyd,sha256=nA3wz3crIiqj0cOLQkW4eD_4v_S6u-D2x5M75qJ0msc,264192
213
+ sage/structure/coerce.pxd,sha256=FklBQUdf23MFPu33SkIWJC9mQw2jjNSIY7PPMlQCNLQ,1369
214
+ sage/structure/coerce.pyx,sha256=TZCVmroxL3C4brTP6AXg7deTRAxF2jT03Jzmi5qwcfU,82381
215
+ sage/structure/coerce_actions.cp314-win_amd64.pyd,sha256=WDSyaebv2VUk0elsOWoIxeE6O-KA_5IIhx4e6pT7j7Y,152576
216
+ sage/structure/coerce_actions.pxd,sha256=4Gzyc43JOKIYDPkKUowbdQ-vYpDTrIxJERUed88b6Oo,528
217
+ sage/structure/coerce_actions.pyx,sha256=lrg_qYJehodMQN7o3Z_5Igfdszz02cInnLa-Ds8zYwA,37252
218
+ sage/structure/coerce_dict.cp314-win_amd64.pyd,sha256=oFg_KcMjw1dctLBy0wmld7KISdB3wvZ6O9vLt2mI07g,132096
219
+ sage/structure/coerce_dict.pxd,sha256=3Exj0-GuFQcXtXXKs4ydsU8trgO81fO2cIBP7PDlgZo,1415
220
+ sage/structure/coerce_dict.pyx,sha256=_DuaRSosZsllXhc57Oe9imVrkc2xkQNzdHeNEAdtjVo,49983
221
+ sage/structure/coerce_exceptions.py,sha256=0_og2GtBcrr8me7_8edijpOnlKFbFhAiQS7OfpNslAQ,988
222
+ sage/structure/coerce_maps.cp314-win_amd64.pyd,sha256=ztI1El1a_wYJlaC4mPVoiNh35usvnmcJkHsdS6WhWAc,133120
223
+ sage/structure/coerce_maps.pxd,sha256=SHbZyoFM2ZFihJyy2au9B9buEVWwqAts0G_VOWpcD1g,444
224
+ sage/structure/coerce_maps.pyx,sha256=M51LraEa3jh8YkjFoYdX1Ickf8FRO2iABU6XusCmcPQ,23229
225
+ sage/structure/debug_options.cp314-win_amd64.pyd,sha256=iQE-zokvMxIZjeOyVrS7Tho6xTjhJk69j7oW5EJUQwA,24576
226
+ sage/structure/debug_options.pxd,sha256=yf-VwnEs8Ur2_VYSQsrF9nkj_6AFTSsfcAcLW6IpdWM,200
227
+ sage/structure/debug_options.pyx,sha256=JR58ihocYWnDea5HgTN8WQ_wRVwyYcO6xe8XFM2Ku_k,1974
228
+ sage/structure/dynamic_class.py,sha256=30FYmhsiPynSJwopAhcOeXrTukqOlJpBNjNhtBYt_gw,20222
229
+ sage/structure/element.cp314-win_amd64.pyd,sha256=NZg3yXzk5-eFjX-N-zCYdEFbE1qP1WaHeBwKDTHjUWc,408576
230
+ sage/structure/element.pxd,sha256=VlnQn0YZDs3Q5EYM2kbzFdMuVjlHsiHP_Cn-e7Dpu7I,7915
231
+ sage/structure/element.pyx,sha256=B1fp3lw-062dcBlB7l4vc5znvl_mBnPmrbgRARt1sYE,181038
232
+ sage/structure/element_wrapper.cp314-win_amd64.pyd,sha256=FId8Nia5IDNUAWjbwqlAM_Jfm15KgfsVbjZU_M2EeyM,96256
233
+ sage/structure/element_wrapper.pxd,sha256=MI50lX2z0XmOoaFwGXns-rpOcdcduculNkS8t6VP1i4,319
234
+ sage/structure/element_wrapper.pyx,sha256=RH3G4VHj1Rop1w5eLV6ynIPVaV_qPxClhZ846aqxPbY,19276
235
+ sage/structure/factorization.py,sha256=bpPEKnDApsT-fRF3wMjXqMDY0GX9uRcIrMM_Wn2ReVE,46737
236
+ sage/structure/factorization_integer.py,sha256=5Leq1LZUlBC9L5e-NmWf2o01C8J4Dxj5hVAXNI2ADSE,5334
237
+ sage/structure/factory.cp314-win_amd64.pyd,sha256=4QcY8RIfWPcOS-Sre3URQx9ReoXhBf_8jwn_el5Hs3s,124928
238
+ sage/structure/factory.pyx,sha256=4m8aD6bF2v5omqK1q4BfH1GJxhsNI7WyJaMnHavs-vE,33587
239
+ sage/structure/formal_sum.py,sha256=-0PPVOHHlfLGQNmU8YV7qNZhrxanAoVorZuFUKSX8Ss,15953
240
+ sage/structure/gens_py.py,sha256=3e2OoLDBveDRyuaGStNBUZarUNa0CE2Qs9cBGhxR28g,2069
241
+ sage/structure/global_options.py,sha256=Kvq78VeRVOY8gZIjBFnkc3OAoSHdPNm19d4kOlPDTSI,68570
242
+ sage/structure/indexed_generators.py,sha256=T3ADtTQ_D3s9waiEbURYTlyr7udHmoCXDCLnSk8xcts,34776
243
+ sage/structure/list_clone.cp314-win_amd64.pyd,sha256=siYx258lLbwh8H3KELSIK3cBdk8fxne4aK4nDIrHGh0,209920
244
+ sage/structure/list_clone.pxd,sha256=Uy6QhnoBF8OLylfp74H4hupCyXCd1wVBXO0fAfbWKOw,2121
245
+ sage/structure/list_clone.pyx,sha256=IPvLcPncuiuADd_E29Oj-KZ-eE163Y7GR99g6fbk1Qo,58956
246
+ sage/structure/list_clone_demo.cp314-win_amd64.pyd,sha256=YBEph4a_VxgRZO5KdrUmdB0o_GwIPvms-K9b-OsZ3hM,77312
247
+ sage/structure/list_clone_demo.pyx,sha256=oU65ulMRrP8mkP8aNRlBd8j0Z61tIta868Fxui8LDKs,7643
248
+ sage/structure/list_clone_timings.py,sha256=qB1wmsqiKsTkmF2c6NbAlBIZ5DzwJZ8hnTeMMUMwLRI,6692
249
+ sage/structure/list_clone_timings_cy.cp314-win_amd64.pyd,sha256=t2H5Z16JIGnQbNFrccC2AzBPSJGBYZYPOPKhb3h3FLU,55296
250
+ sage/structure/list_clone_timings_cy.pyx,sha256=Yta-vzJVi8ZBH_1mPFJ7mNB11RGB64TqKqtSuil5CPc,2588
251
+ sage/structure/mutability.cp314-win_amd64.pyd,sha256=dG1uWElPdZni69kMDbiVvHbdNe7ZUm3dmpXgn2xM6zs,69632
252
+ sage/structure/mutability.pxd,sha256=SvQMhy7o0PKUnPdNSOdM0w6qpgzEqVzxVXmG1EvmKNo,680
253
+ sage/structure/mutability.pyx,sha256=6AXLvilu3HcGQJpklT1BBmQAElzIcfGup0a7kBv41yQ,11441
254
+ sage/structure/nonexact.py,sha256=kyCU30mUCCbiju6ujgVGe57gtAhavlEQvHDYHSYYupA,1736
255
+ sage/structure/parent.cp314-win_amd64.pyd,sha256=Ako-zZLLr0AA1nd59YF3MghHL6JFweJnGQ1duf2MBUs,311296
256
+ sage/structure/parent.pxd,sha256=WZ0dqLTWmhpsSiXR_VN4LHmI9mac8w2fksr-_cuUrSk,4230
257
+ sage/structure/parent.pyx,sha256=DC5poN1Wz_hZETnuzUBsEIwUaiiAe96PJcNL8hqMXQw,119930
258
+ sage/structure/parent_base.cp314-win_amd64.pyd,sha256=GecUMESoIAysxfNbFvHKl28kvEfkAyXO1mMvJBbxTZI,46080
259
+ sage/structure/parent_base.pxd,sha256=sQ4wTvOWWZUY8j_zLQjeFpZeXTCpJ6eNAFhL3BPU9tk,585
260
+ sage/structure/parent_base.pyx,sha256=9ahcymYc_jZY_1i42tal_4bPyqDx49Y04z4fvjfZ2gc,1409
261
+ sage/structure/parent_gens.cp314-win_amd64.pyd,sha256=7Tv10AWbFc0INw2ED6aGT91fuCJZ3AK_t08zEJt0ZTU,92160
262
+ sage/structure/parent_gens.pxd,sha256=mE16F-vEdWAUeE3atp6ZddvIAteQ6jagiYwnVGjHr3s,802
263
+ sage/structure/parent_gens.pyx,sha256=PtCw4VAdJo53_psv02bAR6GUlT1-4bBLfOGaSXOrJEU,12861
264
+ sage/structure/parent_old.cp314-win_amd64.pyd,sha256=svyc3SIku_EldqacAUsiFtcEXvU7UPqhUUdAlBQkCpU,78336
265
+ sage/structure/parent_old.pxd,sha256=UnZUSOPYK-m9O99MPIakANoHBKUhFOqBvUgqqy50-ng,936
266
+ sage/structure/parent_old.pyx,sha256=YUaLvy4OvQHw1haIKSqAwfl7XB7xfSrXUoiWyIGrXYk,9836
267
+ sage/structure/richcmp.cp314-win_amd64.pyd,sha256=ozXZocR-azjczhFK91YYH1S2cpnYFRXyipjlqZ6ZLc4,75776
268
+ sage/structure/richcmp.pxd,sha256=C4Os42mdcJFqPW4VM0PKbD12mp94ZEeWz6sCYd0W3Xg,6452
269
+ sage/structure/richcmp.pyx,sha256=mUYtn_R7T_xyFTnWDk0Dzs8k_FVtjJVcv7Tx-QeifPk,17805
270
+ sage/structure/sage_object.cp314-win_amd64.pyd,sha256=O8b_2jTMcZI10Lx6POCjXCc4t_EkrFUbD6AqCibX-KA,167936
271
+ sage/structure/sage_object.pxd,sha256=ucLms0iBHPbK0A-IJ-UDLVEbW66BH719SErTxz23po0,78
272
+ sage/structure/sage_object.pyx,sha256=ddLFFNoiXJvHhqx4qeQn0cZX77xGpXudmher8rsrico,35462
273
+ sage/structure/sage_object_test.py,sha256=ZAhjc7q979clLhRqEWAneSQDWzxP7bXqtRyQwIXY81M,627
274
+ sage/structure/sequence.py,sha256=MRvLtTYRik3rQvUYLANxgvafNXc9QteQRM1OwbcziPU,29457
275
+ sage/structure/set_factories.py,sha256=TAsPdQ-dQon69PxUv-fiybWHAOOAfJmQZiBQpRyCbdI,41181
276
+ sage/structure/set_factories_example.py,sha256=NjmC2WP-cCdojYsQhjuZaI9PPlaqMcLdO3FyNnc2aRE,17262
277
+ sage/structure/support_view.py,sha256=UggIDVbcTRsQwckOJSXLhQtHSpcBYdImAub9C7_tJTU,4663
278
+ sage/structure/test_factory.py,sha256=HL9H4MZC73a6Ew13W4VppvmRpcuqiJFEuM5xw3SZqOk,1760
279
+ sage/structure/unique_representation.py,sha256=WvVIElV8bcVIn41TK1Nm4Il96PYTOMnxiInaCTqxTQ4,55827
280
+ sage/structure/__init__.py,sha256=ttRak8FlWZLuzl0U_Dh1tbuclGVTh6jT-ksJebFNkAE,435
281
+ sage/structure/proof/all.py,sha256=oc3nbgOBRqlm6Azip-reTyYu9WejRD4EwD9gN8aBnbk,7339
282
+ sage/structure/proof/proof.py,sha256=0awMTNTW8UkYw-So8sEswkOH3ZJ2NjwMbjTTmcZZodY,10401
283
+ sage/structure/proof/__init__.py,sha256=U0s3i-j8VG_G3hwosaLXkFtIexExCHE66vo6Xk5_V08,46
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.10.2)
3
+ Root-Is-Purelib: false
4
+ Tag: cp314-cp314-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_12_0():
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_12_0()
10
+ del _delvewheel_patch_1_12_0
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