I think this makes sense to address - have replied to the ticket. but tl;dr:
inconsistency in this space is likely to provoke bugs, so lets make
things consistent.
-Rob
On 12 May 2014 00:45, mouad ben wrote:
> Hello,
>
> My name is Mouad and this is my first time writing to this mailing list.
>
Chris McDonough wrote:
> Does anyone know of a pure-Python WSGI server that:
> - Is distributed indepdently from a web framework or larger whole.
> - Runs on UNIX and Windows.
> - Runs on both Python 2 and Python 3.
> - Has good test coverage.
> - Is useful in production.
I know you know, Chris, b
The scope is somewhat different, but the goals similar:
http://cloudsilverlining.org
On Tue, Oct 5, 2010 at 3:52 PM, Randall wrote:
> The rise of WSGI and the many server implementations is really great.
> I've configured some combinations of webservers and WSGI servers that
> are very fast and
Graham Dumpleton wrote:
> The question is, if a WSGI application calls sys.exit() or raises a
> SystemExit exception explicitly, what action if any should a WSGI
> server/adapter take in response. Should it allow the process to be
> shutdown, or should it ignore it.
>
> ...to my mind any WSGI serv
On 4/28/06, Guido van Rossum <[EMAIL PROTECTED]> wrote:
> Support for Windows services is part of win32all, not core Python.
Sorry, I don't think I made my request clear. I'm looking for WSGI
server implementations, and in particular ones which can be made to
work as Windows services. The service
FYI, Paul, I think Guido mistook your message as being in the "adding
wsgiref to the stdlib" thread. :)
As for your question, I think there's an IIS WSGI implementation. It's
also possible that Twisted or Zope have WSGI servers suitable for use as a
Windows service.
At 02:00 PM 4/28/2006 -
Support for Windows services is part of win32all, not core Python.
--Guido
On 4/28/06, Paul Moore <[EMAIL PROTECTED]> wrote:
> I'm starting to play with WSGI, and I'd really like to find a
> reasonable WSGI server implementation which will run as a Windows
> service. I had a go with the CherryPy