Georg Brandl added the comment:
No, the text is correct, but the example is misleading -- I now changed
it to
>>> fib(0)
>>> print fib(0)
None
which should make the difference between using and not using print clearer.
--
nosy: +georg.brandl
__
Tracker
Dan M added the comment:
Yes, it is normally suppressed. The problem is the condition when it is
suppressed. The documentation states that it's suppressed when it's the
only value to be written.
It is suppressed when it's *not* the only value to be written.
-or- (removing the double negative
Martin v. Löwis added the comment:
I fail to see the bug. The documentation is correct as it stands, ie.
None is *not* displayed normally. IOW, writing is normally suppressed.
--
nosy: +loewis
resolution: -> invalid
status: open -> closed
__
Tracker <[EM
New submission from Dan M:
In section 4.6 it says:
Writing the value None is normally suppressed by the interpreter if it
would be the only value written.
When it should say:
Writing the value None is normally displayed by the interpreter if it
would be the only value written.
Or less wordy:
Th