this is my code
def aa():
if request.method=='POST':
get_test(value1)
return value1
else:
get_test(value2)
return value2
return 'it does not work'
def post_test(value1):
value1='POST it works'
return value1
def get_test(value2):
value2='GET it works'
how can i catch post_test value1 to aa() return???
--
https://mail.python.org/mailman/listinfo/python-list
