Skip to content

Commit 18c3c71

Browse files
committed
Another replacement
1 parent 6066257 commit 18c3c71

File tree

104 files changed

+189
-189
lines changed

Some content is hidden

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

104 files changed

+189
-189
lines changed

build/bin/sage-dist-helpers

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
# (Linux only--no-op on other platforms.) Check shared libraries loaded by
9999
# EXECUTABLE (may be a program or another library) for a library starting
100100
# with SONAME, and if found appends SONAME to the LD_PRELOAD environment
101-
# variable. See https://trac.sagemath.org/24885.
101+
# variable. See https://github.com/sagemath/sage/issues/24885.
102102

103103
set -o allexport
104104

build/pkgs/giac/checksums.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ tarball=giac-VERSION.tar.bz2
22
sha1=78c15badd19b49b7d111ac204b611a4378ce3d15
33
md5=8fbd43a5c60848b6813b7fc8698a0199
44
cksum=1923149665
5-
upstream_url=https://trac.sagemath.org/raw-attachment/ticket/31563/giac-VERSION.tar.bz2
5+
upstream_url=https://github.com/sagemath/sage/issues/raw-attachment/ticket/31563/giac-VERSION.tar.bz2

build/pkgs/iml/checksums.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ tarball=iml-VERSION.tar.bz2
22
sha1=8aba468a62e6fb0584be9b014350b734663c0670
33
md5=a8083e70c0c4378f69eb772c1eeed6f0
44
cksum=2793221462
5-
upstream_url=https://trac.sagemath.org/raw-attachment/ticket/33195/iml-1.0.4p2.tar.bz2
5+
upstream_url=https://github.com/sagemath/sage/issues/raw-attachment/ticket/33195/iml-1.0.4p2.tar.bz2

build/pkgs/mathjax/checksums.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ tarball=mathjax-VERSION.tar.gz
22
sha1=3f7abecf8cacd7f5d7f9ae6c3baca7739101c17d
33
md5=ba1a65ab58aaad6c84f39735c619bc34
44
cksum=1142131398
5-
upstream_url=https://trac.sagemath.org/raw-attachment/ticket/25833/mathjax-3.2.0.tar.gz
5+
upstream_url=https://github.com/sagemath/sage/issues/raw-attachment/ticket/25833/mathjax-3.2.0.tar.gz

build/pkgs/msolve/checksums.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ tarball=msolve-VERSION.tar.gz
22
sha1=5b227de8b222bfe8d143e1d7ea77ad71cd209dc8
33
md5=2f34bd9ccb089688ae169201281108dc
44
cksum=941373315
5-
upstream_url=https://trac.sagemath.org/raw-attachment/ticket/31664/msolve-VERSION.tar.gz
5+
upstream_url=https://github.com/sagemath/sage/issues/raw-attachment/ticket/31664/msolve-VERSION.tar.gz

src/doc/en/constructions/contributions.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ documentation were made by Gary Zablackis.
3636
[SAGE] {SJ} William Stein, David Joyner, SAGE: System for Algebra
3737
and Geometry Experimentation, Comm. Computer Algebra 39(2005)61-64.
3838
(SIGSAM Bull. June 2005) https://sagemath.org/
39-
https://trac.sagemath.org/
39+
https://github.com/sagemath/sage/issues/

src/doc/en/developer/git_trac.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ to the Sage directory and tell ``git trac`` about your trac account::
7676

7777
[user@localhost sage]$ git trac config --user USERNAME --pass 'PASSWORD'
7878
Trac xmlrpc URL:
79-
https://trac.sagemath.org/xmlrpc (anonymous)
80-
https://trac.sagemath.org/login/xmlrpc (authenticated)
79+
https://github.com/sagemath/sage/issues/xmlrpc (anonymous)
80+
https://github.com/sagemath/sage/issues/login/xmlrpc (authenticated)
8181
realm sage.math.washington.edu
8282
Username: USERNAME
8383
Password: PASSWORD
@@ -158,7 +158,7 @@ want to add it to Sage. You would first open a ticket for that::
158158
[user@localhost sage]$ git trac create 'Last Twin Prime'
159159
Remote branch: u/user/last_twin_prime
160160
Newly-created ticket number: 12345
161-
Ticket URL: https://trac.sagemath.org/12345
161+
Ticket URL: https://github.com/sagemath/sage/issues/12345
162162
Local branch: t/12345/last_twin_prime
163163

164164
This will create a new trac ticket titled "Last Twin Prime" with a

src/sage/algebras/quatalg/quaternion_algebra.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2197,7 +2197,7 @@ def quaternion_order(self):
21972197
sage: R = QuaternionAlgebra(-11,-1).maximal_order()
21982198
sage: R.unit_ideal().quaternion_order() is R
21992199
doctest:...: DeprecationWarning: quaternion_order() is deprecated, please use left_order() or right_order()
2200-
See https://trac.sagemath.org/31583 for details.
2200+
See https://github.com/sagemath/sage/issues/31583 for details.
22012201
True
22022202
"""
22032203
from sage.misc.superseded import deprecation
@@ -2229,7 +2229,7 @@ def ring(self):
22292229
sage: R = QuaternionAlgebra(-11,-1).maximal_order()
22302230
sage: R.unit_ideal().ring() is R
22312231
doctest:...: DeprecationWarning: ring() will return the quaternion algebra in the future, please use left_order() or right_order()
2232-
See https://trac.sagemath.org/31583 for details.
2232+
See https://github.com/sagemath/sage/issues/31583 for details.
22332233
True
22342234
"""
22352235
from sage.misc.superseded import deprecation

src/sage/categories/finite_complex_reflection_groups.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -795,7 +795,7 @@ def elements_below_coxeter_element(self, c=None):
795795
sage: W = CoxeterGroup(['A', 3])
796796
sage: len(list(W.elements_below_coxeter_element()))
797797
doctest:...: DeprecationWarning: The method elements_below_coxeter_element is deprecated. Please use absolute_order_ideal instead.
798-
See https://trac.sagemath.org/27924 for details.
798+
See https://github.com/sagemath/sage/issues/27924 for details.
799799
14
800800
"""
801801
from sage.misc.superseded import deprecation

src/sage/categories/modules.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -973,6 +973,6 @@ def tensor_factors(self):
973973
sage: M.construction()
974974
doctest:warning...
975975
DeprecationWarning: implementations of Modules().TensorProducts() now must define the method tensor_factors
976-
See https://trac.sagemath.org/34393 for details.
976+
See https://github.com/sagemath/sage/issues/34393 for details.
977977
(VectorFunctor, Integer Ring)
978978
"""

src/sage/combinat/combinat.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2528,7 +2528,7 @@ def cardinality(self) -> Integer | infinity:
25282528
sage: R = InfiniteAbstractCombinatorialClass()
25292529
doctest:warning...
25302530
DeprecationWarning: this class is deprecated, do not use
2531-
See https://trac.sagemath.org/31545 for details.
2531+
See https://github.com/sagemath/sage/issues/31545 for details.
25322532
25332533
sage: R.cardinality()
25342534
+Infinity

src/sage/combinat/permutation.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -7225,7 +7225,7 @@ def has_left_descent(self, i, mult=None):
72257225
doctest:warning
72267226
...
72277227
DeprecationWarning: The mult option is deprecated and ignored.
7228-
See https://trac.sagemath.org/27467 for details.
7228+
See https://github.com/sagemath/sage/issues/27467 for details.
72297229
True
72307230
sage: x.has_left_descent(2, mult='r2l')
72317231
True
@@ -7279,7 +7279,7 @@ def has_right_descent(self, i, mult=None):
72797279
doctest:warning
72807280
...
72817281
DeprecationWarning: The mult option is deprecated and ignored.
7282-
See https://trac.sagemath.org/27467 for details.
7282+
See https://github.com/sagemath/sage/issues/27467 for details.
72837283
True
72847284
sage: x.has_right_descent(3, mult='r2l')
72857285
True
@@ -9040,7 +9040,7 @@ def a(self):
90409040
sage: P = Permutations(3, avoiding=[[2,1,3],[1,2,3]])
90419041
sage: P.a
90429042
doctest:...: DeprecationWarning: The attribute a for the list of patterns to avoid is deprecated, use the method patterns instead.
9043-
See https://trac.sagemath.org/26810 for details.
9043+
See https://github.com/sagemath/sage/issues/26810 for details.
90449044
([2, 1, 3], [1, 2, 3])
90459045
"""
90469046
from sage.misc.superseded import deprecation

src/sage/combinat/set_partition.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2950,7 +2950,7 @@ def parts(self):
29502950
29512951
sage: SetPartitions(5, [2,2,1]).parts
29522952
doctest:...: DeprecationWarning: The attribute parts for the partition of block sizes is deprecated, use the method shape instead.
2953-
See https://trac.sagemath.org/25865 for details.
2953+
See https://github.com/sagemath/sage/issues/25865 for details.
29542954
[2, 2, 1]
29552955
"""
29562956
from sage.misc.superseded import deprecation
@@ -3201,7 +3201,7 @@ def n(self):
32013201
32023202
sage: SetPartitions(5, 3).n
32033203
doctest:...: DeprecationWarning: The attribute n for the number of blocks is deprecated, use the method number_of_blocks instead.
3204-
See https://trac.sagemath.org/25462 for details.
3204+
See https://github.com/sagemath/sage/issues/25462 for details.
32053205
3
32063206
"""
32073207
from sage.misc.superseded import deprecation

src/sage/combinat/words/finite_word.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -4234,7 +4234,7 @@ def _pos_in(self, other, p):
42344234
...
42354235
DeprecationWarning: f._pos_in(w, start) is deprecated.
42364236
Use w.first_occurrence(f, start) instead.
4237-
See https://trac.sagemath.org/30187 for details.
4237+
See https://github.com/sagemath/sage/issues/30187 for details.
42384238
2
42394239
sage: Word('12')._pos_in(Word('131231'), 3) is None
42404240
True
@@ -4271,7 +4271,7 @@ def first_pos_in(self, other):
42714271
...
42724272
DeprecationWarning: f.first_pos_in(w) is deprecated.
42734273
Use w.first_occurrence(f) instead.
4274-
See https://trac.sagemath.org/30187 for details.
4274+
See https://github.com/sagemath/sage/issues/30187 for details.
42754275
2
42764276
sage: Word('32').first_pos_in(Word('131231')) is None
42774277
True
@@ -4499,7 +4499,7 @@ def factor_occurrences_in(self, other):
44994499
...
45004500
DeprecationWarning: f.factor_occurrences_in(w) is deprecated.
45014501
Use w.factor_occurrences_iterator(f) instead.
4502-
See https://trac.sagemath.org/30187 for details.
4502+
See https://github.com/sagemath/sage/issues/30187 for details.
45034503
[0, 2, 8]
45044504
"""
45054505
from sage.misc.superseded import deprecation
@@ -4525,7 +4525,7 @@ def nb_factor_occurrences_in(self, other):
45254525
...
45264526
DeprecationWarning: f.nb_factor_occurrences_in(w) is deprecated.
45274527
Use w.number_of_factor_occurrences(f) instead.
4528-
See https://trac.sagemath.org/30187 for details.
4528+
See https://github.com/sagemath/sage/issues/30187 for details.
45294529
4
45304530
sage: Word('321').nb_factor_occurrences_in(Word('11233231231311233221123'))
45314531
0
@@ -4570,7 +4570,7 @@ def nb_subword_occurrences_in(self, other):
45704570
...
45714571
DeprecationWarning: f.nb_subword_occurrences_in(w) is deprecated.
45724572
Use w.number_of_subword_occurrences(f) instead.
4573-
See https://trac.sagemath.org/30187 for details.
4573+
See https://github.com/sagemath/sage/issues/30187 for details.
45744574
2604124996
45754575
45764576
sage: u = Word([0,1,0,1,1,0])

src/sage/combinat/words/morphism.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -772,7 +772,7 @@ def __call__(self, w, order=1, datatype=None):
772772
doctest:warning
773773
...
774774
DeprecationWarning: the "datatype" argument is deprecated
775-
See https://trac.sagemath.org/26307 for details.
775+
See https://github.com/sagemath/sage/issues/26307 for details.
776776
777777
sage: type(w)
778778
<class 'sage.combinat.words.word.FiniteWord_list'>
@@ -793,7 +793,7 @@ def __call__(self, w, order=1, datatype=None):
793793
doctest:warning
794794
...
795795
DeprecationWarning: the "datatype" argument is deprecated
796-
See https://trac.sagemath.org/26307 for details.
796+
See https://github.com/sagemath/sage/issues/26307 for details.
797797
sage: type(w)
798798
<class 'sage.combinat.words.word.FiniteWord_list'>
799799
sage: w = m([0],4,datatype='str')

src/sage/crypto/boolean_function.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -942,7 +942,7 @@ cdef class BooleanFunction(SageObject):
942942
doctest:warning
943943
...
944944
DeprecationWarning: absolut_indicator is deprecated. Please use absolute_indicator instead.
945-
See https://trac.sagemath.org/28001 for details.
945+
See https://github.com/sagemath/sage/issues/28001 for details.
946946
32
947947
"""
948948
cdef long a

src/sage/databases/oeis.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,7 @@ def _imaginary_entry(self, ident='A999999', keywords=''):
592592
'%D ' + ident + ' Lewis Carroll, The Hunting of the Snark.\n'
593593
'%D ' + ident + ' Deep Thought, The Answer to the Ultimate Question of Life, The Universe, and Everything.\n'
594594
'%H ' + ident + ' Wikipedia, <a href="https://en.wikipedia.org/wiki/42_(number)">42 (number)</a>\n'
595-
'%H ' + ident + ' See. also <a href="https://trac.sagemath.org/sage_trac/ticket/42">trac ticket #42</a>\n'
595+
'%H ' + ident + ' See. also <a href="https://github.com/sagemath/sage/issues/sage_trac/ticket/42">trac ticket #42</a>\n'
596596
'%H ' + ident + ' Do not confuse with the sequence <a href="/A000042">A000042</a> or the sequence <a href="/A000024">A000024</a>\n'
597597
'%H ' + ident + ' The string http://42.com is not a link.\n'
598598
'%F ' + ident + ' For n big enough, s(n+1) - s(n) = 0.\n'
@@ -1556,7 +1556,7 @@ def links(self, browse=None, format='guess'):
15561556
15571557
sage: HTML = s.links(format="html"); HTML
15581558
0: Wikipedia, <a href="https://en.wikipedia.org/wiki/42_(number)">42 (number)</a>
1559-
1: See. also <a href="https://trac.sagemath.org/sage_trac/ticket/42">trac ticket #42</a>
1559+
1: See. also <a href="https://github.com/sagemath/sage/issues/sage_trac/ticket/42">trac ticket #42</a>
15601560
...
15611561
sage: type(HTML)
15621562
<class 'sage.misc.html.HtmlFragment'>

src/sage/ext/memory_allocator.pxd

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ cdef class MemoryAllocator:
6565
....: assert <size_t> ptr == (<size_t> ptr) & ~(2**i-1)
6666
....: ''')
6767
doctest:...: DeprecationWarning: this class is deprecated; use the class from the python package `memory_allocator`
68-
See https://trac.sagemath.org/31591 for details.
68+
See https://github.com/sagemath/sage/issues/31591 for details.
6969
"""
7070
cdef size_t extra = alignment - 1
7171
return align(self.malloc(size + extra), alignment)
@@ -96,7 +96,7 @@ cdef class MemoryAllocator:
9696
....: ''')
9797
sage: foo()
9898
doctest:...: DeprecationWarning: this class is deprecated; use the class from the python package `memory_allocator`
99-
See https://trac.sagemath.org/31591 for details.
99+
See https://github.com/sagemath/sage/issues/31591 for details.
100100
"""
101101
# Find extra such that (nmemb + extra) * size >= nmemb * size + alignment - 1
102102
# ⇔ extra * size >= alignment - 1

src/sage/ext/memory_allocator.pyx

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ cdef class MemoryAllocator:
2727
....: mem.aligned_allocarray(8, n, 8)
2828
....: ''')
2929
doctest:...: DeprecationWarning: this class is deprecated; use the class from the python package `memory_allocator`
30-
See https://trac.sagemath.org/31591 for details.
30+
See https://github.com/sagemath/sage/issues/31591 for details.
3131
"""
3232
def __cinit__(self):
3333
"""
@@ -44,7 +44,7 @@ cdef class MemoryAllocator:
4444
....: ''')
4545
sage: foo()
4646
doctest:...: DeprecationWarning: this class is deprecated; use the class from the python package `memory_allocator`
47-
See https://trac.sagemath.org/31591 for details.
47+
See https://github.com/sagemath/sage/issues/31591 for details.
4848
1
4949
16
5050
"""

src/sage/features/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ def absolute_path(self):
498498
sage: Executable(name="sh", executable="sh").absolute_path()
499499
doctest:warning...
500500
DeprecationWarning: method absolute_path has been replaced by absolute_filename
501-
See https://trac.sagemath.org/31292 for details.
501+
See https://github.com/sagemath/sage/issues/31292 for details.
502502
'/...bin/sh'
503503
"""
504504
try:

src/sage/features/join_feature.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def is_functional(self):
8888
sage: Latte().is_functional() # optional - latte_int
8989
doctest:warning...
9090
DeprecationWarning: method JoinFeature.is_functional; use is_present instead
91-
See https://trac.sagemath.org/33114 for details.
91+
See https://github.com/sagemath/sage/issues/33114 for details.
9292
FeatureTestResult('latte_int', True)
9393
"""
9494
try:

src/sage/game_theory/normal_form_game.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2247,7 +2247,7 @@ def _Hrepresentation(self, m1, m2):
22472247
doctest:warning...
22482248
DeprecationWarning: NormalFormGame._Hrepresentation is deprecated as it
22492249
creates the legacy input format. Use NormalFormGame._lrs_nash_format instead
2250-
See https://trac.sagemath.org/27745 for details.
2250+
See https://github.com/sagemath/sage/issues/27745 for details.
22512251
H-representation
22522252
linearity 1 5
22532253
begin
@@ -2341,7 +2341,7 @@ def _lrs_nash_format(self, m1, m2):
23412341
doctest:warning...
23422342
DeprecationWarning: NormalFormGame._Hrepresentation is deprecated as it
23432343
creates the legacy input format. Use NormalFormGame._lrs_nash_format instead
2344-
See https://trac.sagemath.org/27745 for details.
2344+
See https://github.com/sagemath/sage/issues/27745 for details.
23452345
sage: print('*game: player 1\n', legacy_format[0])
23462346
*game: player 1
23472347
H-representation

src/sage/game_theory/parser.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def format_lrs(self, legacy_format=False):
150150
doctest:warning...
151151
DeprecationWarning: NormalFormGame._Hrepresentation is deprecated as it
152152
creates the legacy input format. Use NormalFormGame._lrs_nash_format instead
153-
See https://trac.sagemath.org/27745 for details.
153+
See https://github.com/sagemath/sage/issues/27745 for details.
154154
sage: g1_name, g2_name = tmp_filename(), tmp_filename()
155155
sage: g1_file, g2_file = open(g1_name, 'w'), open(g2_name, 'w')
156156
sage: _ = g1_file.write(game1_str)

src/sage/geometry/polyhedron/base3.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,7 @@ def face_generator(self, face_dimension=None, algorithm=None, **kwds):
593593
sage: P = polytopes.hypercube(4)
594594
sage: list(P.face_generator(dual=False))[:4]
595595
doctest:...: DeprecationWarning: the keyword dual is deprecated; use algorithm instead
596-
See https://trac.sagemath.org/33646 for details.
596+
See https://github.com/sagemath/sage/issues/33646 for details.
597597
[A 4-dimensional face of a Polyhedron in ZZ^4 defined as the convex hull of 16 vertices,
598598
A -1-dimensional face of a Polyhedron in ZZ^4,
599599
A 3-dimensional face of a Polyhedron in ZZ^4 defined as the convex hull of 8 vertices,

src/sage/geometry/polyhedron/combinatorial_polyhedron/base.pyx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1450,7 +1450,7 @@ cdef class CombinatorialPolyhedron(SageObject):
14501450
sage: r = C.ridges(add_equations=True)
14511451
sage: r1 = C.ridges(add_equalities=True)
14521452
doctest:...: DeprecationWarning: the keyword ``add_equalities`` is deprecated; use ``add_equations``
1453-
See https://trac.sagemath.org/31834 for details.
1453+
See https://github.com/sagemath/sage/issues/31834 for details.
14541454
sage: r == r1
14551455
True
14561456
"""
@@ -2762,7 +2762,7 @@ cdef class CombinatorialPolyhedron(SageObject):
27622762
sage: C = CombinatorialPolyhedron([[0,1,2],[0,1,3],[0,2,3],[1,2,3]])
27632763
sage: it = C.face_generator(1, False)
27642764
doctest:...: DeprecationWarning: the keyword dual is deprecated; use algorithm instead
2765-
See https://trac.sagemath.org/33646 for details.
2765+
See https://github.com/sagemath/sage/issues/33646 for details.
27662766
sage: it = C.face_generator(1, dual=True)
27672767
27682768
.. SEEALSO::

src/sage/graphs/generic_graph.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12369,7 +12369,7 @@ def edges(self, vertices=None, labels=True, sort=None, key=None,
1236912369
sage: G = graphs.HouseGraph()
1237012370
sage: G.edges(sort=None)
1237112371
doctest:...: DeprecationWarning: parameter 'sort' will be set to False by default in the future
12372-
See https://trac.sagemath.org/27408 for details.
12372+
See https://github.com/sagemath/sage/issues/27408 for details.
1237312373
[(0, 1, None), (0, 2, None), (1, 3, None), (2, 3, None), (2, 4, None), (3, 4, None)]
1237412374
"""
1237512375
if sort is None:

0 commit comments

Comments
 (0)