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.

Author terry.reedy
Recipients cheryl.sabella, docs@python, terry.reedy
Date 2017-05-16.01:24:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1494897896.63.0.265558107729.issue30211@psf.upfronthosting.co.za>
In-reply-to
Content
In the entry at https://docs.python.org/3/library/bdb.html#bdb.Bdb.canonic, 
", stripped of surrounding angle brackets"
is wrong, and should be replaced by
".  'Filenames' with angle brackets, such as "<stdin>", generated in interactive mode, are returned unchanged"

>>> 1/0
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ZeroDivisionError: division by zero

(IDLE generates "<PyShell#n>", when n is statement number, starting with 0.)

This and any other doc errors we find should be corrected in this issue, but perhaps in a separate PR that can be backported separately.
History
Date User Action Args
2017-05-16 01:24:56terry.reedysetrecipients: + terry.reedy, docs@python, cheryl.sabella
2017-05-16 01:24:56terry.reedysetmessageid: <1494897896.63.0.265558107729.issue30211@psf.upfronthosting.co.za>
2017-05-16 01:24:56terry.reedylinkissue30211 messages
2017-05-16 01:24:55terry.reedycreate