Matti Picus pushed to branch branch/py3.9 at PyPy / pypy
Commits: 2a61de3a by Carl Friedrich Bolz-Tereick at 2022-08-19T10:53:59+02:00 #3781: be more systematic about conditional unrolling in list, dict, tuple code. in particularly, don't do isvirtual(w_list) any more, because the list can be virtual where the underlying storage is not. --HG-- branch : list-unrolling-bugs-3781 - - - - - 1e6757a2 by Carl Friedrich Bolz-Tereick at 2022-08-19T21:53:29+02:00 #3781: jit.isvirtual would wrongly return True for freshly allocated arrays that have an unknown length. fix this --HG-- branch : list-unrolling-bugs-3781 - - - - - 6e653025 by Carl Friedrich Bolz-Tereick at 2022-08-21T13:16:04+02:00 3781: turns out isvirtual is also wrongly True for resizable lists (and that also means dicts, I suppose). Therefore require the length to be known in loop_unrolling_heuristic to work around that problem. --HG-- branch : list-unrolling-bugs-3781 - - - - - ac5c6bce by Carl Friedrich Bolz-Tereick at 2022-08-23T18:01:39+02:00 fix test_cffi_init_struct_with_list with slighly annoying code, see comment --HG-- branch : list-unrolling-bugs-3781 - - - - - 17f035ae by Carl Friedrich Bolz-Tereick at 2022-08-24T12:42:52+02:00 merge list-unrolling-bugs-3781 to fix #3781: review all the use cases of jit.loop_unrolling_heuristic, to unroll less aggressively - - - - - c6e0a52f by Matti Picus at 2022-08-24T18:32:32+03:00 test, implement PyClassMethod_Type (for pybind11 gh-4158) --HG-- branch : py3.8 - - - - - 76999f70 by Matti Picus at 2022-08-26T16:54:18+03:00 test, fix "Unknown format code" error message (issue 3799) also unskip a passing test --HG-- branch : py3.8 - - - - - dea92849 by Carl Friedrich Bolz-Tereick at 2022-08-29T14:45:12+02:00 (mgorny): #3559 if ctypes doesn't find the C library with find_library('c'), try to fallback to generic "libc.so". this enables building with musl - - - - - e55c6cae by Carl Friedrich Bolz-Tereick at 2022-09-01T09:06:45+02:00 #3802: unbreak string formatting with mixed bytes/unicode (before it was possible to produce a unicode object with bytes that aren't valid utf-8) - - - - - ccf39e7c by Carl Friedrich Bolz-Tereick at 2022-09-01T09:44:08+02:00 merge default --HG-- branch : py3.8 - - - - - 91dde3fc by Matti Picus at 2022-09-05T07:23:53-05:00 add memory pressure when creating a tkinter image (issue 3798) --HG-- branch : py3.8 - - - - - 5e48d257 by Matti Picus at 2022-09-05T07:27:22-05:00 mege py3.8 --HG-- branch : py3.9 - - - - - 16 changed files: - lib-python/3/tkinter/__init__.py - pypy/module/_cffi_backend/ctypestruct.py - pypy/module/cpyext/api.py - pypy/module/cpyext/test/test_cpyext.py - pypy/objspace/std/dictmultiobject.py - pypy/objspace/std/formatting.py - pypy/objspace/std/listobject.py - pypy/objspace/std/newformat.py - pypy/objspace/std/specialisedtupleobject.py - pypy/objspace/std/test/test_newformat.py - pypy/objspace/std/tupleobject.py - rpython/jit/metainterp/heapcache.py - rpython/jit/metainterp/test/test_ajit.py - rpython/jit/metainterp/test/test_heapcache.py - rpython/rlib/clibffi.py - rpython/rlib/jit.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/compare/f8fea063cbb4392980c34c92de0a05d11e44c0d4...5e48d2579c82c27ab711ee2e0bc2f5cedd584bb7 -- View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/compare/f8fea063cbb4392980c34c92de0a05d11e44c0d4...5e48d2579c82c27ab711ee2e0bc2f5cedd584bb7 You're receiving this email because of your account on foss.heptapod.net.
_______________________________________________ pypy-commit mailing list -- pypy-commit@python.org To unsubscribe send an email to pypy-commit-le...@python.org https://mail.python.org/mailman3/lists/pypy-commit.python.org/ Member address: arch...@mail-archive.com