[issue37151] Calling code cleanup after PEP 590

2019-09-11 Thread Petr Viktorin
Petr Viktorin added the comment: All linked PRs are merged, so I'm closing this. Feel free to reopen if there's more! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue37151] Calling code cleanup after PEP 590

2019-09-11 Thread Petr Viktorin
Petr Viktorin added the comment: New changeset 7a6873cdb1f496447ac5d57ae457eacbb56b7972 by Petr Viktorin (Jeroen Demeyer) in branch 'master': bpo-37151: remove special case for PyCFunction from PyObject_Call (GH-14684)

[issue37151] Calling code cleanup after PEP 590

2019-07-10 Thread Jeroen Demeyer
Change by Jeroen Demeyer : -- pull_requests: +14490 pull_request: https://github.com/python/cpython/pull/14684 ___ Python tracker ___

[issue37151] Calling code cleanup after PEP 590

2019-07-05 Thread Petr Viktorin
Petr Viktorin added the comment: New changeset 7b57c03a7cb63ccfb2b8dfa82a1bf169268d80ba by Petr Viktorin (Jeroen Demeyer) in branch 'master': bpo-37151: remove _PyMethodDef_RawFastCall* functions (GH-14603) https://github.com/python/cpython/commit/7b57c03a7cb63ccfb2b8dfa82a1bf169268d80ba

[issue37151] Calling code cleanup after PEP 590

2019-07-05 Thread Jeroen Demeyer
Change by Jeroen Demeyer : -- pull_requests: +14418 pull_request: https://github.com/python/cpython/pull/14603 ___ Python tracker ___

[issue37151] Calling code cleanup after PEP 590

2019-06-20 Thread Inada Naoki
Inada Naoki added the comment: New changeset 7e1a9aacff95c68d284f31666fe293fa2db5406d by Inada Naoki (Jeroen Demeyer) in branch 'master': bpo-37151: remove _PyCFunction_FastCallDict (GH-14269) https://github.com/python/cpython/commit/7e1a9aacff95c68d284f31666fe293fa2db5406d --

[issue37151] Calling code cleanup after PEP 590

2019-06-20 Thread Jeroen Demeyer
Change by Jeroen Demeyer : -- pull_requests: +14095 pull_request: https://github.com/python/cpython/pull/14269 ___ Python tracker ___

[issue37151] Calling code cleanup after PEP 590

2019-06-18 Thread Jeroen Demeyer
Jeroen Demeyer added the comment: All PRs currently on this issue have been merged, but this is not finished yet. I'm mainly waiting for a resolution on PR 13781 because that's a big change which needs to be done before further cleanup. -- ___

[issue37151] Calling code cleanup after PEP 590

2019-06-18 Thread Inada Naoki
Inada Naoki added the comment: New changeset 59543347d12a7717235f941e7fd363d4df92984a by Inada Naoki (Jeroen Demeyer) in branch 'master': bpo-37151: remove _PyFunction_FastCallDict (GH-13864) https://github.com/python/cpython/commit/59543347d12a7717235f941e7fd363d4df92984a --

[issue37151] Calling code cleanup after PEP 590

2019-06-18 Thread Inada Naoki
Inada Naoki added the comment: New changeset c78fe320dbb0da3412d640797eb850753d45c07b by Inada Naoki (Jeroen Demeyer) in branch 'master': bpo-37151: use PyVectorcall_Call for all calls of "method" (GH-13972) https://github.com/python/cpython/commit/c78fe320dbb0da3412d640797eb850753d45c07b

[issue37151] Calling code cleanup after PEP 590

2019-06-11 Thread Jeroen Demeyer
Change by Jeroen Demeyer : -- pull_requests: +13839 pull_request: https://github.com/python/cpython/pull/13972 ___ Python tracker ___

[issue37151] Calling code cleanup after PEP 590

2019-06-10 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- Removed message: https://bugs.python.org/msg345119 ___ Python tracker ___ ___

[issue37151] Calling code cleanup after PEP 590

2019-06-10 Thread shafiq sahil
shafiq sahil added the comment: http://www.mobile-phone.pk/search/ -- nosy: +shafiq sahil ___ Python tracker ___ ___

[issue37151] Calling code cleanup after PEP 590

2019-06-07 Thread Evita Cano
Change by Evita Cano : -- nosy: +Evita Cano ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37151] Calling code cleanup after PEP 590

2019-06-07 Thread Petr Viktorin
Petr Viktorin added the comment: New changeset 3f345c39255dc3823dd989d4e3c93b12d18c44e0 by Petr Viktorin (Jeroen Demeyer) in branch 'master': bpo-37151: simplify classmethoddescr_call (GH-13340) https://github.com/python/cpython/commit/3f345c39255dc3823dd989d4e3c93b12d18c44e0 --

[issue37151] Calling code cleanup after PEP 590

2019-06-06 Thread Jeroen Demeyer
Change by Jeroen Demeyer : -- pull_requests: +13740 pull_request: https://github.com/python/cpython/pull/13864 ___ Python tracker ___

[issue37151] Calling code cleanup after PEP 590

2019-06-04 Thread Jeroen Demeyer
Change by Jeroen Demeyer : -- keywords: +patch pull_requests: +13694 stage: -> patch review pull_request: https://github.com/python/cpython/pull/13340 ___ Python tracker ___

[issue37151] Calling code cleanup after PEP 590

2019-06-04 Thread Jeroen Demeyer
New submission from Jeroen Demeyer : Now that PEP 590 has been implemented, a lot of old code can be cleaned up. In particular: - get rid of _PyMethodDef_RawFastCallXXX() functions and replace them by vectorcall functions for each calling convention - get rid of FastCallDict()