Skip to content

Instantly share code, notes, and snippets.

@bogsio
Created October 28, 2013 19:29
Show Gist options
  • Save bogsio/7203050 to your computer and use it in GitHub Desktop.
Save bogsio/7203050 to your computer and use it in GitHub Desktop.
Understanding Python descriptors #1
class Student(models.Model):
email = models.EmailField()
...
s = Student()
s.email = "valid@email.com"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment