[issue38616] Using Py_XDECREF to replace Py_DECREF in PyAST_FromNodeObject()

2019-11-17 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: -16708 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38616] Using Py_XDECREF to replace Py_DECREF in PyAST_FromNodeObject()

2019-11-17 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +16708 pull_request: https://github.com/python/cpython/pull/17202 ___ Python tracker ___

[issue38616] Using Py_XDECREF to replace Py_DECREF in PyAST_FromNodeObject()

2019-11-17 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: -16706 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38616] Using Py_XDECREF to replace Py_DECREF in PyAST_FromNodeObject()

2019-11-17 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +16706 pull_request: https://github.com/python/cpython/pull/17202 ___ Python tracker ___

[issue38616] Using Py_XDECREF to replace Py_DECREF in PyAST_FromNodeObject()

2019-10-28 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Both code are equivalent. There is reason to rewrite this. It would just increase code churn. -- nosy: +serhiy.storchaka resolution: -> rejected stage: patch review -> resolved status: open -> closed ___ Python

[issue38616] Using Py_XDECREF to replace Py_DECREF in PyAST_FromNodeObject()

2019-10-28 Thread hai shi
Change by hai shi : -- keywords: +patch pull_requests: +16490 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16962 ___ Python tracker ___

[issue38616] Using Py_XDECREF to replace Py_DECREF in PyAST_FromNodeObject()

2019-10-28 Thread hai shi
New submission from hai shi : `if (c.c_normalize) { Py_DECREF(c.c_normalize); }` --> `Py_XDECREF(c.c_normalize);` -- components: Interpreter Core messages: 355545 nosy: shihai1991 priority: normal severity: normal status: open title: Using Py_XDECREF to replace Py_DECREF in