[issue43499] Compiler warnings in building Python 3.9 on Windows

2021-03-17 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you Ammar. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue43499] Compiler warnings in building Python 3.9 on Windows

2021-03-17 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset db733761060be92915b5f5cba209dcaada88f94e by Ammar Askar in branch '3.9': [3.9] bpo-43499: Restrict co_code to be under INT_MAX in codeobject (GH-20628) (GH-24896) https://github.com/python/cpython/commit/db733761060be92915b5f5cba209dcaada88f9

[issue43499] Compiler warnings in building Python 3.9 on Windows

2021-03-16 Thread Ammar Askar
Change by Ammar Askar : -- pull_requests: +23661 pull_request: https://github.com/python/cpython/pull/24896 ___ Python tracker ___ _

[issue43499] Compiler warnings in building Python 3.9 on Windows

2021-03-16 Thread Ammar Askar
Ammar Askar added the comment: Sure thing, I'll work on the backport. -- ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue43499] Compiler warnings in building Python 3.9 on Windows

2021-03-16 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Ammar Askar, do you mind to backport PR 20628 to 3.9? It is the only warning left, and it seems there is a potential bug. -- ___ Python tracker __

[issue43499] Compiler warnings in building Python 3.9 on Windows

2021-03-16 Thread STINNER Victor
Change by STINNER Victor : -- nosy: +vstinner nosy_count: 2.0 -> 3.0 pull_requests: +23659 pull_request: https://github.com/python/cpython/pull/22387 ___ Python tracker ___ ___

[issue43499] Compiler warnings in building Python 3.9 on Windows

2021-03-16 Thread Ammar Askar
Change by Ammar Askar : -- pull_requests: +23658 pull_request: https://github.com/python/cpython/pull/20508 ___ Python tracker ___ _

[issue43499] Compiler warnings in building Python 3.9 on Windows

2021-03-16 Thread Ammar Askar
Change by Ammar Askar : -- nosy: +ammar2 nosy_count: 1.0 -> 2.0 pull_requests: +23657 pull_request: https://github.com/python/cpython/pull/20628 ___ Python tracker ___

[issue43499] Compiler warnings in building Python 3.9 on Windows

2021-03-15 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 651fc30af7ac6138764106b87632cabca56a98bb by Serhiy Storchaka in branch '3.9': bpo-43499: Silence compiler warnings about using legacy C API on Windows (GH-24873) https://github.com/python/cpython/commit/651fc30af7ac6138764106b87632cabca56a98b

[issue43499] Compiler warnings in building Python 3.9 on Windows

2021-03-15 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +23634 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24873 ___ Python tracker ___

[issue43499] Compiler warnings in building Python 3.9 on Windows

2021-03-15 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : Currently building Python 3.9 on Windows produce many compiler warnings. 3.8 and master are clean. * Warnings in the _sre module caused by the bug in MSVC (complains about automatic conversion of "void **" to "const void *"). Fixed by backporting PR2050