In web2py when i redefine a function, it does not overwrite the function...is this by design? See the example below:
In [39] : def add(v): return v+2 In [40] : print add(5) 7 In [41] : def add(v): return v+5 In [42] : print add(5) 7 -- ....................................................................................... Teddy Lubasi Nyambe Opensource Zambia Lusaka, ZAMBIA Cell: +260 97 7760473 website: http://www.opensource.org.zm ~/ Human Knowledge belongs to the world! - AntiTrust Man is a tool-using animal. Without tools he is nothing, with tools he is all - Thomas Carlyle 1795-1881 /~ --

