[issue38730] 2.7 modern compiler warnings

2019-12-16 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset 052f47ef5cc363e842e0e839980cfa55ada123b5 by Benjamin Peterson in branch '2.7': bpo-38730: Replace strncpy in import.c with memcpy. (GH-17633) https://github.com/python/cpython/commit/052f47ef5cc363e842e0e839980cfa55ada123b5 --

[issue38730] 2.7 modern compiler warnings

2019-12-16 Thread Benjamin Peterson
Change by Benjamin Peterson : -- pull_requests: +17102 pull_request: https://github.com/python/cpython/pull/17633 ___ Python tracker ___

[issue38730] 2.7 modern compiler warnings

2019-11-07 Thread Benjamin Peterson
Change by Benjamin Peterson : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue38730] 2.7 modern compiler warnings

2019-11-07 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset 9f94e52e8d38092520a3bfb1bf1ef9cbb0836584 by Benjamin Peterson in branch '2.7': bpo-38730: Remove usage of stpncpy as it's not supported on MSVC 2008. (GH-17081)

[issue38730] 2.7 modern compiler warnings

2019-11-07 Thread Benjamin Peterson
Change by Benjamin Peterson : -- pull_requests: +16591 pull_request: https://github.com/python/cpython/pull/17081 ___ Python tracker ___

[issue38730] 2.7 modern compiler warnings

2019-11-07 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset f32bcf8c27f3681407707bbb029323eb340d3c4b by Benjamin Peterson in branch '2.7': [2.7] bpo-38730: Fix -Wstringop-truncation warnings. (GH-17075) https://github.com/python/cpython/commit/f32bcf8c27f3681407707bbb029323eb340d3c4b --

[issue38730] 2.7 modern compiler warnings

2019-11-06 Thread Benjamin Peterson
Change by Benjamin Peterson : -- keywords: +patch pull_requests: +16585 stage: -> patch review pull_request: https://github.com/python/cpython/pull/17075 ___ Python tracker

[issue38730] 2.7 modern compiler warnings

2019-11-06 Thread Benjamin Peterson
New submission from Benjamin Peterson : GCC 9's -Wstringop-truncation warnings trigger several times in 2.7. Some of these instances are all actual bugs. In all cases, we should clarify the code to make the compiler happy. -- components: Build messages: 356166 nosy: benjamin.peterson