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: Document of Bdb.effective is wrong.
Type: Stage:
Components: Documentation Versions: Python 3.1, Python 3.2, Python 3.3, Python 2.7, Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, georg.brandl, methane
Priority: normal Keywords:

Created on 2010-11-14 23:01 by methane, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (2)
msg121211 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2010-11-14 23:01
http://docs.python.org/library/bdb.html#bdb.effective

>Determine if there is an effective (active) breakpoint at this line of code.
>Return breakpoint number or 0 if none.

bdb.effective doesn't return 0. If no breakpoint is found, it returns
(None, None).
msg122451 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2010-11-26 12:06
Thanks, fixed in r86798.
History
Date User Action Args
2022-04-11 14:57:08adminsetgithub: 54629
2010-11-26 12:06:08georg.brandlsetstatus: open -> closed

nosy: + georg.brandl
messages: + msg122451

resolution: fixed
2010-11-14 23:01:12methanecreate