[issue26161] Use Py_uintptr_t instead of void* for atomic pointers

2016-03-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset b1666037c97e by Victor Stinner in branch '3.5': Use Py_uintptr_t for atomic pointers https://hg.python.org/cpython/rev/b1666037c97e -- ___ Python tracker _

[issue26161] Use Py_uintptr_t instead of void* for atomic pointers

2016-01-22 Thread STINNER Victor
Changes by STINNER Victor : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue26161] Use Py_uintptr_t instead of void* for atomic pointers

2016-01-22 Thread Roundup Robot
Roundup Robot added the comment: New changeset ff68ffcc6244 by Victor Stinner in branch 'default': Use Py_uintptr_t for atomic pointers https://hg.python.org/cpython/rev/ff68ffcc6244 -- nosy: +python-dev ___ Python tracker

[issue26161] Use Py_uintptr_t instead of void* for atomic pointers

2016-01-20 Thread STINNER Victor
STINNER Victor added the comment: (Oops, I attached the wrong patch. It's now fixed.) -- Added file: http://bugs.python.org/file41668/atomic_pointer.patch ___ Python tracker ___

[issue26161] Use Py_uintptr_t instead of void* for atomic pointers

2016-01-20 Thread STINNER Victor
New submission from STINNER Victor: Attached patch fixes compiler warnings on atomic pointers. Python has 4 implementations of atomic types: * * GCC 4.7+ builtin atomic operations * GCC x86 and x86_64 assembler * volatile The type of atomic pointers changes depending on the implementation. At

[issue26161] Use Py_uintptr_t instead of void* for atomic pointers

2016-01-20 Thread STINNER Victor
Changes by STINNER Victor : Removed file: http://bugs.python.org/file41667/atomic_pointer.patch ___ Python tracker ___ ___ Python-bugs-list ma