I want to use a alias for webApp2 self.response.out.write
or self.response.write
function. Like
from __future__ import print_function
class M:
def __init__(self):
self.echo ( 'BOO BOO')
def f(self, data ) :
print ( data )
echo = f
a = M()
a.echo(' ALIASED FUNCTION ' )
I tried
class Main(webapp2.RequestHandler):
def fun(self):
self.response.out.write ( 'FUNNY' )
def get(self):
self.response.headers['Content-Type'] = 'text/html'
self.response.write( 'DERIVED CLASS' )
self.aliasOut()
self.aliasFun()
def post(self):
pass
aliasOut = response.out.write # NameError: name 'response' is not defined
aliasFun = fun # This works
The issue you're running into is that
self
is a local variable whithin each method. You can't make a class variable holdingself.response.out.write
becauseself
is undefined at the top level of the class. I think there are two possible solutions:The simplest is to just make a local alias in any method that is going to call
self.response.out.write
a lot:Another option would be to make the alias a
property
object in the class, so it can be accessed anywhere in the class. This is much less obvious about where the alias comes from, which may cause confusion when somebody else (or you, months later) reads your code, but it comes closer to what you wanted: