python - Test if a function is threadsafe -
i have function this
def party_id_generator(size=6, chars=string.ascii_uppercase + string.digits): party_ids = [] seen = set() while len(party_ids) < 2: party_id_str = ''.join(random.choice(string.ascii_uppercase) x in range(5)) party_id_dig = ''.join(random.choice(string.digits) x in range(3)) party_id = ''.join([party_id_str,party_id_dig]) if party_id in seen: continue seen.add(party_id) party_ids.append(party_id) return party_ids how know if function thread safe or not ?
Comments
Post a Comment