On 4/29/14 12:17 PM, Robin Becker wrote:
A user complains that under AppEngine I'm not allowed to import __main__.
I can fix this issue merely by putting a try block around the offending
import which is only used like this
import __main__
testing = getattr(__main__,'_rl_testing',False)
del __m
A user complains that under AppEngine I'm not allowed to import __main__.
I can fix this issue merely by putting a try block around the offending import
which is only used like this
import __main__
testing = getattr(__main__,'_rl_testing',False)
del __main__
this is only used as a hack way,