add boilerplate for second edition

This commit is contained in:
Mia von Steinkirch 2020-02-08 17:20:00 -08:00
parent dc3ebf3173
commit 5fafebba15
279 changed files with 24265 additions and 0 deletions

View file

@ -0,0 +1,22 @@
#!/usr/bin/env python
__author__ = "bt3"
class BunchClass(dict):
def __init__(self, *args, **kwds):
super(BunchClass, self).__init__(*args, **kwds)
self.__dict__ = self
def main():
''' {'right': {'right': 'Xander', 'left': 'Willow'}, 'left': {'right': 'Angel', 'left': 'Buffy'}}'''
bc = BunchClass # notice the absence of ()
tree = bc(left = bc(left="Buffy", right="Angel"), right = bc(left="Willow", right="Xander"))
print(tree)
if __name__ == '__main__':
main()