Every line of 'python repeat until' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
13 def repeat(object, times = 0): 14 yield object
37 @public 38 def repeat(obj, nrepeat=None): 39 """Generator to repeatedly yield the same object 40 41 Args: 42 obj (any): The object to yield 43 44 Kwargs: 45 nrepeat (int): The number of times to repeatedly yield obj 46 """ 47 if nrepeat is None: 48 return itertools.repeat(obj) 49 else: 50 return itertools.repeat(obj, times=nrepeat)