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: Typo in documentation of print function parameters
Type: Stage:
Components: Documentation Versions: Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: georg.brandl, nicolasg
Priority: normal Keywords:

Created on 2009-04-14 09:26 by nicolasg, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg85962 - (view) Author: Nicolas Goutte (nicolasg) Date: 2009-04-14 09:26
In http://docs.python.org/library/functions.html#print the print function 
is documented to have a parameter named end with a default 'n'. However 
the default should be '\n' as documented in Python 3 ( http://docs.python.org/3.0/library/functions.html#print )
msg86257 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-04-21 18:24
Thanks, fixed in r71787.
History
Date User Action Args
2022-04-11 14:56:47adminsetgithub: 50001
2009-04-21 18:24:42georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg86257
2009-04-14 09:26:13nicolasgcreate