diff options
author | Damien George <damien.p.george@gmail.com> | 2014-07-05 06:14:29 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-07-05 06:14:29 +0100 |
commit | 539681fffd96082ca3b5d18643d4f08f65c47170 (patch) | |
tree | 7e6f8332c6e7737b768750e67265bb02b22932e6 /tests/basics/class_getattr.py | |
parent | 0182385ab0b4a1b2e549c92f8f5b621135aeb975 (diff) | |
download | micropython-539681fffd96082ca3b5d18643d4f08f65c47170.tar.gz micropython-539681fffd96082ca3b5d18643d4f08f65c47170.zip |
tests: Rename test scripts, changing - to _ for consistency.
From now on, all new tests must use underscore.
Addresses issue #727.
Diffstat (limited to 'tests/basics/class_getattr.py')
-rw-r--r-- | tests/basics/class_getattr.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/basics/class_getattr.py b/tests/basics/class_getattr.py new file mode 100644 index 0000000000..1f875ce538 --- /dev/null +++ b/tests/basics/class_getattr.py @@ -0,0 +1,16 @@ +# test that __getattr__, __getattrribute__ and instance members don't override builtins +class C: + def __init__(self): + self.__add__ = lambda: print('member __add__') + def __add__(self, x): + print('__add__') + def __getattr__(self, attr): + print('__getattr__', attr) + return None + def __getattrribute__(self, attr): + print('__getattrribute__', attr) + return None + +c = C() +c.__add__ +c + 1 # should call __add__ |