[issue35230] Remove _Py_REF_DEBUG_COMMA

2018-11-14 Thread STINNER Victor
STINNER Victor added the comment: Thanks. I almost started my project to convert macros to static inline functions just to remove ugly things like: #define _Py_REF_DEBUG_COMMA , (Well, there are other reasons to move to proper functions.) --

[issue35230] Remove _Py_REF_DEBUG_COMMA

2018-11-14 Thread INADA Naoki
INADA Naoki added the comment: New changeset a757649fd6535c5e65481eb1077e30687421b92b by INADA Naoki in branch 'master': bpo-35230: dict: Remove some macros (GH-10513) https://github.com/python/cpython/commit/a757649fd6535c5e65481eb1077e30687421b92b --

[issue35230] Remove _Py_REF_DEBUG_COMMA

2018-11-14 Thread INADA Naoki
Change by INADA Naoki : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue35230] Remove _Py_REF_DEBUG_COMMA

2018-11-13 Thread STINNER Victor
STINNER Victor added the comment: This change is related to bpo-35059. -- nosy: +vstinner ___ Python tracker ___ ___

[issue35230] Remove _Py_REF_DEBUG_COMMA

2018-11-13 Thread INADA Naoki
Change by INADA Naoki : -- keywords: +patch pull_requests: +9773 stage: -> patch review ___ Python tracker ___ ___

[issue35230] Remove _Py_REF_DEBUG_COMMA

2018-11-13 Thread INADA Naoki
INADA Naoki added the comment: I meant 2aaf0c1. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35230] Remove _Py_REF_DEBUG_COMMA

2018-11-13 Thread INADA Naoki
New submission from INADA Naoki : After 2aaf0c, _Py_REF_DEBUG_COMMA in Include/object.h is used only in dictobject.c. Let's remove it. -- messages: 329833 nosy: inada.naoki priority: normal severity: normal status: open title: Remove _Py_REF_DEBUG_COMMA