def new_person_from_signature_using_names_cache(sig, name):
     pid = get_free_author_id()
     add_signature_using_names_cache(sig, name, pid)
     return pid
 def get_free_pids():
     while True:
         yield get_free_author_id()
Beispiel #3
0
 def get_free_pids():
     while True:
         yield get_free_author_id()
 def new_person_from_signature_using_names_cache(sig, name):
     pid = get_free_author_id()
     add_signature_using_names_cache(sig, name, pid)
     return pid