diff options
author | Noah Kantrowitz <noah@coderanger.net> | 2021-07-30 13:54:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-30 13:54:46 (GMT) |
commit | be42c06bb01206209430f3ac08b72643dc7cad1c (patch) | |
tree | 85df7eaca19021bab89cb63f7c8022dcbe13c2fb /Parser/tokenizer.c | |
parent | ea4673ed0757e9bfe8774e60cfae3313e9927b5f (diff) | |
download | cpython-be42c06bb01206209430f3ac08b72643dc7cad1c.zip cpython-be42c06bb01206209430f3ac08b72643dc7cad1c.tar.gz cpython-be42c06bb01206209430f3ac08b72643dc7cad1c.tar.bz2 |
Update URLs in comments and metadata to use HTTPS (GH-27458)
Diffstat (limited to 'Parser/tokenizer.c')
-rw-r--r-- | Parser/tokenizer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c index 50a0afc..90eee28 100644 --- a/Parser/tokenizer.c +++ b/Parser/tokenizer.c @@ -545,7 +545,7 @@ ensure_utf8(char *line, struct tok_state *tok) "Non-UTF-8 code starting with '\\x%.2x' " "in file %U on line %i, " "but no encoding declared; " - "see http://python.org/dev/peps/pep-0263/ for details", + "see https://python.org/dev/peps/pep-0263/ for details", badchar, tok->filename, tok->lineno + 1); return 0; } |