(self)
| 4 | class MainPage(webapp2.RequestHandler): |
| 5 | |
| 6 | def get(self): |
| 7 | self.response.headers['Content-Type'] = 'text/plain' |
| 8 | self.response.write('Hello, World!') |
| 9 | |
| 10 | |
| 11 | application = webapp2.WSGIApplication([ |
no outgoing calls
no test coverage detected