Skip to content

Instantly share code, notes, and snippets.

@shofetim
Created October 8, 2015 19:41
Show Gist options
  • Save shofetim/a278a599a483b901a848 to your computer and use it in GitHub Desktop.
Save shofetim/a278a599a483b901a848 to your computer and use it in GitHub Desktop.
import datetime
from time import sleep
class A(object):
@property
def b(self):
return datetime.datetime.now()
a = A()
print a.b
sleep(10)
print a.b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment