This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Recorded with the doitlive recorder | |
#doitlive shell: /bin/bash | |
#doitlive prompt: sorin | |
```python | |
class Foo: | |
pass | |
# We can assign anything | |
f = Foo() | |
f.poo = '¯\_(ツ)_/¯' | |
f.poo | |
f.woo = 'o(-`д´- 。)`)' | |
f.woo | |
class EnterpriseFoo: | |
__slots__ = ('poo', ) | |
# We can ONLY assign poo | |
ef = EnterpriseFoo() | |
ef.poo = '(*≧m≦*)' | |
ef.poo | |
ef.woo = '\(・`(ェ)・)/' | |
class EnterpriseBar(EnterpriseFoo): | |
pass | |
# We can assign anything | |
eb = EnterpriseBar() | |
eb.poo = '{{|└(>o< )┘|}}' | |
eb.woo = '╰༼=ಠਊಠ=༽╯' | |
eb.woo | |
class EnterpriseBaz: | |
__slots__ = ('poo', '__dict__') | |
# We can assign anything | |
eb = EnterpriseBaz() | |
eb.poo = '໒( ᓀ ‸ ᓂ )७' | |
eb.woo = '((╬ಠิ﹏ಠิ))' | |
eb.woo | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment