diff options
author | Steven D'Aprano <steve@pearwood.info> | 2016-04-15 01:55:14 +1000 |
---|---|---|
committer | Steven D'Aprano <steve@pearwood.info> | 2016-04-15 01:55:14 +1000 |
commit | a873f6824886007ca1096b9d3a0a730c52c1c327 (patch) | |
tree | 75a7cd7f95ef77614d09a99e2eb924c45ddaa295 /Lib/secrets.py | |
parent | Add secrets module and tests. (diff) | |
download | cpython-a873f6824886007ca1096b9d3a0a730c52c1c327.tar.gz cpython-a873f6824886007ca1096b9d3a0a730c52c1c327.tar.bz2 cpython-a873f6824886007ca1096b9d3a0a730c52c1c327.zip |
run Tools/reindent.py on secrets.py to satisfy the checkwhitespace hook
Diffstat (limited to 'Lib/secrets.py')
-rw-r--r-- | Lib/secrets.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/secrets.py b/Lib/secrets.py index ed018ad5412..e0f26567ff9 100644 --- a/Lib/secrets.py +++ b/Lib/secrets.py @@ -146,4 +146,3 @@ def token_hex(nbytes=None): def token_urlsafe(nbytes=None): tok = token_bytes(nbytes) return base64.urlsafe_b64encode(tok).rstrip(b'=').decode('ascii') - |