Hey,
i've this two classed

class New(webapp.RequestHandler):
  def __init__(self):
    self.dateTime = datetime.datetime.now()

  def get(self):
    new_nick = cgi.escape(self.request.get('nick'))

class MainHandler(webapp.RequestHandler):
  def get(self):

    """ call new with nick """

and i want to call the New class from MainHandler and support to New
class the nick name, and do something with it.

How can i do that?

Thnx
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to