[issue37236] fix test_complex for Windows arm64

2019-06-27 Thread Paul Monson
Change by Paul Monson : -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list

[issue37236] fix test_complex for Windows arm64

2019-06-12 Thread miss-islington
miss-islington added the comment: New changeset f72886a066ba7d3a3aa077cfc3cad2ca0b2cdbf6 by Miss Islington (bot) in branch '3.8': bpo-37236: pragma optimize off for _Py_c_quot on Windows arm64 (GH-13983) https://github.com/python/cpython/commit/f72886a066ba7d3a3aa077cfc3cad2ca0b2cdbf6

[issue37236] fix test_complex for Windows arm64

2019-06-12 Thread miss-islington
Change by miss-islington : -- pull_requests: +13890 pull_request: https://github.com/python/cpython/pull/14024 ___ Python tracker ___

[issue37236] fix test_complex for Windows arm64

2019-06-12 Thread Steve Dower
Steve Dower added the comment: New changeset ff6bb0aa95259413f359d42410526ff0b4dccfb7 by Steve Dower (Paul Monson) in branch 'master': bpo-37236: pragma optimize off for _Py_c_quot on Windows arm64 (GH-13983) https://github.com/python/cpython/commit/ff6bb0aa95259413f359d42410526ff0b4dccfb7

[issue37236] fix test_complex for Windows arm64

2019-06-11 Thread Mark Dickinson
Change by Mark Dickinson : -- nosy: +mark.dickinson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37236] fix test_complex for Windows arm64

2019-06-11 Thread Paul Monson
Change by Paul Monson : -- keywords: +patch pull_requests: +13847 stage: -> patch review pull_request: https://github.com/python/cpython/pull/13983 ___ Python tracker ___

[issue37236] fix test_complex for Windows arm64

2019-06-11 Thread Paul Monson
New submission from Paul Monson : There is a compiler optimization error on Windows ARM64 that causes test_truediv (test.test_complex.ComplexTest) to fail with ZeroDivisionError: complex division by zero. Adding a pragma optimize around the affected function fixes the issue. I am also