def get(self): while not delete_expired_sessions(): pass time.sleep(1) self.response.write(script) self.redirect("/")
def get(self): while not delete_expired_sessions(): pass
def get(self): while not delete_expired_sessions(): pass self.response.out.write("ok")
import fix_path from gaesessions import delete_expired_sessions while not delete_expired_sessions(): pass
def get(self): num_before = SessionModel.all().count() delete_expired_sessions() num_after = SessionModel.all().count() self.response.out.write('%d,%d' % (num_before, num_after))
def get(self): increment_course_and_cleanup_graduates() while not delete_expired_sessions(): pass
def run(): while not delete_expired_sessions(): pass