This appears to be a duplicate of the message you sent on 31st May.
Please don not send multiple copies of the same message, it fragments
the threads and messes up the archives for searching. One message is
sufficient, if you don't get a response it probably means nobody
knows the answer (or maybe your question was insufficiently specific,
although that's not an issue here). If you want to clarify the issue
send a follow-on to your own message, please don't start a new thread.

Thanks

Alan G.
Moderator.

On 02/06/17 07:20, Attila Szabó wrote:
> Hi All,
> 
> I'm facing a really strange behavior with python's wsgi_ref.simple_server
> module.
> 
> I have the following setup:
> - Raspberry Pi 2
> - Ubuntu Mate 16.04
> - Python3.5
> -
> 
> I have the following simple source:
> #!/usr/bin/env python3
> import wsgiref.simple_server
> 
> def my_func(env, start_response):
>   start_response('200 OK', [])
>   return [''.encode()]
> 
> server = wsgiref.simple_server.make_server(
>   '0.0.0.0',
>   19891,
>   my_func,
> )
> 
> server.serve_forever()
> ....

_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor

Reply via email to