Staging
v0.8.1
Revision e09359112e250268eca209355abeb17abf822486 authored by Ned Deily on 08 July 2019, 18:03:50 UTC, committed by Ned Deily on 08 July 2019, 18:03:50 UTC
1 parent f2cbf41
Raw File
bad_getattr3.py
def __getattr__(name):
    if name != 'delgetattr':
        raise AttributeError
    del globals()['__getattr__']
    raise AttributeError
back to top