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 asvetlov
Recipients asvetlov, yselivanov
Date 2018-01-24.15:08:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1516806523.55.0.467229070634.issue32650@psf.upfronthosting.co.za>
In-reply-to
Content
pdb (and other Python debuggers) are built on top of bdb.py module.

The module has a support for stepping to next line in function (next command).

The command checks frame flags and do extra steps if the flags contains CO_GENERATOR.

But CO_COROUTINE is not supported, it leads to stepping into a native coroutine instead of expecting stepping over.

The patch should be relative simple: just add a check for CO_COROUTINE along with CO_GENERATOR everywhere.
History
Date User Action Args
2018-01-24 15:08:43asvetlovsetrecipients: + asvetlov, yselivanov
2018-01-24 15:08:43asvetlovsetmessageid: <1516806523.55.0.467229070634.issue32650@psf.upfronthosting.co.za>
2018-01-24 15:08:43asvetlovlinkissue32650 messages
2018-01-24 15:08:43asvetlovcreate