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 syncosmic
Recipients syncosmic
Date 2017-08-11.15:21:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1502464891.48.0.226484247582.issue31183@psf.upfronthosting.co.za>
In-reply-to
Content
Issue 21947 informed the `dis` module about the `gi_code` attribute, which stores code objects for generator objects. This allows inspection of generator objects, not just functions which return them. However, asynchronous generator objects use `ag_code` and coroutine objects use `cr_code`, so dis raises a TypeError on them. I'm making a pull request to extend the generator behavior to async generators and coroutines.

Credit to Luciano Ramalho: I tripped over this at his (great) concurrency workshop at PyBay 2017 and he identified exactly what was happening and suggested a patch.
History
Date User Action Args
2017-08-11 15:21:31syncosmicsetrecipients: + syncosmic
2017-08-11 15:21:31syncosmicsetmessageid: <1502464891.48.0.226484247582.issue31183@psf.upfronthosting.co.za>
2017-08-11 15:21:31syncosmiclinkissue31183 messages
2017-08-11 15:21:30syncosmiccreate