[issue24852] Python 3.5.0rc1 "HOWTO Use Python in the web" needs fix

2016-03-07 Thread Roundup Robot
Roundup Robot added the comment: New changeset b8ee8f79a024 by Berker Peksag in branch '3.5': Issue #24852: Remove outdated "HOWTO Use Python in the web" document https://hg.python.org/cpython/rev/b8ee8f79a024 New changeset ee1d44f7d3e7 by Berker Peksag in branch 'default': Issue #24852: Remove

[issue24852] Python 3.5.0rc1 "HOWTO Use Python in the web" needs fix

2016-03-07 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker ___

[issue24852] Python 3.5.0rc1 "HOWTO Use Python in the web" needs fix

2016-03-06 Thread Berker Peksag
Berker Peksag added the comment: See issue 26497 for another report about this. I will remove Doc/howto/webservers.rst. -- versions: -Python 3.4 ___ Python tracker

[issue24852] Python 3.5.0rc1 HOWTO Use Python in the web needs fix

2015-08-14 Thread Raymond Hettinger
Raymond Hettinger added the comment: It's probably better to remove the document for now I concur. Although, this topic sees lot of change regularly, so it is probably not a good one for the standard documentation after all. This makes sense. We typically use wiki pages for this kind of

[issue24852] Python 3.5.0rc1 HOWTO Use Python in the web needs fix

2015-08-13 Thread Berker Peksag
Berker Peksag added the comment: +1 I'd delete most of the CGI section, add a note about PEP and mention Gunicorn, uwsgi and Waitress. The frameworks section also needs a cleanup. Do you want to work on a patch? -- nosy: +berker.peksag stage: - needs patch versions: +Python

[issue24852] Python 3.5.0rc1 HOWTO Use Python in the web needs fix

2015-08-13 Thread Georg Brandl
Georg Brandl added the comment: It's probably better to remove the document for now, and add a rewritten version back when it arrives. Although, this topic sees lot of change regularly, so it is probably not a good one for the standard documentation after all. -- nosy: +georg.brandl

[issue24852] Python 3.5.0rc1 HOWTO Use Python in the web needs fix

2015-08-13 Thread John Hagen
John Hagen added the comment: A couple other notes I saw: The examples (https://docs.python.org/3.5/howto/webservers.html#setting-up-fastcgi) do not follow PEP 8 (should not have an encoding statement if it is UTF-8 Python 3) or the current guidance in PEP 394 to use python3 in the shebang

[issue24852] Python 3.5.0rc1 HOWTO Use Python in the web needs fix

2015-08-12 Thread John Hagen
New submission from John Hagen: https://docs.python.org/3.5/howto/webservers.html#setting-up-fastcgi The HOWTO Use Python in the web documentation for 3.5.0rc1 prescribes to use flup in its example, which is not compatible with Python 3. This has led to some confusion: