Issue 3036: docs - print() example wrong in whatsnew (original) (raw)
In the whatsnew/3.0.html doc, the example for print is the wrong way around. Current version reads:
- The :func:
print
function doesn't support the "softspace" feature of the oldprint
statement. For example, in Python 2.x,print "A\n", "B"
would write"A\nB\n"
; but in Python 3.0,print("A\n", "B")
writes"A\n B\n"
.
should read:
- The :func:
print
function doesn't support the "softspace" feature of the oldprint
statement. For example, in Python 2.x,print "A\n", "B"
would write"A\n B\n"
; but in Python 3.0,print("A\n", "B")
writes"A\nB\n"
.