FINALLY http://91.121.53.159:8080/

def application( environ, start_response):
    start_response( "200 OK", [( "Content-Type", "text/plain" )] )
    return ["Hello world!"]

from ypy.wsgi import make_server
make_server( "", 8080, application ).serve_forever()

seems like you can not leave out .serve_forever()
so here it goes ypy vs modwsgi

result follow you can already compare it your self with your local ab

http://91.121.53.159:8080/
http://91.121.53.159/startup.py

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"modwsgi" 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/modwsgi?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to