Skip to content

Commit da1d2c0

Browse files
author
Matthias Koeppe
committedFeb 18, 2024·
git grep -l 'Trac #' | xargs sed -i.bak 's/Trac #/Issue #/g'
1 parent fb9291c commit da1d2c0

Some content is hidden

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

46 files changed

+77
-77
lines changed
 

‎Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ micro_release:
201201

202202
# Leaves everything that is needed to make the next "make" fast but removes
203203
# all the cheap build artifacts that can be quickly regenerated.
204-
# Trac #30960: We no longer uninstall sagelib.
204+
# Issue #30960: We no longer uninstall sagelib.
205205
fast-rebuild-clean: misc-clean
206206
rm -rf upstream/
207207
rm -rf build/pkgs/sagelib/src/build/temp.*

‎build/bin/sage-bootstrap-python

+6-6
Original file line numberDiff line numberDiff line change
@@ -27,23 +27,23 @@ SAGE_ORIG_PATH=${NEW_PATH%%':'}
2727
# So it needs to find a python that has the urllib module.
2828
# For example, on Debian buster, the python3-minimal package does NOT provide it.
2929
#
30-
# Also, Trac #20023 removed the vendored argparse library from sage_bootstrap,
30+
# Also, Issue #20023 removed the vendored argparse library from sage_bootstrap,
3131
# so we test that python is new enough (>= 2.7) to run it.
3232
#
3333
# See https://github.com/sagemath/sage/issues/29090
3434

35-
# Trac #29890: Our first choice is "python", not "python3". This is to avoid
35+
# Issue #29890: Our first choice is "python", not "python3". This is to avoid
3636
# a defect of sage_bootstrap on macOS regarding SSL URLs.
3737

38-
# Trac #30177: Also check for hashlib.sha1 to guard against broken python2
38+
# Issue #30177: Also check for hashlib.sha1 to guard against broken python2
3939
# from old homebrew installations. Also check whether the current directory
4040
# is accessible by this python; this is to guard on WSL against Pythons
4141
# installed somewhere else in Windows.
4242

43-
# Trac #29285: Do not accept pythons that manipulate PATH, such as
43+
# Issue #29285: Do not accept pythons that manipulate PATH, such as
4444
# the shims provided by pyenv.
4545

46-
# Trac #30008: Make it work even if the environment tries to sabotage UTF-8
46+
# Issue #30008: Make it work even if the environment tries to sabotage UTF-8
4747
# operation in Python 3.0.x-3.6.x by setting LC_ALL=C or similar.
4848

4949
if [ "$LC_ALL" = "C" -o "$LANG" = "C" -o "$LC_CTYPE" = "C" ]; then
@@ -54,7 +54,7 @@ if [ "$LC_ALL" = "C" -o "$LANG" = "C" -o "$LC_CTYPE" = "C" ]; then
5454
fi
5555

5656
PYTHONS="python python3 python3.12 python3.11 python3.10 python3.9 python3.8 python3.7 python2.7 python3.6 python2"
57-
# Trac #32405: Prefer a Python that provides ssl with SNI, which allows developers
57+
# Issue #32405: Prefer a Python that provides ssl with SNI, which allows developers
5858
# to download from upstream URLs (configure --enable-download-from-upstream-url),
5959
# in particular from PyPI, which requires SNI.
6060
for PY in $PYTHONS; do

0 commit comments

Comments
 (0)
Please sign in to comment.