Say i have the two methods:
def ReturnMethod(request, x):
if request is True:
return x
else: print "No String for you...False!"
def SendMethod(request):
xstring = "Some text"
ReturnMethod(request, xstring)
SendMethod(True)
Why does ReturnMethod not return the string x? I do believe it is
returning with a NoneType.
Any help would be greatly obliged
Thanks, Josh
--
http://mail.python.org/mailman/listinfo/python-list
