Skip to content

Update secrets from 3.13.5 #5991

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 16, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions Lib/secrets.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
managing secrets such as account authentication, tokens, and similar.

See PEP 506 for more information.
https://www.python.org/dev/peps/pep-0506/
https://peps.python.org/pep-0506/

"""

Expand All @@ -13,7 +13,6 @@


import base64
import binascii

from hmac import compare_digest
from random import SystemRandom
Expand Down Expand Up @@ -56,7 +55,7 @@ def token_hex(nbytes=None):
'f9bf78b9a18ce6d46a0cd2b0b86df9da'

"""
return binascii.hexlify(token_bytes(nbytes)).decode('ascii')
return token_bytes(nbytes).hex()

def token_urlsafe(nbytes=None):
"""Return a random URL-safe text string, in Base64 encoding.
Expand Down
Loading