[issue40169] `dis.findlabels()` should accept a code object

2020-04-04 Thread laike9m
Change by laike9m : -- type: enhancement -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40169] `dis.findlabels()` should accept a code object

2020-04-04 Thread laike9m
Change by laike9m : -- keywords: +patch pull_requests: +18717 stage: -> patch review pull_request: https://github.com/python/cpython/pull/19356 ___ Python tracker ___

[issue40169] `dis.findlabels()` should accept a code object

2020-04-03 Thread laike9m
New submission from laike9m : Continuing our discussion in https://bugs.python.org/issue40122. I would like to make `dis.findlabels()` accept a code object just like other APIs in the dis module. Also this can be a good chance to add tests for it. -- components: Library (Lib)