Logo

Programming-Idioms

History of Idiom 185 > diff from v10 to v11

Edit summary for version 11 by Baxter:
[Python] remove formatting underscore from function name

Version 10

2019-09-26, 15:37:59

Version 11

2019-09-26, 15:38:59

Idiom #185 Execute function in 30 seconds

Schedule the execution of f(42) in 30 seconds.

Idiom #185 Execute function in 30 seconds

Schedule the execution of f(42) in 30 seconds.

Extra Keywords
future
Extra Keywords
future
Imports
import threading
Imports
import threading
Code

  
def _f(x): 
    return x
  
timer = threading.Timer(30.0, _f, args=(42,) ) 
timer.start() 
Code
  
def f(x): 
    return x
  
timer = threading.Timer(30.0, f, args=(42,) ) 
timer.start()