diff options
Diffstat (limited to 'tests/internal_bench/var-6.2-instance-speciallookup.py')
| -rw-r--r-- | tests/internal_bench/var-6.2-instance-speciallookup.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/internal_bench/var-6.2-instance-speciallookup.py b/tests/internal_bench/var-6.2-instance-speciallookup.py new file mode 100644 index 000000000..71845f3aa --- /dev/null +++ b/tests/internal_bench/var-6.2-instance-speciallookup.py @@ -0,0 +1,19 @@ +import bench + + +class Foo: + def __init__(self): + self.num = 20000000 + + def __getattr__(self, name): # just trigger the 'special lookups' flag on the class + pass + + +def test(num): + o = Foo() + i = 0 + while i < o.num: + i += 1 + + +bench.run(test) |
