Skip to content

Commit 1f65d4b

Browse files
committed
Replace all :trac: with :issue:
1 parent 30b3d78 commit 1f65d4b

File tree

957 files changed

+3968
-3968
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

957 files changed

+3968
-3968
lines changed

src/sage/algebras/clifford_algebra.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -987,7 +987,7 @@ def lift_module_morphism(self, m, names=None):
987987
TESTS:
988988
989989
Check that the resulting morphism knows it is for
990-
finite-dimensional algebras (:trac:`25339`)::
990+
finite-dimensional algebras (:issue:`25339`)::
991991
992992
sage: Q = QuadraticForm(ZZ, 3, [1,2,3,4,5,6])
993993
sage: Cl.<x,y,z> = CliffordAlgebra(Q)
@@ -1071,7 +1071,7 @@ def lift_isometry(self, m, names=None):
10711071
TESTS:
10721072
10731073
Check that the resulting morphism knows it is for
1074-
finite-dimensional algebras (:trac:`25339`)::
1074+
finite-dimensional algebras (:issue:`25339`)::
10751075
10761076
sage: Q = QuadraticForm(ZZ, 3, [1,2,3,4,5,6])
10771077
sage: Cl.<x,y,z> = CliffordAlgebra(Q)
@@ -1553,7 +1553,7 @@ def lift_morphism(self, phi, names=None):
15531553
TESTS:
15541554
15551555
Check that the resulting morphism knows it is for
1556-
finite-dimensional algebras (:trac:`25339`)::
1556+
finite-dimensional algebras (:issue:`25339`)::
15571557
15581558
sage: E = ExteriorAlgebra(ZZ, 'e', 3)
15591559
sage: T = jordan_block(0, 2).block_sum(jordan_block(0, 1))
@@ -1772,7 +1772,7 @@ def interior_product_on_basis(self, a, b):
17721772
sage: E.interior_product_on_basis(k[7], k[5])
17731773
-y
17741774
1775-
Check :trac:`34694`::
1775+
Check :issue:`34694`::
17761776
17771777
sage: # needs sage.symbolic
17781778
sage: E = ExteriorAlgebra(SR,'e',3)
@@ -2042,7 +2042,7 @@ def __init__(self, E, s_coeff):
20422042
sage: TestSuite(par).run(skip="_test_pickling")
20432043
20442044
Check that it knows it is a finite-dimensional algebra
2045-
morphism (:trac:`25339`):;
2045+
morphism (:issue:`25339`):;
20462046
20472047
sage: par.category_for()
20482048
Category of finite dimensional algebras with basis over Rational Field

src/sage/algebras/clifford_algebra_element.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ cdef class CliffordAlgebraElement(IndexedFreeModuleElement):
9090
sage: 0*x
9191
0
9292
93-
:trac:`34707`::
93+
:issue:`34707`::
9494
9595
sage: Q = QuadraticForm(QQ, 2, [0,5,0])
9696
sage: C.<p,q> = CliffordAlgebra(Q)

src/sage/algebras/cluster_algebra.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1182,7 +1182,7 @@ def _mutated_F(self, k, old_g_vector):
11821182
sage: S._mutated_F(0, (1, 0))
11831183
u0 + 1
11841184
1185-
Check that :trac:`28176` is fixed::
1185+
Check that :issue:`28176` is fixed::
11861186
11871187
sage: A = ClusterAlgebra(matrix([[0,2],[-2,0]]))
11881188
sage: S = A.initial_seed()
@@ -1280,7 +1280,7 @@ def __classcall__(self, data, **kwargs):
12801280
A Cluster Algebra with cluster variables x0, x1 and no coefficients
12811281
over Integer Ring
12821282
1283-
Check that :trac:`28176` is fixed::
1283+
Check that :issue:`28176` is fixed::
12841284
12851285
sage: A1 = ClusterAlgebra(['A',2])
12861286
sage: A2 = ClusterAlgebra(['A',2], cluster_variable_prefix='x')
@@ -1503,7 +1503,7 @@ def _coerce_map_from_(self, other):
15031503
sage: S.cluster_variable(seq2[-1]) == g(A3.cluster_variable((1, -2, 2)))
15041504
True
15051505
1506-
Check that :trac:`23654` is fixed::
1506+
Check that :issue:`23654` is fixed::
15071507
15081508
sage: A = ClusterAlgebra(['A',2])
15091509
sage: AA = ClusterAlgebra(['A',3])
@@ -2443,7 +2443,7 @@ def mutate_initial(self, direction, **kwargs):
24432443
sage: A.mutate_initial([0,1]*10, mutating_F=False)
24442444
A Cluster Algebra with cluster variables x20, x21 and no coefficients over Integer Ring
24452445
2446-
Check that :trac:`28176` is fixed::
2446+
Check that :issue:`28176` is fixed::
24472447
24482448
sage: A = ClusterAlgebra( matrix(5,[0,1,-1,1,-1]), cluster_variable_names=['p13'], coefficient_names=['p12','p23','p34','p41']); A
24492449
A Cluster Algebra with cluster variable p13 and coefficients p12, p23, p34, p41 over Integer Ring

src/sage/algebras/commutative_dga.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def __classcall__(cls, A, im_gens):
179179
sage: d1 is d2
180180
True
181181
182-
Check that :trac:`34818` is solved::
182+
Check that :issue:`34818` is solved::
183183
184184
sage: A.<a,b,x,u> = GradedCommutativeAlgebra(QQ,degrees=(2,2,3,3))
185185
sage: A = A.quotient(A.ideal([a*u,b*u,x*u]))
@@ -638,7 +638,7 @@ def differential_matrix_multigraded(self, n, total=False):
638638
639639
Rename this to ``differential_matrix`` once inheritance,
640640
overriding, and cached methods work together better. See
641-
:trac:`17201`.
641+
:issue:`17201`.
642642
643643
INPUT:
644644
@@ -954,7 +954,7 @@ def __classcall__(cls, base, names=None, degrees=None, R=None, I=None, category=
954954
sage: A1 is A2
955955
True
956956
957-
Testing the single generator case (:trac:`25276`)::
957+
Testing the single generator case (:issue:`25276`)::
958958
959959
sage: A3.<z> = GradedCommutativeAlgebra(QQ)
960960
sage: z**2 == 0
@@ -2338,7 +2338,7 @@ def cohomology(self, n):
23382338
23392339
TESTS:
23402340
2341-
Check that the issue discovered in :trac:`28155` is solved::
2341+
Check that the issue discovered in :issue:`28155` is solved::
23422342
23432343
sage: A.<e1,e2,e3,e4,e5> = GradedCommutativeAlgebra(QQ)
23442344
sage: B = A.cdg_algebra({e5:e1*e2+e3*e4})
@@ -3111,7 +3111,7 @@ def cohomology_class(self):
31113111
sage: b.cohomology_class().parent()
31123112
Free module generated by {} over Rational Field
31133113
3114-
Check that the issue detected in :trac:`28155` is solved::
3114+
Check that the issue detected in :issue:`28155` is solved::
31153115
31163116
sage: A.<e1,e2,e3,e4,e5> = GradedCommutativeAlgebra(QQ)
31173117
sage: B = A.cdg_algebra({e5: e1*e2+e3*e4})

src/sage/algebras/finite_dimensional_algebras/finite_dimensional_algebra_element.pyx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ cdef class FiniteDimensionalAlgebraElement(AlgebraElement):
222222
sage: B(5).vector()
223223
(5, 0, 5)
224224
"""
225-
# By :trac:`23707`, ``self._vector`` now is a single row matrix,
225+
# By :issue:`23707`, ``self._vector`` now is a single row matrix,
226226
# not a vector, which results in a speed-up.
227227
# For backwards compatibility, this method still returns a vector.
228228
return self._vector[0]
@@ -384,7 +384,7 @@ cdef class FiniteDimensionalAlgebraElement(AlgebraElement):
384384
sage: B(1) != 0
385385
True
386386
387-
By :trac:`23707`, an ordering is defined on finite-dimensional algebras, corresponding
387+
By :issue:`23707`, an ordering is defined on finite-dimensional algebras, corresponding
388388
to the ordering of the defining vectors; this may be handy if the vector space basis of
389389
the algebra corresponds to the standard monomials of the relation ideal, when
390390
the algebra is considered as a quotient of a path algebra. ::

src/sage/algebras/free_algebra.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
Free Algebra on 3 generators (x, y, z) over Integer Ring
2828
2929
The above free algebra is based on a generic implementation. By
30-
:trac:`7797`, there is a different implementation
30+
:issue:`7797`, there is a different implementation
3131
:class:`~sage.algebras.letterplace.free_algebra_letterplace.FreeAlgebra_letterplace`
3232
based on Singular's letterplace rings. It is currently restricted to
3333
weighted homogeneous elements and is therefore not the default. But the
@@ -53,7 +53,7 @@
5353
True
5454
5555
Positive integral degree weights for the letterplace implementation
56-
was introduced in :trac:`7797`::
56+
was introduced in :issue:`7797`::
5757
5858
sage: # needs sage.libs.singular
5959
sage: F.<x,y,z> = FreeAlgebra(QQ, implementation='letterplace', degrees=[2,1,3])
@@ -213,7 +213,7 @@ class FreeAlgebraFactory(UniqueFactory):
213213
True
214214
sage: TestSuite(F).run()
215215
216-
By :trac:`7797`, we provide a different implementation of free
216+
By :issue:`7797`, we provide a different implementation of free
217217
algebras, based on Singular's "letterplace rings". Our letterplace
218218
wrapper allows for choosing positive integral degree weights for the
219219
generators of the free algebra. However, only (weighted) homogeneous
@@ -449,7 +449,7 @@ class FreeAlgebra_generic(CombinatorialFreeModule, Algebra):
449449
sage: F == FreeAlgebra(QQ,3,'y')
450450
False
451451
452-
Note that since :trac:`7797` there is a different
452+
Note that since :issue:`7797` there is a different
453453
implementation of free algebras. Two corresponding free
454454
algebras in different implementations are not equal, but there
455455
is a coercion.
@@ -613,7 +613,7 @@ def _element_constructor_(self, x):
613613
sage: F.1 + (z+1)*L.2
614614
b + (z+1)*c
615615
616-
Check that :trac:`15169` is fixed::
616+
Check that :issue:`15169` is fixed::
617617
618618
sage: A.<x> = FreeAlgebra(CC)
619619
sage: A(2)
@@ -1068,7 +1068,7 @@ def lie_polynomial(self, w):
10681068
sage: F.lie_polynomial('')
10691069
1
10701070
1071-
We check that :trac:`22251` is fixed::
1071+
We check that :issue:`22251` is fixed::
10721072
10731073
sage: F.lie_polynomial(x*y*z)
10741074
x*y*z - x*z*y - y*z*x + z*y*x

src/sage/algebras/free_algebra_element.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def _repr_(self):
9292
sage: repr(-x+3*y*z) # indirect doctest
9393
'-x + 3*y*z'
9494
95-
Github issue :trac:`11068` enables the use of local variable names::
95+
Github issue :issue:`11068` enables the use of local variable names::
9696
9797
sage: from sage.structure.parent_gens import localvars
9898
sage: with localvars(A, ['a','b','c']):

src/sage/algebras/fusion_rings/fast_parallel_fusion_ring_braid_repn.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ cpdef _unflatten_entries(fusion_ring, list entries) noexcept:
311311
coefficients representation.
312312
313313
Used to circumvent pickling issue introduced by PARI settigs
314-
in :trac:`30537`.
314+
in :issue:`30537`.
315315
316316
EXAMPLES::
317317

src/sage/algebras/fusion_rings/poly_tup_engine.pyx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ cdef inline tuple _flatten_coeffs(tuple eq_tup) noexcept:
8080
coefficients.
8181
8282
This is used to avoid pickling cyclotomic coefficient objects, which fails
83-
with new PARI settings introduced in :trac:`30537`.
83+
with new PARI settings introduced in :issue:`30537`.
8484
"""
8585
cdef list flat = []
8686
cdef NumberFieldElement_absolute cyc_coeff
@@ -94,7 +94,7 @@ cpdef tuple _unflatten_coeffs(field, tuple eq_tup) noexcept:
9494
coefficients representation.
9595
9696
Used to circumvent pickling issue introduced by PARI settigs
97-
in :trac:`30537`.
97+
in :issue:`30537`.
9898
9999
EXAMPLES::
100100

src/sage/algebras/group_algebra.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ def _coerce_map_from_(self, S):
185185
sage: [a, b] = kH.gens()
186186
sage: x = kH(a) + kH(b) + kH.one(); print(x)
187187
() + (5,6,7)(12,14,18) + (1,2)(3,4)
188-
sage: x*x #checks :trac:34292
188+
sage: x*x #checks :issue:34292
189189
(5,7,6)(12,18,14)
190190
191191
As expected, there is no coercion when restricting the

0 commit comments

Comments
 (0)