STINNER Victor added the comment: > As an experiment, and to show what would be needed (at minimum), I have > attempted to make Python/dtoa.c completely aliasing-safe here: > https://github.com/DimitryAndric/cpython/commit/29c3f6f5cd771fce5630f127b9e7054593e3160c
Would it be technically possible to completely get ride of the union? For example, it would allow to replace: set_dval(rv, get_dval(rv) + sulp(rv, bc)); with: rv += sulp(rv, bc); Is it possible to replace Big0 and Big1 with Big double? etc. ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue30124> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com