OLD | NEW |
---|---|
(Empty) | |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 try: | |
6 import google.appengine.ext.webapp as webapp | |
7 import google.appengine.api.memcache as memcache | |
8 import google.appengine.api.urlfetch as urlfetch | |
9 except ImportError: | |
10 memcache = None | |
11 urlfetch = None | |
not at google - send to devlin
2012/07/30 23:00:44
it's kinda hacky, but you could avoid that awkward
cduvall
2012/07/30 23:38:18
Done.
| |
12 | |
13 class webapp(object): | |
14 class RequestHandler(object): | |
15 def __init__(self, request, response): | |
16 self.request = request | |
17 self.response = response | |
OLD | NEW |