@@ -27,23 +27,23 @@ SAGE_ORIG_PATH=${NEW_PATH%%':'}
27
27
# So it needs to find a python that has the urllib module.
28
28
# For example, on Debian buster, the python3-minimal package does NOT provide it.
29
29
#
30
- # Also, Trac #20023 removed the vendored argparse library from sage_bootstrap,
30
+ # Also, Issue #20023 removed the vendored argparse library from sage_bootstrap,
31
31
# so we test that python is new enough (>= 2.7) to run it.
32
32
#
33
33
# See https://github.com/sagemath/sage/issues/29090
34
34
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
36
36
# a defect of sage_bootstrap on macOS regarding SSL URLs.
37
37
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
39
39
# from old homebrew installations. Also check whether the current directory
40
40
# is accessible by this python; this is to guard on WSL against Pythons
41
41
# installed somewhere else in Windows.
42
42
43
- # Trac #29285: Do not accept pythons that manipulate PATH, such as
43
+ # Issue #29285: Do not accept pythons that manipulate PATH, such as
44
44
# the shims provided by pyenv.
45
45
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
47
47
# operation in Python 3.0.x-3.6.x by setting LC_ALL=C or similar.
48
48
49
49
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
54
54
fi
55
55
56
56
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
58
58
# to download from upstream URLs (configure --enable-download-from-upstream-url),
59
59
# in particular from PyPI, which requires SNI.
60
60
for PY in $PYTHONS ; do
0 commit comments