예제 #1
0
파일: evolve4.py 프로젝트: boothead/karl
def generate_name(context):
    while True:
        name = unfriendly_random_id()
        if not (name in context):
            return name
예제 #2
0
 def _callFUT(self, len):
     from karl.utilities.randomid import unfriendly_random_id
     return unfriendly_random_id(len)
예제 #3
0
 def _callFUT(self, len):
     from karl.utilities.randomid import unfriendly_random_id
     return unfriendly_random_id(len)
예제 #4
0
파일: evolve4.py 프로젝트: iotest3/new
def generate_name(context):
    while True:
        name = unfriendly_random_id()
        if not (name in context):
            return name