This file contains hidden or 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
class duper: | |
"""Super wrapper which allows property setting & deletion. | |
Super can't be subclassed with empty __init__ arguments. | |
Works with multiple inheritance. | |
References: | |
https://mail.python.org/pipermail/python-dev/2010-April/099672.html | |
https://bugs.python.org/issue14965 | |
https://bugs.python.org/file37546/superprop.py | |