>
> method1 = method1
> method1 = method2
> method1 = method3
> method1 = method4
>

Why do you make four assignments to the same variable? 

G0 = [method1, method2, method3, m3thod4]
>
> def Foo():
>     code..
>     for (func) in G0:
>         return func()
>
> The problem is that only method1 which is at position[0] in the list is 
> invoked and not other methods. I want to randomly call any method when a 
> user inputs any query.
>

Your function returns within the first loop iteration, so of course it only 
runs the first method. What are you really trying to do?

Anthony
 

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to