[issue44657] instancemethod_call should use PyInstanceMethod_GET_FUNCTION macro

2021-07-28 Thread Dong-hee Na
Dong-hee Na added the comment: Thank you Sam for the valuable report!! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue44657] instancemethod_call should use PyInstanceMethod_GET_FUNCTION macro

2021-07-28 Thread miss-islington
miss-islington added the comment: New changeset c48720576d63f9a7de15a6e46b07262dd3d04a8d by Miss Islington (bot) in branch '3.9': bpo-44657: Fix instancemethod_call to use PyInstanceMethod_GET_FUNCTION (GH-27202) https://github.com/python/cpython/commit/c48720576d63f9a7de15a6e46b07262dd3d04a

[issue44657] instancemethod_call should use PyInstanceMethod_GET_FUNCTION macro

2021-07-28 Thread miss-islington
miss-islington added the comment: New changeset c558e12695e5fe39778eb3eead9df48870356800 by Miss Islington (bot) in branch '3.10': bpo-44657: Fix instancemethod_call to use PyInstanceMethod_GET_FUNCTION (GH-27202) https://github.com/python/cpython/commit/c558e12695e5fe39778eb3eead9df48870356

[issue44657] instancemethod_call should use PyInstanceMethod_GET_FUNCTION macro

2021-07-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +25942 pull_request: https://github.com/python/cpython/pull/27409 ___ Python tracker ___ __

[issue44657] instancemethod_call should use PyInstanceMethod_GET_FUNCTION macro

2021-07-28 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 2.0 -> 3.0 pull_requests: +25941 pull_request: https://github.com/python/cpython/pull/27408 ___ Python tracker _

[issue44657] instancemethod_call should use PyInstanceMethod_GET_FUNCTION macro

2021-07-28 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset ddf8ae31a0f371eff2db14c7f7a45976b86d56ea by Dong-hee Na in branch 'main': bpo-44657: Fix instancemethod_call to use PyInstanceMethod_GET_FUNCTION (GH-27202) https://github.com/python/cpython/commit/ddf8ae31a0f371eff2db14c7f7a45976b86d56ea --

[issue44657] instancemethod_call should use PyInstanceMethod_GET_FUNCTION macro

2021-07-17 Thread Dong-hee Na
Change by Dong-hee Na : -- versions: -Python 3.6, Python 3.7, Python 3.8 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue44657] instancemethod_call should use PyInstanceMethod_GET_FUNCTION macro

2021-07-16 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch pull_requests: +25736 stage: -> patch review pull_request: https://github.com/python/cpython/pull/27202 ___ Python tracker ___

[issue44657] instancemethod_call should use PyInstanceMethod_GET_FUNCTION macro

2021-07-16 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue44657] instancemethod_call should use PyInstanceMethod_GET_FUNCTION macro

2021-07-16 Thread Sam Gross
Change by Sam Gross : -- type: enhancement -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue44657] instancemethod_call should use PyInstanceMethod_GET_FUNCTION macro

2021-07-16 Thread Sam Gross
New submission from Sam Gross : The instancemethod_call function should use the PyInstanceMethod_GET_FUNCTION macro instead of the PyMethod_GET_FUNCTION macro. The current code is incorrect, but still works okay (doesn't crash) because PyInstanceMethodObject.func is at the same offset as PyM