[issue37547] Add _PyObject_CallMethodOneArg()

2019-07-19 Thread Inada Naoki
Inada Naoki added the comment: New changeset d3952096537d9d2706e10af0c0596daeee6a58c9 by Inada Naoki (Zackery Spytz) in branch 'master': bpo-37547: Fix a compiler warning in winconsoleio.c (GH-14785) https://github.com/python/cpython/commit/d3952096537d9d2706e10af0c0596daeee6a58c9

[issue37547] Add _PyObject_CallMethodOneArg()

2019-07-15 Thread Zackery Spytz
Zackery Spytz added the comment: It seems that 59ad110d7a7784d53d0b502eebce0346597a6bef introduced a compiler warning in Modules/_io/winconsoleio.c. c:\projects\cpython\modules\_io\winconsoleio.c(208): warning C4133: 'function': incompatible types - from 'winconsoleio *' to 'PyObject *'

[issue37547] Add _PyObject_CallMethodOneArg()

2019-07-15 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +14582 pull_request: https://github.com/python/cpython/pull/14785 ___ Python tracker ___

[issue37547] Add _PyObject_CallMethodOneArg()

2019-07-11 Thread Jeroen Demeyer
Change by Jeroen Demeyer : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue37547] Add _PyObject_CallMethodOneArg()

2019-07-11 Thread Inada Naoki
Inada Naoki added the comment: New changeset 59ad110d7a7784d53d0b502eebce0346597a6bef by Inada Naoki (Jeroen Demeyer) in branch 'master': bpo-37547: add _PyObject_CallMethodOneArg (GH-14685) https://github.com/python/cpython/commit/59ad110d7a7784d53d0b502eebce0346597a6bef --

[issue37547] Add _PyObject_CallMethodOneArg()

2019-07-10 Thread Jeroen Demeyer
Change by Jeroen Demeyer : -- keywords: +patch pull_requests: +14492 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14685 ___ Python tracker ___

[issue37547] Add _PyObject_CallMethodOneArg()

2019-07-10 Thread Jeroen Demeyer
New submission from Jeroen Demeyer : We already have _PyObject_CallNoArg() _PyObject_CallOneArg() _PyObject_CallMethodNoArgs() so it makes sense to also add _PyObject_CallMethodOneArg() -- components: Interpreter Core messages: 347619 nosy: inada.naoki, jdemeyer, vstinner priority: