[issue43152] warning: unused variable 'code'

2021-02-13 Thread Dong-hee Na
Dong-hee Na added the comment: Now this issue is solved Thank you Victor as the reviewer ;) -- nosy: +vstinner resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue43152] warning: unused variable 'code'

2021-02-13 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 3cf0833f42ebde24f6435b838785ca4f946b988f by Dong-hee Na in branch 'master': bpo-43152: Update assert statement to remove unused warning (GH-24473) https://github.com/python/cpython/commit/3cf0833f42ebde24f6435b838785ca4f946b988f -- _

[issue43152] warning: unused variable 'code'

2021-02-06 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch pull_requests: +23266 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24473 ___ Python tracker ___

[issue43152] warning: unused variable 'code'

2021-02-06 Thread Dong-hee Na
New submission from Dong-hee Na : Python/ceval.c:4747:19: warning: unused variable 'code' [-Wunused-variable] PyCodeObject *code = (PyCodeObject *)_co; Very nit compiler warning but should be fixed ;) -- components: Interpreter Core messages: 386583 nosy: Mark.Shannon, corona10 pr