Compare commits
2 Commits
228eef0258
...
7bfa1bc9da
Author | SHA1 | Date |
---|---|---|
fenix | 7bfa1bc9da | |
fenix | 11acf9073d |
|
@ -0,0 +1,5 @@
|
|||
def do_twice(func):
|
||||
def wrapper_do_twice():
|
||||
func()
|
||||
func()
|
||||
return wrapper_do_twice
|
|
@ -5,6 +5,7 @@ def decorator(func):
|
|||
print("Something is happening after the function is called.")
|
||||
return wrapper
|
||||
|
||||
@decorator
|
||||
def say_whee():
|
||||
print("Whee!")
|
||||
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
from datetime import datetime
|
||||
|
||||
def not_during_the_night(func):
|
||||
def wrapper():
|
||||
if 7 <= datetime.now().hour < 22:
|
||||
func()
|
||||
else:
|
||||
pass # Hush, the neighbors are asleep
|
||||
return wrapper
|
||||
|
||||
def say_whee():
|
||||
print("Whee!")
|
Loading…
Reference in New Issue