Closed fchapoton closed 5 years ago
Good to know is that there is a metaclass InheritComparison
which is supposed to fix that problem.
I've also, at least, provisionally, implemented __hash__
's for a lot of classes. I haven't pushed any of those changes yet because I've been lazy about adding docstrings for them and need to do that.
There are also lots of cases where it's fine to just assign __hash__ = BaseClass.__hash__
(in fact this is the case for all classes). That said, the default __hash__
a lot of classes have is not very good, or sometimes problematic (e.g. I think some object are hashable even though they're not immutable). So it's a good opportunity to check those on a case base case basis.
ok. But anyway, this seems to require a lot of work..
I did a few simple cases in #24552
Of the commits in my python 3 branch that I haven't made tickets for yet, I've added __hash__
implementations in at least the following (and maybe more):
src/sage/algebras/free_algebra.py
src/sage/algebras/free_algebra_quotient.py
src/sage/algebras/quatalg/quaternion_algebra.py
src/sage/algebras/steenrod/steenrod_algebra.py
src/sage/categories/pushout.py
src/sage/coding/hamming_code.py
src/sage/coding/linear_code.py
src/sage/combinat/crystals/generalized_young_walls.py
src/sage/combinat/integer_vector.py
src/sage/combinat/rigged_configurations/rigged_partition.py
src/sage/combinat/root_system/type_dual.py
src/sage/combinat/species/series.py
src/sage/combinat/subset.py
src/sage/combinat/subword_complex.py
src/sage/combinat/words/word_datatypes.pyx
src/sage/groups/abelian_gps/abelian_group.py
src/sage/groups/perm_gps/permgroup_named.py
src/sage/homology/chain_complex.py
src/sage/homology/chain_complex_morphism.py
src/sage/manifolds/continuous_map.py
src/sage/modular/arithgroup/congroup_generic.py
src/sage/modular/modsym/ambient.py
src/sage/monoids/free_monoid.py
src/sage/rings/fraction_field.py
src/sage/rings/ideal_monoid.py
src/sage/rings/number_field/order.py
src/sage/rings/padics/padic_extension_generic.py
src/sage/rings/polynomial/laurent_polynomial_ring.py
src/sage/rings/polynomial/polynomial_quotient_ring.py
src/sage/structure/element_wrapper.pyx
src/sage/combinat/rigged_configurations/bij_abstract_class.py
and its subclasses should never be used in a hash (it is a helper class to perform a bijection) and the __eq__
is just there so the TestSuite
with the pickling passes. Probably the better thing to do here is to remove the __eq__
and skip the pickling test (this is some of the first code I contributed to Sage, memories...).
Quick question one of you can maybe answer: If a class inherits from UniqueRepresentation
, then should it even be implementing __eq__
? ISTM it should just use the __eq__
implementation inherited from UniqueRepresentation
(via WithEqualityById
).
I've found several classes that inherit from UniqueRepresentation
but that still implement their own __eq__
like:
def __eq__(self, other):
return isinstance(other, type(self)) and self.foo == other.foo and self.bar == other.bar
for some list of various attributes of the objects that are mostly determined at the object's construction.
I admit I don't fully understand yet how UniqueRepresentation
is supposed to work though (I will read the docs for it carefully now). But it seems like it should implicitly cover this use case (and thus eliminate the need for a lot of explicit __eq__
and hence __hash__
implementations).
Or could it be that in some of these cases their __eq__
is defined more broadly than just equality by identity? I admit in some of these cases I don't know the mathematical background well enough to determine this, and the given examples don't always make the intent clear either.
Okay, quoting the docs:
Instances of a class have a unique instance behavior when instances of this class evaluate equal if and only if they are identical.
So IIUC, a class really shouldn't be inheriting UniqueRepresentation
unless they truly do define equality by identity. So either these classes shouldn't be defining __eq__
, or they aren't using UniqueRepresentation
appropriately (and should perhaps just be using CachedRepresentation
at the most).
Replying to @embray:
So IIUC, a class really shouldn't be inheriting
UniqueRepresentation
unless they truly do define equality by identity. So either these classes shouldn't be defining__eq__
, or they aren't usingUniqueRepresentation
appropriately (and should perhaps just be usingCachedRepresentation
at the most).
That sounds reasonable.
I'm just going through sage.algebras
and finding several cases like this (this is where I started since that's where I was recently toiling on the __hash__
issue). Indeed, it seems many of these classes predate, and/or have __eq__
methods that predate UniqueRepresentation
.
Another angle to this that Jeroen has already pointed out a couple times is that there is InheritComparison
. This could be extended to also automatically force the inheritance of __hash__
. I think that would solve a lot of this "for free". But what I've also found is that this has exposed many cases where class's default inherited __hash__
es are not well-defined w.r.t. their __eq__
, or other issues like in #25387.
In other words, I think that the new behavior in Python 3, while annoying in terms of how much it breaks in Sage, is good that it forces us to think more carefully about this. So I'd be hesitant to resort to such a brute-force fix except as a last resort.
Among the files listed in the ticket description, the case
src/sage/manifolds/continuous_map.py
is dealt with by #25502. The other manifold cases:
src/sage/manifolds/chart.py
src/sage/manifolds/chart_func.py
src/sage/manifolds/differentiable/affine_connection.py
src/sage/manifolds/differentiable/tensorfield.py
src/sage/manifolds/scalarfield.py
should trigger no Python3 issue since none of these classes is intended to be hashable. Same thing for
src/sage/tensor/modules/comp.py
src/sage/tensor/modules/free_module_morphism.py
src/sage/tensor/modules/free_module_tensor.py
src/sage/tensor/modules/tensor_with_indices.py
see #25586 and #25587 for some partial cure
some failures in sage3 doctests:
'TypeError("unhashable type: \'AbsoluteOrder_with_category\'",)',
'TypeError("unhashable type: \'RelativeOrder_with_category\'",)',
"TypeError: unhashable type: 'AbelianGroup_class_with_category'",
"TypeError: unhashable type: 'AbsoluteOrder_with_category'",
"TypeError: unhashable type: 'CartanType_affine_with_superclass'",
"TypeError: unhashable type: 'CartesianProduct_with_category.element_class'",
"TypeError: unhashable type: 'ChainComplex_class_with_category'",
"TypeError: unhashable type: 'ClassGroup_with_category'",
"TypeError: unhashable type: 'CompositeConstructionFunctor'",
"TypeError: unhashable type: 'CrystalOfAlcovePaths_with_category.element_class'",
"TypeError: unhashable type: 'CycleIndexSeriesRing_class_with_category'",
"TypeError: unhashable type: 'CyclicPermutationGroup_with_category'",
"TypeError: unhashable type: 'DihedralGroup_with_category'",
"TypeError: unhashable type: 'EisensteinExtensionFieldCappedRelative_with_category'",
"TypeError: unhashable type: 'EisensteinExtensionRingCappedAbsolute_with_category'",
"TypeError: unhashable type: 'EisensteinExtensionRingCappedRelative_with_category'",
"TypeError: unhashable type: 'EisensteinExtensionRingFixedMod_with_category'",
"TypeError: unhashable type: 'FpT_with_category'",
"TypeError: unhashable type: 'FractionField_1poly_field_with_category'",
"TypeError: unhashable type: 'FractionField_generic_with_category'",
"TypeError: unhashable type: 'Gamma0_class_with_category'",
"TypeError: unhashable type: 'Gamma1_class_with_category'",
"TypeError: unhashable type: 'GammaH_class_with_category'",
"TypeError: unhashable type: 'HammingCode_with_category'",
"TypeError: unhashable type: 'HyperbolicModelPD_with_category.element_class'",
"TypeError: unhashable type: 'HyperellipticCurve_g2_rational_field_with_category'",
"TypeError: unhashable type: 'HyperellipticCurve_rational_field_with_category'",
"TypeError: unhashable type: 'IdealMonoid_c_with_category'",
"TypeError: unhashable type: 'InfinitePolynomialFunctor'",
"TypeError: unhashable type: 'KleinFourGroup_with_category'",
"TypeError: unhashable type: 'LabelledBinaryTrees_with_category.element_class'",
"TypeError: unhashable type: 'LaurentPolynomialRing_mpair_with_category'",
"TypeError: unhashable type: 'LaurentPolynomialRing_univariate_with_category'",
"TypeError: unhashable type: 'MPolynomialRing_polydict_domain_with_category'",
"TypeError: unhashable type: 'MPolynomialRing_polydict_with_category'",
"TypeError: unhashable type: 'MPolynomial_polydict'",
"TypeError: unhashable type: 'ModularSymbolsAmbient_wtk_eps_with_category'",
"TypeError: unhashable type: 'MultivariateProduct_with_category.element_class'",
"TypeError: unhashable type: 'OverconvergentModularFormsSpace_with_category'",
"TypeError: unhashable type: 'Partitions_with_constraints_with_category'",
"TypeError: unhashable type: 'PolynomialQuotientRing_field_with_category'",
"TypeError: unhashable type: 'PolynomialQuotientRing_generic_with_category'",
"TypeError: unhashable type: 'ProjectiveSpace_rational_field_with_category'",
"TypeError: unhashable type: 'QuaternionAlgebra_ab_with_category'",
"TypeError: unhashable type: 'QuaternionFractionalIdeal_rational'",
"TypeError: unhashable type: 'RelativeOrder_with_category'",
"TypeError: unhashable type: 'SL2Z_class_with_category'",
"TypeError: unhashable type: 'Subsets_sk_with_category'",
"TypeError: unhashable type: 'SymbolicConstantsSubring_with_category'",
"TypeError: unhashable type: 'SymmetricGroup_with_category'",
"TypeError: unhashable type: 'ToricVariety_field_with_category'",
"TypeError: unhashable type: 'UnivariateProduct_with_category.element_class'",
"TypeError: unhashable type: 'UnramifiedExtensionFieldCappedRelative_with_category'",
"TypeError: unhashable type: 'UnramifiedExtensionRingCappedAbsolute_with_category'",
"TypeError: unhashable type: 'UnramifiedExtensionRingCappedRelative_with_category'",
"TypeError: unhashable type: 'UnramifiedExtensionRingFixedMod_with_category'",
"TypeError: unhashable type: 'pAdicAutomorphicForms_with_category'",
"TypeError: unhashable type: 'sage.rings.padics.qadic_flint_CR.qAdicCappedRelativeElement'"]
Note that the changes (taken from comment:2)
diff --git a/src/sage/groups/abelian_gps/abelian_group.py b/src/sage/groups/abelian_gps/abelian_group.py
index e19199b949..bf6fe5dc2c 100644
--- a/src/sage/groups/abelian_gps/abelian_group.py
+++ b/src/sage/groups/abelian_gps/abelian_group.py
@@ -553,6 +553,8 @@ class AbelianGroup_class(UniqueRepresentation, AbelianGroupBase):
cat = cat.Infinite()
AbelianGroupBase.__init__(self, category=cat)
+ __hash__ = UniqueRepresentation.__hash__
+
def is_isomorphic(left, right):
"""
Check whether ``left`` and ``right`` are isomorphic
diff --git a/src/sage/groups/perm_gps/permgroup_named.py b/src/sage/groups/perm_gps/permgroup_named.py
index da1774e96c..54fa034b4a 100644
--- a/src/sage/groups/perm_gps/permgroup_named.py
+++ b/src/sage/groups/perm_gps/permgroup_named.py
@@ -149,6 +149,8 @@ class PermutationGroup_unique(CachedRepresentation, PermutationGroup_generic):
"""
return super(CachedRepresentation, self).__eq__(other)
+ __hash__ = CachedRepresentation.__hash__
+
class PermutationGroup_symalt(PermutationGroup_unique):
"""
fix many Python 3 doctest failures in sage/homology
. I don't know if this is the correct approach, or perhaps there is something more systematic to make hashes inherit even when __eq__
is defined.
If you're using the __hash__
of UniqueRepresentation
but not its __eq__
, then you're doing it wrong. So this might indicate an actual bug.
That class has the line
__eq__ = is_isomorphic
so that generator names (for example) don't affect equality. (is_isomorphic
just checks whether the elementary divisors match up.) We could define __hash__
correspondingly. For the simplicial complex code, the important thing (I think) is that the class of abelian groups is hashable. I assume that any reasonable hash function will work.
(I also don't know how or why the design decisions for AbelianGroup_class
were made.)
Confirmed:
diff --git a/src/sage/groups/abelian_gps/abelian_group.py b/src/sage/groups/abelian_gps/abelian_group.py
index e19199b949..62a5e25edb 100644
--- a/src/sage/groups/abelian_gps/abelian_group.py
+++ b/src/sage/groups/abelian_gps/abelian_group.py
@@ -553,6 +553,9 @@ class AbelianGroup_class(UniqueRepresentation, AbelianGroupBase):
cat = cat.Infinite()
AbelianGroupBase.__init__(self, category=cat)
+ def __hash__(self):
+ return hash(self.elementary_divisors())
+
def is_isomorphic(left, right):
"""
Check whether ``left`` and ``right`` are isomorphic
works just as well, at least as far as the homology code is concerned.
Replying to @jhpalmieri:
That class has the line
__eq__ = is_isomorphic
so that generator names (for example) don't affect equality.
This is different from most other things in Sage though. For example
sage: GF(9, 'a') == GF(9, 'b')
False
sage: QQ['x'] == QQ['y']
False
I'm not saying that this is necessarily a bug. However, if you can change __eq__
without breaking anything else, I would do that instead of changing __hash__
.
I opened #25935 for AbelianGroup_class
. Please continue the discussion there.
I opened #25940 for ChainComplex_class
.
Added one for HyperellipticCurve_generic
in #25946.
Description changed:
---
+++
@@ -1,177 +1,77 @@
-This is potentially a large-scale problem
+This is potentially a large-scale problem, as can be seen using
grep -L "def hash" $(git grep -l "def eq" ) -build/sage_bootstrap/compat/argparse.py -build/sage_bootstrap/package.py -build/sage_bootstrap/tarball.py -src/doc/en/thematic_tutorials/structures_in_coding_theory.rst -src/sage/algebras/finite_dimensional_algebras/finite_dimensional_algebra_morphism.py -src/sage/algebras/free_algebra.py -src/sage/algebras/free_algebra_quotient.py -src/sage/algebras/jordan_algebra.py -src/sage/algebras/steenrod/steenrod_algebra.py -src/sage/calculus/transforms/dft.py -src/sage/categories/examples/cw_complexes.py -src/sage/categories/examples/lie_algebras.py -src/sage/categories/pushout.py -src/sage/coding/bch.py -src/sage/coding/cyclic_code.py -src/sage/coding/extended_code.py -src/sage/coding/golay_code.py -src/sage/coding/grs.py -src/sage/coding/guruswami_sudan/gs_decoder.py -src/sage/coding/hamming_code.py -src/sage/coding/parity_check_code.py -src/sage/coding/punctured_code.py -src/sage/coding/reed_muller_code.py -src/sage/coding/relative_finite_field_extension.py -src/sage/coding/subfield_subcode.py -src/sage/combinat/abstract_tree.py -src/sage/combinat/binary_recurrence_sequences.py -src/sage/combinat/cluster_algebra_quiver/quiver_mutation_type.py -src/sage/combinat/crystals/generalized_young_walls.py -src/sage/combinat/crystals/pbw_datum.pyx -src/sage/combinat/diagram_algebras.py -src/sage/combinat/dlx.py -src/sage/combinat/free_dendriform_algebra.py -src/sage/combinat/free_prelie_algebra.py -src/sage/combinat/growth.py -src/sage/combinat/integer_list_old.py -src/sage/combinat/integer_lists/lists.py -src/sage/combinat/integer_vector.py -src/sage/combinat/misc.py -src/sage/combinat/ncsf_qsym/generic_basis_code.py -src/sage/combinat/rigged_configurations/bij_abstract_class.py -src/sage/combinat/rigged_configurations/rigged_partition.py -src/sage/combinat/root_system/branching_rules.py -src/sage/combinat/root_system/type_dual.py -src/sage/combinat/skew_tableau.py -src/sage/combinat/sloane_functions.py -src/sage/combinat/species/series.py -src/sage/combinat/species/structure.py -src/sage/combinat/subset.py -src/sage/combinat/subsets_pairwise.py -src/sage/combinat/subword.py -src/sage/combinat/subword_complex.py -src/sage/combinat/tableau.py -src/sage/combinat/words/abstract_word.py -src/sage/combinat/words/paths.py -src/sage/combinat/words/suffix_trees.py -src/sage/cpython/wrapperdescr.pxd -src/sage/crypto/block_cipher/miniaes.py -src/sage/crypto/block_cipher/sdes.py -src/sage/crypto/cipher.py -src/sage/crypto/classical_cipher.py -src/sage/crypto/cryptosystem.py -src/sage/crypto/public_key/blum_goldwasser.py -src/sage/crypto/sbox.py -src/sage/crypto/stream.py -src/sage/databases/findstat.py -src/sage/databases/oeis.py -src/sage/doctest/control.py -src/sage/doctest/parsing.py -src/sage/doctest/sources.py -src/sage/doctest/util.py -src/sage/dynamics/flat_surfaces/quadratic_strata.py -src/sage/dynamics/flat_surfaces/strata.py -src/sage/dynamics/interval_exchanges/iet.py -src/sage/dynamics/interval_exchanges/template.py -src/sage/finance/markov_multifractal.py -src/sage/finance/stock.py -src/sage/functions/piecewise_old.py -src/sage/games/sudoku.py -src/sage/geometry/hyperbolic_space/hyperbolic_geodesic.py -src/sage/geometry/pseudolines.py -src/sage/geometry/toric_plotter.py -src/sage/graphs/graph_latex.py -src/sage/graphs/modular_decomposition.py -src/sage/groups/conjugacy_classes.py -src/sage/groups/pari_group.py -src/sage/groups/perm_gps/permgroup_named.py -src/sage/groups/perm_gps/symgp_conjugacy_class.py -src/sage/homology/cell_complex.py -src/sage/homology/chain_complex.py -src/sage/homology/homology_morphism.py -src/sage/homology/simplicial_complex_morphism.py -src/sage/homology/simplicial_set_morphism.py -src/sage/interfaces/r.py -src/sage/knots/link.py -src/sage/logic/boolformula.py -src/sage/manifolds/chart.py -src/sage/manifolds/chart_func.py -src/sage/manifolds/continuous_map.py -src/sage/manifolds/differentiable/affine_connection.py -src/sage/manifolds/differentiable/tensorfield.py -src/sage/manifolds/scalarfield.py -src/sage/matrix/operation_table.py -src/sage/misc/nested_class_test.py -src/sage/misc/table.py -src/sage/misc/test_class_pickling.py -src/sage/modular/abvar/lseries.py -src/sage/modular/arithgroup/congroup_generic.py -src/sage/modular/btquotients/btquotient.py -src/sage/modular/btquotients/pautomorphicform.py -src/sage/modular/cusps_nf.py -src/sage/modular/etaproducts.py -src/sage/modular/hypergeometric_motive.py -src/sage/modular/local_comp/local_comp.py -src/sage/modular/local_comp/smoothchar.py -src/sage/modular/modform/element.py -src/sage/modular/modform_hecketriangle/functors.py -src/sage/modular/modsym/ambient.py -src/sage/modular/overconvergent/genus0.py -src/sage/modular/pollack_stevens/padic_lseries.py -src/sage/modules/filtered_vector_space.py -src/sage/modules/module_functors.py -src/sage/modules/multi_filtered_vector_space.py -src/sage/modules/with_basis/morphism.py -src/sage/monoids/free_monoid.py -src/sage/numerical/interactive_simplex_method.py -src/sage/numerical/knapsack.py -src/sage/quadratic_forms/genera/genus.py -src/sage/quadratic_forms/quadratic_form__local_representation_conditions.py -src/sage/quadratic_forms/ternary_qf.py -src/sage/quivers/morphism.py -src/sage/rings/asymptotic/asymptotics_multivariate_generating_functions.py -src/sage/rings/ideal_monoid.py -src/sage/rings/noncommutative_ideals.pyx -src/sage/rings/number_field/galois_group.py -src/sage/rings/number_field/order.py -src/sage/rings/padics/padic_extension_generic.py -src/sage/rings/polynomial/groebner_fan.py -src/sage/rings/polynomial/infinite_polynomial_ring.py -src/sage/rings/polynomial/laurent_polynomial_ring.py -src/sage/rings/polynomial/multi_polynomial_element.py -src/sage/rings/polynomial/multi_polynomial_ring.py -src/sage/rings/polynomial/polynomial_quotient_ring.py -src/sage/schemes/affine/affine_morphism.py -src/sage/schemes/affine/affine_space.py -src/sage/schemes/elliptic_curves/formal_group.py -src/sage/schemes/elliptic_curves/gal_reps.py -src/sage/schemes/elliptic_curves/gal_reps_number_field.py -src/sage/schemes/elliptic_curves/modular_parametrization.py -src/sage/schemes/elliptic_curves/sha_tate.py -src/sage/schemes/elliptic_curves/weierstrass_morphism.py -src/sage/schemes/hyperelliptic_curves/hyperelliptic_generic.py -src/sage/schemes/hyperelliptic_curves/monsky_washnitzer.py -src/sage/schemes/product_projective/space.py -src/sage/schemes/projective/projective_morphism.py -src/sage/schemes/projective/projective_space.py -src/sage/schemes/toric/chow_group.py -src/sage/schemes/toric/variety.py -src/sage/sets/totally_ordered_finite_set.py -src/sage/structure/coerce.pyx -src/sage/structure/richcmp.pyx -src/sage/symbolic/assumptions.py -src/sage/symbolic/constants.py -src/sage/symbolic/subring.py -src/sage/symbolic/units.py -src/sage/tensor/coordinate_patch.py -src/sage/tensor/differential_form_element.py -src/sage/tensor/differential_forms.py -src/sage/tensor/modules/comp.py -src/sage/tensor/modules/free_module_morphism.py -src/sage/tensor/modules/free_module_tensor.py -src/sage/tensor/modules/tensor_with_indices.py
+
+TODO LIST (extracted from errors on sage/python3 testsuite):
+| **Ticket** | **Module** | Notes |
+|:------------:|:----------------------:|:-------:|
+|#?????|AbelianGroupWithValues_class_with_category||
+|#?????|AbelianGroup_class_with_category||
+|#?????|AlternatingGroup_with_category||
+|#?????|BruhatTitsHarmonicCocycles_with_category||
+|#?????|CartesianProduct_with_category.element_class||
+|#?????|ChainComplex_class_with_category||
+|#?????|ClassGroup_with_category||
+|#?????|CompositeConstructionFunctor||
+|#?????|CrystalOfAlcovePaths_with_category.element_class||
+|#?????|CycleIndexSeriesRing_class_with_category||
+|#?????|CyclicPermutationGroup_with_category||
+|#?????|DiCyclicGroup_with_category||
+|#?????|DihedralGroup_with_category||
+|#?????|EisensteinExtensionFieldCappedRelative_with_category||
+|#?????|EisensteinExtensionRingCappedAbsolute_with_category||
+|#?????|EisensteinExtensionRingCappedRelative_with_category||
+|#?????|EisensteinExtensionRingFixedMod_with_category||
+|#?????|FiniteWord_list||
+|#?????|FiniteWord_str||
+|#?????|FiniteWord_tuple||
+|#?????|Gamma0_class_with_category||
+|#?????|Gamma1_class_with_category||
+|#?????|GammaH_class_with_category||
+|#?????|Gamma_class_with_category||
+|#?????|HammingCode_with_category||
+|#25946|HyperellipticCurve_g2_padic_field_with_category||
+|#25946|HyperellipticCurve_g2_rational_field_with_category||
+|#25946|HyperellipticCurve_padic_field_with_category||
+|#25946|HyperellipticCurve_rational_field_with_category||
+|#?????|IdealMonoid_c_with_category||
+|#?????|InfinitePolynomialFunctor||
+|#?????|KleinFourGroup_with_category||
+|#?????|LabelledBinaryTrees_with_category.element_class||
+|#?????|MPolynomial_polydict||
+|#?????|MathieuGroup_with_category||
+|#?????|ModularSymbolsAmbient_wtk_eps_with_category||
+|#?????|MultivariateProduct_with_category.element_class||
+|#?????|NCPolynomialIdeal||
+|#?????|PGL_with_category||
+|#?????|PSL_with_category||
+|#?????|Partitions_with_constraints_with_category||
+|#?????|PolynomialQuotientRing_domain_with_category||
+|#?????|PolynomialQuotientRing_field_with_category||
+|#?????|PolynomialQuotientRing_generic_with_category||
+|#?????|PrimitiveGroup_with_category||
+|#?????|ProjectiveSpace_rational_field_with_category||
+|#?????|ProjectiveSpace_ring_with_category||
+|#?????|QuaternionFractionalIdeal_rational||
+|#?????|QuaternionGroup_with_category||
+|#?????|SL2Z_class_with_category||
+|#?????|ShiftedPrimedTableaux_shape_with_category.element_class||
+|#?????|SimplicialSetMorphism||
+|#?????|SmoothCharacterGroupQp_with_category||
+|#?????|SmoothCharacterGroupRamifiedQuadratic_with_category||
+|#?????|SmoothCharacterGroupUnramifiedQuadratic_with_category||
+|#?????|SubsetsSorted_with_category||
+|#?????|Subsets_sk_with_category||
+|#?????|SymbolicConstantsSubring_with_category||
+|#?????|SymmetricGroup_with_category||
+|#?????|TransitiveGroup_with_category||
+|#?????|UnivariateProduct_with_category.element_class||
+|#?????|UnramifiedExtensionFieldCappedRelative_with_category||
+|#?????|UnramifiedExtensionRingCappedAbsolute_with_category||
+|#?????|UnramifiedExtensionRingCappedRelative_with_category||
+|#?????|UnramifiedExtensionRingFixedMod_with_category||
+|#?????|pAdicAutomorphicForms_with_category||
+|#?????|sage.rings.padics.qadic_flint_CR.qAdicCappedRelativeElement||
+
Description changed:
---
+++
@@ -7,12 +7,12 @@
TODO LIST (extracted from errors on sage/python3 testsuite):
| **Ticket** | **Module** | Notes |
|:------------:|:----------------------:|:-------:|
-|#?????|AbelianGroupWithValues_class_with_category||
-|#?????|AbelianGroup_class_with_category||
+|#25935|AbelianGroupWithValues_class_with_category||
+|#25935|AbelianGroup_class_with_category||
|#?????|AlternatingGroup_with_category||
|#?????|BruhatTitsHarmonicCocycles_with_category||
|#?????|CartesianProduct_with_category.element_class||
-|#?????|ChainComplex_class_with_category||
+|#25940|ChainComplex_class_with_category||
|#?????|ClassGroup_with_category||
|#?????|CompositeConstructionFunctor||
|#?????|CrystalOfAlcovePaths_with_category.element_class||
Description changed:
---
+++
@@ -10,7 +10,7 @@
|#25935|AbelianGroupWithValues_class_with_category||
|#25935|AbelianGroup_class_with_category||
|#?????|AlternatingGroup_with_category||
-|#?????|BruhatTitsHarmonicCocycles_with_category||
+|#26058|BruhatTitsHarmonicCocycles_with_category||
|#?????|CartesianProduct_with_category.element_class||
|#25940|ChainComplex_class_with_category||
|#?????|ClassGroup_with_category||
@@ -72,6 +72,6 @@
|#?????|UnramifiedExtensionRingCappedAbsolute_with_category||
|#?????|UnramifiedExtensionRingCappedRelative_with_category||
|#?????|UnramifiedExtensionRingFixedMod_with_category||
-|#?????|pAdicAutomorphicForms_with_category||
+|#26058|pAdicAutomorphicForms_with_category||
|#?????|sage.rings.padics.qadic_flint_CR.qAdicCappedRelativeElement||
Description changed:
---
+++
@@ -7,19 +7,19 @@
TODO LIST (extracted from errors on sage/python3 testsuite):
| **Ticket** | **Module** | Notes |
|:------------:|:----------------------:|:-------:|
-|#25935|AbelianGroupWithValues_class_with_category||
+|#25935|AbelianGroupWithValues_class_with_category|group|
|#25935|AbelianGroup_class_with_category||
-|#?????|AlternatingGroup_with_category||
+|#?????|AlternatingGroup_with_category|group|
|#26058|BruhatTitsHarmonicCocycles_with_category||
|#?????|CartesianProduct_with_category.element_class||
|#25940|ChainComplex_class_with_category||
-|#?????|ClassGroup_with_category||
+|#?????|ClassGroup_with_category|group|
|#?????|CompositeConstructionFunctor||
|#?????|CrystalOfAlcovePaths_with_category.element_class||
|#?????|CycleIndexSeriesRing_class_with_category||
-|#?????|CyclicPermutationGroup_with_category||
-|#?????|DiCyclicGroup_with_category||
-|#?????|DihedralGroup_with_category||
+|#?????|CyclicPermutationGroup_with_category|group|
+|#?????|DiCyclicGroup_with_category|group|
+|#?????|DihedralGroup_with_category|group|
|#?????|EisensteinExtensionFieldCappedRelative_with_category||
|#?????|EisensteinExtensionRingCappedAbsolute_with_category||
|#?????|EisensteinExtensionRingCappedRelative_with_category||
@@ -27,10 +27,10 @@
|#?????|FiniteWord_list||
|#?????|FiniteWord_str||
|#?????|FiniteWord_tuple||
-|#?????|Gamma0_class_with_category||
-|#?????|Gamma1_class_with_category||
-|#?????|GammaH_class_with_category||
-|#?????|Gamma_class_with_category||
+|#?????|Gamma0_class_with_category|group|
+|#?????|Gamma1_class_with_category|group|
+|#?????|GammaH_class_with_category|group|
+|#?????|Gamma_class_with_category|group|
|#?????|HammingCode_with_category||
|#25946|HyperellipticCurve_g2_padic_field_with_category||
|#25946|HyperellipticCurve_g2_rational_field_with_category||
@@ -38,25 +38,25 @@
|#25946|HyperellipticCurve_rational_field_with_category||
|#?????|IdealMonoid_c_with_category||
|#?????|InfinitePolynomialFunctor||
-|#?????|KleinFourGroup_with_category||
+|#?????|KleinFourGroup_with_category|group|
|#?????|LabelledBinaryTrees_with_category.element_class||
|#?????|MPolynomial_polydict||
-|#?????|MathieuGroup_with_category||
+|#?????|MathieuGroup_with_category|group|
|#?????|ModularSymbolsAmbient_wtk_eps_with_category||
|#?????|MultivariateProduct_with_category.element_class||
|#?????|NCPolynomialIdeal||
-|#?????|PGL_with_category||
-|#?????|PSL_with_category||
+|#?????|PGL_with_category|group|
+|#?????|PSL_with_category|group|
|#?????|Partitions_with_constraints_with_category||
|#?????|PolynomialQuotientRing_domain_with_category||
|#?????|PolynomialQuotientRing_field_with_category||
|#?????|PolynomialQuotientRing_generic_with_category||
-|#?????|PrimitiveGroup_with_category||
+|#?????|PrimitiveGroup_with_category|group|
|#?????|ProjectiveSpace_rational_field_with_category||
|#?????|ProjectiveSpace_ring_with_category||
|#?????|QuaternionFractionalIdeal_rational||
-|#?????|QuaternionGroup_with_category||
-|#?????|SL2Z_class_with_category||
+|#?????|QuaternionGroup_with_category|group|
+|#?????|SL2Z_class_with_category|group|
|#?????|ShiftedPrimedTableaux_shape_with_category.element_class||
|#?????|SimplicialSetMorphism||
|#?????|SmoothCharacterGroupQp_with_category||
@@ -65,8 +65,8 @@
|#?????|SubsetsSorted_with_category||
|#?????|Subsets_sk_with_category||
|#?????|SymbolicConstantsSubring_with_category||
-|#?????|SymmetricGroup_with_category||
-|#?????|TransitiveGroup_with_category||
+|#?????|SymmetricGroup_with_category|group|
+|#?????|TransitiveGroup_with_category|group|
|#?????|UnivariateProduct_with_category.element_class||
|#?????|UnramifiedExtensionFieldCappedRelative_with_category||
|#?????|UnramifiedExtensionRingCappedAbsolute_with_category||
Description changed:
---
+++
@@ -8,7 +8,7 @@
| **Ticket** | **Module** | Notes |
|:------------:|:----------------------:|:-------:|
|#25935|AbelianGroupWithValues_class_with_category|group|
-|#25935|AbelianGroup_class_with_category||
+|#25935|AbelianGroup_class_with_category|group|
|#?????|AlternatingGroup_with_category|group|
|#26058|BruhatTitsHarmonicCocycles_with_category||
|#?????|CartesianProduct_with_category.element_class||
@@ -59,9 +59,9 @@
|#?????|SL2Z_class_with_category|group|
|#?????|ShiftedPrimedTableaux_shape_with_category.element_class||
|#?????|SimplicialSetMorphism||
-|#?????|SmoothCharacterGroupQp_with_category||
-|#?????|SmoothCharacterGroupRamifiedQuadratic_with_category||
-|#?????|SmoothCharacterGroupUnramifiedQuadratic_with_category||
+|#?????|SmoothCharacterGroupQp_with_category|group|
+|#?????|SmoothCharacterGroupRamifiedQuadratic_with_category|group|
+|#?????|SmoothCharacterGroupUnramifiedQuadratic_with_category|group|
|#?????|SubsetsSorted_with_category||
|#?????|Subsets_sk_with_category||
|#?????|SymbolicConstantsSubring_with_category||
Description changed:
---
+++
@@ -15,7 +15,7 @@
|#25940|ChainComplex_class_with_category||
|#?????|ClassGroup_with_category|group|
|#?????|CompositeConstructionFunctor||
-|#?????|CrystalOfAlcovePaths_with_category.element_class||
+|#26061|CrystalOfAlcovePaths_with_category.element_class||
|#?????|CycleIndexSeriesRing_class_with_category||
|#?????|CyclicPermutationGroup_with_category|group|
|#?????|DiCyclicGroup_with_category|group|
Description changed:
---
+++
@@ -57,7 +57,7 @@
|#?????|QuaternionFractionalIdeal_rational||
|#?????|QuaternionGroup_with_category|group|
|#?????|SL2Z_class_with_category|group|
-|#?????|ShiftedPrimedTableaux_shape_with_category.element_class||
+|#26062|ShiftedPrimedTableaux_shape_with_category.element_class||
|#?????|SimplicialSetMorphism||
|#?????|SmoothCharacterGroupQp_with_category|group|
|#?????|SmoothCharacterGroupRamifiedQuadratic_with_category|group|
Description changed:
---
+++
@@ -31,7 +31,7 @@
|#?????|Gamma1_class_with_category|group|
|#?????|GammaH_class_with_category|group|
|#?????|Gamma_class_with_category|group|
-|#?????|HammingCode_with_category||
+|#26063|HammingCode_with_category||
|#25946|HyperellipticCurve_g2_padic_field_with_category||
|#25946|HyperellipticCurve_g2_rational_field_with_category||
|#25946|HyperellipticCurve_padic_field_with_category||
Description changed:
---
+++
@@ -64,7 +64,7 @@
|#?????|SmoothCharacterGroupUnramifiedQuadratic_with_category|group|
|#?????|SubsetsSorted_with_category||
|#?????|Subsets_sk_with_category||
-|#?????|SymbolicConstantsSubring_with_category||
+|#26064|SymbolicConstantsSubring_with_category||
|#?????|SymmetricGroup_with_category|group|
|#?????|TransitiveGroup_with_category|group|
|#?????|UnivariateProduct_with_category.element_class||
Description changed:
---
+++
@@ -16,7 +16,7 @@
|#?????|ClassGroup_with_category|group|
|#?????|CompositeConstructionFunctor||
|#26061|CrystalOfAlcovePaths_with_category.element_class||
-|#?????|CycleIndexSeriesRing_class_with_category||
+|#26087|CycleIndexSeriesRing_class_with_category||
|#?????|CyclicPermutationGroup_with_category|group|
|#?????|DiCyclicGroup_with_category|group|
|#?????|DihedralGroup_with_category|group|
Description changed:
---
+++
@@ -20,10 +20,10 @@
|#?????|CyclicPermutationGroup_with_category|group|
|#?????|DiCyclicGroup_with_category|group|
|#?????|DihedralGroup_with_category|group|
-|#?????|EisensteinExtensionFieldCappedRelative_with_category||
-|#?????|EisensteinExtensionRingCappedAbsolute_with_category||
-|#?????|EisensteinExtensionRingCappedRelative_with_category||
-|#?????|EisensteinExtensionRingFixedMod_with_category||
+|#26088|EisensteinExtensionFieldCappedRelative_with_category||
+|#26088|EisensteinExtensionRingCappedAbsolute_with_category||
+|#26088|EisensteinExtensionRingCappedRelative_with_category||
+|#26088|EisensteinExtensionRingFixedMod_with_category||
|#?????|FiniteWord_list||
|#?????|FiniteWord_str||
|#?????|FiniteWord_tuple||
@@ -68,10 +68,10 @@
|#?????|SymmetricGroup_with_category|group|
|#?????|TransitiveGroup_with_category|group|
|#?????|UnivariateProduct_with_category.element_class||
-|#?????|UnramifiedExtensionFieldCappedRelative_with_category||
-|#?????|UnramifiedExtensionRingCappedAbsolute_with_category||
-|#?????|UnramifiedExtensionRingCappedRelative_with_category||
-|#?????|UnramifiedExtensionRingFixedMod_with_category||
+|#26088|UnramifiedExtensionFieldCappedRelative_with_category||
+|#26088|UnramifiedExtensionRingCappedAbsolute_with_category||
+|#26088|UnramifiedExtensionRingCappedRelative_with_category||
+|#26088|UnramifiedExtensionRingFixedMod_with_category||
|#26058|pAdicAutomorphicForms_with_category||
|#?????|sage.rings.padics.qadic_flint_CR.qAdicCappedRelativeElement||
Description changed:
---
+++
@@ -59,9 +59,9 @@
|#?????|SL2Z_class_with_category|group|
|#26062|ShiftedPrimedTableaux_shape_with_category.element_class||
|#?????|SimplicialSetMorphism||
-|#?????|SmoothCharacterGroupQp_with_category|group|
-|#?????|SmoothCharacterGroupRamifiedQuadratic_with_category|group|
-|#?????|SmoothCharacterGroupUnramifiedQuadratic_with_category|group|
+|#26089|SmoothCharacterGroupQp_with_category|group|
+|#26089|SmoothCharacterGroupRamifiedQuadratic_with_category|group|
+|#26089|SmoothCharacterGroupUnramifiedQuadratic_with_category|group|
|#?????|SubsetsSorted_with_category||
|#?????|Subsets_sk_with_category||
|#26064|SymbolicConstantsSubring_with_category||
Description changed:
---
+++
@@ -52,8 +52,8 @@
|#?????|PolynomialQuotientRing_field_with_category||
|#?????|PolynomialQuotientRing_generic_with_category||
|#?????|PrimitiveGroup_with_category|group|
-|#?????|ProjectiveSpace_rational_field_with_category||
-|#?????|ProjectiveSpace_ring_with_category||
+|#26091|ProjectiveSpace_rational_field_with_category||
+|#26091|ProjectiveSpace_ring_with_category||
|#?????|QuaternionFractionalIdeal_rational||
|#?????|QuaternionGroup_with_category|group|
|#?????|SL2Z_class_with_category|group|
Description changed:
---
+++
@@ -62,8 +62,8 @@
|#26089|SmoothCharacterGroupQp_with_category|group|
|#26089|SmoothCharacterGroupRamifiedQuadratic_with_category|group|
|#26089|SmoothCharacterGroupUnramifiedQuadratic_with_category|group|
-|#?????|SubsetsSorted_with_category||
-|#?????|Subsets_sk_with_category||
+|#26092|SubsetsSorted_with_category||
+|#26092|Subsets_sk_with_category||
|#26064|SymbolicConstantsSubring_with_category||
|#?????|SymmetricGroup_with_category|group|
|#?????|TransitiveGroup_with_category|group|
Description changed:
---
+++
@@ -14,7 +14,7 @@
|#?????|CartesianProduct_with_category.element_class||
|#25940|ChainComplex_class_with_category||
|#?????|ClassGroup_with_category|group|
-|#?????|CompositeConstructionFunctor||
+|#?????|CompositeConstructionFunctor|functor|
|#26061|CrystalOfAlcovePaths_with_category.element_class||
|#26087|CycleIndexSeriesRing_class_with_category||
|#?????|CyclicPermutationGroup_with_category|group|
@@ -36,15 +36,15 @@
|#25946|HyperellipticCurve_g2_rational_field_with_category||
|#25946|HyperellipticCurve_padic_field_with_category||
|#25946|HyperellipticCurve_rational_field_with_category||
-|#?????|IdealMonoid_c_with_category||
-|#?????|InfinitePolynomialFunctor||
+|#?????|IdealMonoid_c_with_category|ideal|
+|#?????|InfinitePolynomialFunctor|functor|
|#?????|KleinFourGroup_with_category|group|
|#?????|LabelledBinaryTrees_with_category.element_class||
|#?????|MPolynomial_polydict||
|#?????|MathieuGroup_with_category|group|
|#?????|ModularSymbolsAmbient_wtk_eps_with_category||
|#?????|MultivariateProduct_with_category.element_class||
-|#?????|NCPolynomialIdeal||
+|#?????|NCPolynomialIdeal|ideal|
|#?????|PGL_with_category|group|
|#?????|PSL_with_category|group|
|#?????|Partitions_with_constraints_with_category||
@@ -54,7 +54,7 @@
|#?????|PrimitiveGroup_with_category|group|
|#26091|ProjectiveSpace_rational_field_with_category||
|#26091|ProjectiveSpace_ring_with_category||
-|#?????|QuaternionFractionalIdeal_rational||
+|#?????|QuaternionFractionalIdeal_rational|ideal|
|#?????|QuaternionGroup_with_category|group|
|#?????|SL2Z_class_with_category|group|
|#26062|ShiftedPrimedTableaux_shape_with_category.element_class||
Description changed:
---
+++
@@ -11,7 +11,7 @@
|#25935|AbelianGroup_class_with_category|group|
|#?????|AlternatingGroup_with_category|group|
|#26058|BruhatTitsHarmonicCocycles_with_category||
-|#?????|CartesianProduct_with_category.element_class||
+|#?????|CartesianProduct_with_category.element_class|product|
|#25940|ChainComplex_class_with_category||
|#?????|ClassGroup_with_category|group|
|#?????|CompositeConstructionFunctor|functor|
@@ -43,7 +43,7 @@
|#?????|MPolynomial_polydict||
|#?????|MathieuGroup_with_category|group|
|#?????|ModularSymbolsAmbient_wtk_eps_with_category||
-|#?????|MultivariateProduct_with_category.element_class||
+|#?????|MultivariateProduct_with_category.element_class|product|
|#?????|NCPolynomialIdeal|ideal|
|#?????|PGL_with_category|group|
|#?????|PSL_with_category|group|
@@ -67,7 +67,7 @@
|#26064|SymbolicConstantsSubring_with_category||
|#?????|SymmetricGroup_with_category|group|
|#?????|TransitiveGroup_with_category|group|
-|#?????|UnivariateProduct_with_category.element_class||
+|#?????|UnivariateProduct_with_category.element_class|product|
|#26088|UnramifiedExtensionFieldCappedRelative_with_category||
|#26088|UnramifiedExtensionRingCappedAbsolute_with_category||
|#26088|UnramifiedExtensionRingCappedRelative_with_category||
Description changed:
---
+++
@@ -42,7 +42,7 @@
|#?????|LabelledBinaryTrees_with_category.element_class||
|#?????|MPolynomial_polydict||
|#?????|MathieuGroup_with_category|group|
-|#?????|ModularSymbolsAmbient_wtk_eps_with_category||
+|#26093|ModularSymbolsAmbient_wtk_eps_with_category||
|#?????|MultivariateProduct_with_category.element_class|product|
|#?????|NCPolynomialIdeal|ideal|
|#?????|PGL_with_category|group|
Description changed:
---
+++
@@ -36,7 +36,7 @@
|#25946|HyperellipticCurve_g2_rational_field_with_category||
|#25946|HyperellipticCurve_padic_field_with_category||
|#25946|HyperellipticCurve_rational_field_with_category||
-|#?????|IdealMonoid_c_with_category|ideal|
+|#?????|IdealMonoid_c_with_category|ideal, maybe fixed in #26094|
|#?????|InfinitePolynomialFunctor|functor|
|#?????|KleinFourGroup_with_category|group|
|#?????|LabelledBinaryTrees_with_category.element_class||
@@ -44,7 +44,7 @@
|#?????|MathieuGroup_with_category|group|
|#26093|ModularSymbolsAmbient_wtk_eps_with_category||
|#?????|MultivariateProduct_with_category.element_class|product|
-|#?????|NCPolynomialIdeal|ideal|
+|#26094|NCPolynomialIdeal|ideal|
|#?????|PGL_with_category|group|
|#?????|PSL_with_category|group|
|#?????|Partitions_with_constraints_with_category||
Description changed:
---
+++
@@ -52,8 +52,8 @@
|#?????|PolynomialQuotientRing_field_with_category||
|#?????|PolynomialQuotientRing_generic_with_category||
|#?????|PrimitiveGroup_with_category|group|
-|#26091|ProjectiveSpace_rational_field_with_category||
-|#26091|ProjectiveSpace_ring_with_category||
+|#26091|ProjectiveSpace_rational_field_with_category|or #23807|
+|#26091|ProjectiveSpace_ring_with_category|or #23807|
|#?????|QuaternionFractionalIdeal_rational|ideal|
|#?????|QuaternionGroup_with_category|group|
|#?????|SL2Z_class_with_category|group|
Description changed:
---
+++
@@ -11,7 +11,7 @@
|#25935|AbelianGroup_class_with_category|group|
|#?????|AlternatingGroup_with_category|group|
|#26058|BruhatTitsHarmonicCocycles_with_category||
-|#?????|CartesianProduct_with_category.element_class|product|
+|#26145|CartesianProduct_with_category.element_class|product|
|#25940|ChainComplex_class_with_category||
|#?????|ClassGroup_with_category|group|
|#?????|CompositeConstructionFunctor|functor|
Description changed:
---
+++
@@ -13,7 +13,7 @@
|#26058|BruhatTitsHarmonicCocycles_with_category||
|#26145|CartesianProduct_with_category.element_class|product|
|#25940|ChainComplex_class_with_category||
-|#?????|ClassGroup_with_category|group|
+|#25935|ClassGroup_with_category|group|
|#?????|CompositeConstructionFunctor|functor|
|#26061|CrystalOfAlcovePaths_with_category.element_class||
|#26087|CycleIndexSeriesRing_class_with_category||
Description changed:
---
+++
@@ -36,7 +36,7 @@
|#25946|HyperellipticCurve_g2_rational_field_with_category||
|#25946|HyperellipticCurve_padic_field_with_category||
|#25946|HyperellipticCurve_rational_field_with_category||
-|#?????|IdealMonoid_c_with_category|ideal, maybe fixed in #26094|
+|#26094|IdealMonoid_c_with_category|ideal, maybe fixed in #26094|
|#?????|InfinitePolynomialFunctor|functor|
|#?????|KleinFourGroup_with_category|group|
|#?????|LabelledBinaryTrees_with_category.element_class||
Description changed:
Description changed:
---
+++
@@ -47,7 +47,7 @@
|#26094|NCPolynomialIdeal|ideal|
|#?????|PGL_with_category|group|
|#?????|PSL_with_category|group|
-|#?????|Partitions_with_constraints_with_category||
+|#26158|Partitions_with_constraints_with_category||
|#?????|PolynomialQuotientRing_domain_with_category||
|#?????|PolynomialQuotientRing_field_with_category||
|#?????|PolynomialQuotientRing_generic_with_category||
Description changed:
---
+++
@@ -9,7 +9,7 @@
|:------------:|:----------------------:|:-------:|
|#25935|AbelianGroupWithValues_class_with_category|group|
|#25935|AbelianGroup_class_with_category|group|
-|#?????|AlternatingGroup_with_category|group|
+|#26162|AlternatingGroup_with_category|group|
|#26058|BruhatTitsHarmonicCocycles_with_category||
|#26145|CartesianProduct_with_category.element_class|product|
|#25940|ChainComplex_class_with_category||
@@ -17,9 +17,9 @@
|#?????|CompositeConstructionFunctor|functor|
|#26061|CrystalOfAlcovePaths_with_category.element_class||
|#26087|CycleIndexSeriesRing_class_with_category||
-|#?????|CyclicPermutationGroup_with_category|group|
-|#?????|DiCyclicGroup_with_category|group|
-|#?????|DihedralGroup_with_category|group|
+|#26162|CyclicPermutationGroup_with_category|group|
+|#26162|DiCyclicGroup_with_category|group|
+|#26162|DihedralGroup_with_category|group|
|#26088|EisensteinExtensionFieldCappedRelative_with_category||
|#26088|EisensteinExtensionRingCappedAbsolute_with_category||
|#26088|EisensteinExtensionRingCappedRelative_with_category||
@@ -38,10 +38,10 @@
|#25946|HyperellipticCurve_rational_field_with_category||
|#26094|IdealMonoid_c_with_category|ideal, maybe fixed in #26094|
|#?????|InfinitePolynomialFunctor|functor|
-|#?????|KleinFourGroup_with_category|group|
+|#26162|KleinFourGroup_with_category|group|
|#?????|LabelledBinaryTrees_with_category.element_class||
|#?????|MPolynomial_polydict||
-|#?????|MathieuGroup_with_category|group|
+|#26162|MathieuGroup_with_category|group|
|#26093|ModularSymbolsAmbient_wtk_eps_with_category||
|#?????|MultivariateProduct_with_category.element_class|product|
|#26094|NCPolynomialIdeal|ideal|
@@ -65,8 +65,8 @@
|#26092|SubsetsSorted_with_category||
|#26092|Subsets_sk_with_category||
|#26064|SymbolicConstantsSubring_with_category||
-|#?????|SymmetricGroup_with_category|group|
-|#?????|TransitiveGroup_with_category|group|
+|#26162|SymmetricGroup_with_category|group|
+|#26162|TransitiveGroup_with_category|group|
|#?????|UnivariateProduct_with_category.element_class|product|
|#26088|UnramifiedExtensionFieldCappedRelative_with_category||
|#26088|UnramifiedExtensionRingCappedAbsolute_with_category||
Description changed:
Description changed:
---
+++
@@ -55,7 +55,7 @@
|#26091|ProjectiveSpace_rational_field_with_category|or #23807|
|#26091|ProjectiveSpace_ring_with_category|or #23807|
|#?????|QuaternionFractionalIdeal_rational|ideal|
-|#?????|QuaternionGroup_with_category|group|
+|#26162|QuaternionGroup_with_category|group|
|#?????|SL2Z_class_with_category|group|
|#26062|ShiftedPrimedTableaux_shape_with_category.element_class||
|#?????|SimplicialSetMorphism||
Description changed:
---
+++
@@ -54,7 +54,7 @@
|#?????|PrimitiveGroup_with_category|group|
|#26091|ProjectiveSpace_rational_field_with_category|or #23807|
|#26091|ProjectiveSpace_ring_with_category|or #23807|
-|#?????|QuaternionFractionalIdeal_rational|ideal|
+|#26163|QuaternionFractionalIdeal_rational|ideal|
|#26162|QuaternionGroup_with_category|group|
|#?????|SL2Z_class_with_category|group|
|#26062|ShiftedPrimedTableaux_shape_with_category.element_class||
This is potentially a large-scale problem, as can be seen using
Remains in 8.4.b5
Remains in 8.4.b7
CC: @jdemeyer @tscrim @kiwifb @embray @vinklein @zerline
Component: python3
Issue created by migration from https://trac.sagemath.org/ticket/24551