While not *exactly* what you are looking to do you can quite easily do
what you would like using the example below and an if statement.

Try this:

def StuffHandler(webapp.RequestHandler):
  def get(self, CatDogOrFish):
     self.response.out.write('you wanted to eat the: %s' %
CatDogOrFish)

application = webapp.WSGIApplication(
                                     [('/(Cat|Dog|Fish)',
StuffHandler)
                                     ])
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to