This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Deprecated python 2.x syntax in "HOWTO Use Python in the web"
Type: Stage:
Components: Documentation Versions: Python 3.0
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: georg.brandl, jcsalterego
Priority: normal Keywords: patch

Created on 2008-12-05 17:09 by jcsalterego, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
webservers-2to3.patch jcsalterego, 2008-12-05 17:09 Patch for Py3k replacements for howto/webservers.txt
Messages (2)
msg77040 - (view) Author: Jerry Chen (jcsalterego) Date: 2008-12-05 17:09
For people who are following HOWTO guides verbatim, there are two types
of Python 2.x'isms in "HOWTO Use Python in the web"
(http://www.python.org/doc/3.0/howto/webservers.html):

1. ``print`` statements instead of functions.
2. Use of beloved but deprecated ``%`` format operator.

Please see attached patch for the ReST source found at
http://www.python.org/doc/3.0/_sources/howto/webservers.txt.

Note: ``2to3`` was not actually used, as the filename may suggest.
msg77049 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2008-12-05 18:04
Thanks, fixed in r67593.
History
Date User Action Args
2022-04-11 14:56:42adminsetgithub: 48800
2008-12-05 18:04:48georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg77049
2008-12-05 17:09:31jcsalteregocreate