Commit 97701b50 authored by Tim Peters's avatar Tim Peters

_RandomNameSequence(): style guide changes, small speedup, don't

put more in the critical section than absolutely needed, acquire
the mutex before the "try".
parent 6ef966e1
......@@ -88,30 +88,30 @@ class _RandomNameSequence:
_RandomNameSequence is an iterator."""
characters = ( "abcdefghijklmnopqrstuvwxyz"
+ "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
+ "0123456789-_")
characters = ("abcdefghijklmnopqrstuvwxyz" +
"ABCDEFGHIJKLMNOPQRSTUVWXYZ" +
"0123456789-_")
def __init__(self):
self.mutex = _allocate_lock()
self.rng = _Random()
self.normcase = _os.path.normcase
def __iter__(self):
return self
def next(self):
m = self.mutex
c = self.characters
r = self.rng
choose = self.rng.choice
try:
m.acquire()
letters = ''.join([r.choice(c), r.choice(c), r.choice(c),
r.choice(c), r.choice(c), r.choice(c)])
try:
letters = [choose(c) for dummy in "123456"]
finally:
m.release()
return self.normcase(letters)
return self.normcase(''.join(letters))
def _candidate_tempdir_list():
"""Generate a list of candidate temporary directories which
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment