tempfile: Use random.choises() instead of choise() (GH-23068)

This commit is contained in:
Inada Naoki 2020-11-01 20:02:03 +09:00 committed by GitHub
parent 2165cea548
commit d2810054c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 6 deletions

View file

@ -143,10 +143,7 @@ class _RandomNameSequence:
return self
def __next__(self):
c = self.characters
choose = self.rng.choice
letters = [choose(c) for dummy in range(8)]
return ''.join(letters)
return ''.join(self.rng.choices(self.characters, k=8))
def _candidate_tempdir_list():
"""Generate a list of candidate temporary directories which