[issue31018] _tracemalloc frame_t packing optimization not working in Windows x64

2017-07-25 Thread STINNER Victor
STINNER Victor added the comment: New changeset 49175b3b670a4514b5dc5dcf7b58203d2be852c1 by Victor Stinner (Segev Finer) in branch '3.5': [3.5] bpo-31018: Switch to GH-pragma pack from __declspec(align) (GH-2848) (#2869) https://github.com/python/cpython/commit/49175b3b670a4514b5dc5dcf7b58203d

[issue31018] _tracemalloc frame_t packing optimization not working in Windows x64

2017-07-25 Thread STINNER Victor
STINNER Victor added the comment: New changeset d8b5216f998bbb0f921815165f46918b86620ab7 by Victor Stinner (Segev Finer) in branch '3.6': [3.6] bpo-31018: Switch to GH-pragma pack from __declspec(align) (GH-2848) (#2868) https://github.com/python/cpython/commit/d8b5216f998bbb0f921815165f46918b

[issue31018] _tracemalloc frame_t packing optimization not working in Windows x64

2017-07-25 Thread STINNER Victor
STINNER Victor added the comment: Thanks for the fix ;-) -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___ __

[issue31018] _tracemalloc frame_t packing optimization not working in Windows x64

2017-07-25 Thread Segev Finer
Changes by Segev Finer : -- pull_requests: +2919 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue31018] _tracemalloc frame_t packing optimization not working in Windows x64

2017-07-25 Thread Segev Finer
Changes by Segev Finer : -- pull_requests: +2920 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue31018] _tracemalloc frame_t packing optimization not working in Windows x64

2017-07-25 Thread STINNER Victor
Changes by STINNER Victor : -- versions: -Python 3.4 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue31018] _tracemalloc frame_t packing optimization not working in Windows x64

2017-07-25 Thread STINNER Victor
STINNER Victor added the comment: New changeset 39243779f4c97ec6f700fa73c007ca66dfa9408e by Victor Stinner (Segev Finer) in branch 'master': bpo-31018: Switch to #pragma pack from __declspec(align) (#2848) https://github.com/python/cpython/commit/39243779f4c97ec6f700fa73c007ca66dfa9408e -

[issue31018] _tracemalloc frame_t packing optimization not working in Windows x64

2017-07-25 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue31018] _tracemalloc frame_t packing optimization not working in Windows x64

2017-07-24 Thread Segev Finer
Changes by Segev Finer : -- pull_requests: +2897 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue31018] _tracemalloc frame_t packing optimization not working in Windows x64

2017-07-24 Thread Segev Finer
Changes by Segev Finer : -- pull_requests: -2896 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue31018] _tracemalloc frame_t packing optimization not working in Windows x64

2017-07-24 Thread Segev Finer
Changes by Segev Finer : -- pull_requests: +2896 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue31018] _tracemalloc frame_t packing optimization not working in Windows x64

2017-07-24 Thread Segev Finer
Changes by Segev Finer : -- pull_requests: +2895 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue31018] _tracemalloc frame_t packing optimization not working in Windows x64

2017-07-24 Thread Segev Finer
New submission from Segev Finer: ..\Modules\_tracemalloc.c(88): warning C4359: '': Alignment specifier is less than actual alignment (8), and will be ignored. For this to actually work we simply need to use #pragma pack instead. -- components: Extension Modules, Windows messages: 29899