micropython

tests/instance_initialisation_parameters.py

253:cda541c40c81
2009-07-12 Paul Boddie Added notes on native functions and the "unused objects" optimisation. Added missing copyright and licensing information. Tidied native function generation slightly.
     1 #!/usr/bin/env python     2      3 class E:     4     def __init__(self, x):     5         self.x = x     6      7 class F:     8     def __init__(self, x=3):     9         self.x = x    10     11 e = E(1)    12 f = F()    13 g = F(2)    14 X = F    15 x = X()    16     17 result_1 = e.x    18 result1_3 = f.x    19 result_2 = g.x    20 result2_3 = x.x    21     22 # vim: tabstop=4 expandtab shiftwidth=4