[issue36869] Avoid warning of unused variables

2019-09-10 Thread Inada Naoki
Change by Inada Naoki : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-l

[issue36869] Avoid warning of unused variables

2019-09-10 Thread Zackery Spytz
Zackery Spytz added the comment: PR 13182 has been merged, so I think this issue should be closed. -- nosy: +ZackerySpytz ___ Python tracker ___ __

[issue36869] Avoid warning of unused variables

2019-05-10 Thread Inada Naoki
Inada Naoki added the comment: New changeset a2fedd8c910cb5f5b9bd568d6fd44d63f8f5cfa5 by Inada Naoki (Emmanuel Arias) in branch 'master': bpo-36869: fix warning of unused variables (GH-13182) https://github.com/python/cpython/commit/a2fedd8c910cb5f5b9bd568d6fd44d63f8f5cfa5 -- nosy:

[issue36869] Avoid warning of unused variables

2019-05-09 Thread Emmanuel Arias
New submission from Emmanuel Arias : When run ./configure && make -j4 there are two warnings on Object/dictobject.c file about ix and hash variable are not used. Zachary Ware make me note that when _PyObject_ASSERT is call and NDEBUG is defined that expand to ((void)0). So this PR add a #ifnde