def new_person_from_signature_using_names_cache(sig, name):
     pid = get_new_personid()
     add_signature_using_names_cache(sig, name, pid)
     return pid
Esempio n. 2
0
 def get_free_pids():
     while True:
         yield get_new_personid()
 def get_free_pids():
     while True:
         yield get_new_personid()
Esempio n. 4
0
 def new_person_from_signature_using_names_cache(sig, name):
     pid = get_new_personid()
     add_signature_using_names_cache(sig, name, pid)
     return pid