def new_person_from_signature_using_names_cache(sig, name):
     pid = get_new_personid()
     add_signature_using_names_cache(sig, name, pid)
     return pid
示例#2
0
 def get_free_pids():
     while True:
         yield get_new_personid()
 def get_free_pids():
     while True:
         yield get_new_personid()
示例#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