[pypy-commit] [Git][pypy/pypy][branch/threaded-code-generation] 2 commits: fix tla interpreter for threaded code
Yusuke Izawa pushed to branch branch/threaded-code-generation at PyPy / pypy Commits: 31e636cf by Yusuke Izawa at 2022-05-10T17:33:56+09:00 fix tla interpreter for threaded code --HG-- branch : threaded-code-generation - - - - - 98a43a94 by Yusuke Izawa at 2022-05-10T17:34:13+09:00 add counts to Bytecode class --HG-- branch : threaded-code-generation - - - - - 2 changed files: - rpython/jit/tl/threadedcode/bytecode.py - rpython/jit/tl/threadedcode/tla.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/compare/23965a8154c53b801b17405c5298166ab6e16a9c...98a43a94c273be9a49d009980a6f61b962c3141e -- View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/compare/23965a8154c53b801b17405c5298166ab6e16a9c...98a43a94c273be9a49d009980a6f61b962c3141e 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
[pypy-commit] [Git][pypy/pypy][branch/threaded-code-generation] fix broken import in tla for threaded code
Yusuke Izawa pushed to branch branch/threaded-code-generation at PyPy / pypy Commits: 0ac86b90 by Yusuke Izawa at 2022-05-10T17:52:13+09:00 fix broken import in tla for threaded code --HG-- branch : threaded-code-generation - - - - - 1 changed file: - rpython/jit/tl/threadedcode/tla.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/0ac86b90404d7091ba9127d96d4024787637e131 -- View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/0ac86b90404d7091ba9127d96d4024787637e131 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
[pypy-commit] [Git][pypy/pypy][branch/py3.9] 13 commits: create slot_tp_init to map user defined python __init__ to tp_init (issue 2806)
Matti Picus pushed to branch branch/py3.9 at PyPy / pypy Commits: a79c8352 by Matti Picus at 2022-05-09T06:06:37+03:00 create slot_tp_init to map user defined python __init__ to tp_init (issue 2806) --HG-- branch : py3.8 - - - - - 02c3732c by Matti Picus at 2022-05-09T07:55:25+03:00 add a name to sys.hash_info --HG-- branch : py3.8 - - - - - 256aa534 by Matti Picus at 2022-05-09T07:55:48+03:00 test, add PyReversed_Type (issue 3196) --HG-- branch : py3.8 - - - - - c1cd5f07 by Carl Friedrich Bolz-Tereick at 2022-05-09T20:17:24+02:00 #3729: fix concurrency problem in buffered io reading. there was a path where the underlying file was closed without the buffered reader checking again, leading to an rpython crash. fixed this way. --HG-- branch : py3.8 - - - - - 4a586737 by Carl Friedrich Bolz-Tereick at 2022-05-09T20:28:54+02:00 add a passing test for pypy2 - - - - - 71c50dd1 by Matti Picus at 2022-05-09T22:09:18+03:00 add PyUnicode_EncodeCodePage (issue 3731) --HG-- branch : py3.8 - - - - - 06c48b07 by Matti Picus at 2022-05-09T22:16:01+03:00 add PyInterpreterState_GetID which alsways returns 0 (issue 3734) I think this is the last missing piece for CYTHON_PEP489_MULTI_PHASE_INIT=1 --HG-- branch : py3.8 - - - - - 4f48010e by Matti Picus at 2022-05-09T22:20:56+03:00 code_page_encode is win32 only --HG-- branch : py3.8 - - - - - 69cd9836 by Carl Friedrich Bolz-Tereick at 2022-05-09T21:21:16+02:00 #3728: make it possible to multiple-inherit from KeyError again --HG-- branch : py3.8 - - - - - e9f1be2c by Carl Friedrich Bolz-Tereick at 2022-05-09T21:22:00+02:00 merge default --HG-- branch : py3.8 - - - - - 97178731 by Carl Friedrich Bolz-Tereick at 2022-05-09T21:23:00+02:00 merge heads --HG-- branch : py3.8 - - - - - dd9f1025 by Matti Picus at 2022-05-10T12:06:52+03:00 windows does not have "true", so do something else that does not write any output --HG-- branch : py3.8 - - - - - fb4ae264 by Matti Picus at 2022-05-10T12:07:22+03:00 merge py3.8 --HG-- branch : py3.9 - - - - - 14 changed files: - extra_tests/test_bufferedreader.py - pypy/module/_io/interp_bufferedio.py - pypy/module/cpyext/api.py - pypy/module/cpyext/pystate.py - pypy/module/cpyext/test/test_iterator.py - pypy/module/cpyext/test/test_typeobject.py - pypy/module/cpyext/test/test_unicodeobject.py - pypy/module/cpyext/unicodeobject.py - pypy/module/cpyext/userslot.py - pypy/module/exceptions/interp_exceptions.py - pypy/module/exceptions/test/test_exc.py - pypy/module/sys/system.py - pypy/module/sys/test/test_sysmodule.py - pypy/objspace/std/typeobject.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/compare/d04c328172ba72d7dc1265aaff761c56567aba4e...fb4ae2643285e5470af00fe51baf65f88a2e5104 -- View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/compare/d04c328172ba72d7dc1265aaff761c56567aba4e...fb4ae2643285e5470af00fe51baf65f88a2e5104 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
[pypy-commit] [Git][pypy/pypy][branch/py3.8] windows does not have "true", so do something else that does not write any output
Matti Picus pushed to branch branch/py3.8 at PyPy / pypy Commits: dd9f1025 by Matti Picus at 2022-05-10T12:06:52+03:00 windows does not have "true", so do something else that does not write any output --HG-- branch : py3.8 - - - - - 1 changed file: - extra_tests/test_bufferedreader.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/dd9f10255e95d0c480b38cf0bd17dc5c9417f846 -- View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/dd9f10255e95d0c480b38cf0bd17dc5c9417f846 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
[pypy-commit] [Git][pypy/pypy][branch/py3.8] remove unused sorting subclass
Carl Friedrich Bolz-Tereick pushed to branch branch/py3.8 at PyPy / pypy Commits: 918f5198 by Carl Friedrich Bolz-Tereick at 2022-05-10T11:21:29+02:00 remove unused sorting subclass --HG-- branch : py3.8 - - - - - 1 changed file: - pypy/objspace/std/listobject.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/918f51985ad9dce4553e82e61d05aee5ca7d80cf -- View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/918f51985ad9dce4553e82e61d05aee5ca7d80cf 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
[pypy-commit] [Git][pypy/pypy][branch/threaded-code-generation] 2 commits: remove unused files
Yusuke Izawa pushed to branch branch/threaded-code-generation at PyPy / pypy Commits: a523921c by Yusuke Izawa at 2022-05-10T19:36:17+09:00 remove unused files --HG-- branch : threaded-code-generation - - - - - c3a497ab by Yusuke Izawa at 2022-05-10T20:08:46+09:00 fix tests in tla for threaded code --HG-- branch : threaded-code-generation - - - - - 16 changed files: - rpython/jit/tl/threadedcode/grammar.txt - rpython/jit/tl/threadedcode/lang/ary.tla.py - rpython/jit/tl/threadedcode/lang/fact.tla.py - − rpython/jit/tl/threadedcode/lang/fib-callasm.tla.py - rpython/jit/tl/threadedcode/lang/fib-tail.tla.py - rpython/jit/tl/threadedcode/lang/gcd.tla.py - rpython/jit/tl/threadedcode/lang/loop.tla.py - rpython/jit/tl/threadedcode/lang/prefix_sum.tla.py - rpython/jit/tl/threadedcode/lang/random.tla.py - rpython/jit/tl/threadedcode/lang/sieve.tla.py - rpython/jit/tl/threadedcode/lang/square.tla.py - rpython/jit/tl/threadedcode/lang/sum-tail.tla.py - rpython/jit/tl/threadedcode/lang/tak.tla.py - rpython/jit/tl/threadedcode/lang/tarai.tla.py - − rpython/jit/tl/threadedcode/targettlabench.py - rpython/jit/tl/threadedcode/test/test_tla.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/compare/0ac86b90404d7091ba9127d96d4024787637e131...c3a497ab3cc7857cced6060e0ece49c64c770940 -- View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/compare/0ac86b90404d7091ba9127d96d4024787637e131...c3a497ab3cc7857cced6060e0ece49c64c770940 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
[pypy-commit] [Git][pypy/pypy][branch/default] issue #3732: jit calling the key function
Carl Friedrich Bolz-Tereick pushed to branch branch/default at PyPy / pypy Commits: 598a01f2 by Carl Friedrich Bolz-Tereick at 2022-05-10T21:28:09+02:00 issue #3732: jit calling the key function (does not help enough, unfortunately. the profile shows the comparison being the slow thing in my example benchmark) - - - - - 1 changed file: - pypy/objspace/std/listobject.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/598a01f229a02d15ddd48331b6cca0cb08b39b8b -- View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/598a01f229a02d15ddd48331b6cca0cb08b39b8b 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
[pypy-commit] [Git][pypy/pypy][branch/default] rm obsolete code
Ronan Lamy pushed to branch branch/default at PyPy / pypy Commits: e8bd5fbf by Ronan Lamy at 2022-05-11T03:14:34+01:00 rm obsolete code - - - - - 1 changed file: - pypy/interpreter/baseobjspace.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/e8bd5fbf8a5cd63feb04b06aa51e97f6a3346103 -- View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/e8bd5fbf8a5cd63feb04b06aa51e97f6a3346103 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
[pypy-commit] [Git][pypy/pypy][branch/default] on releases, build OWN + JIT
Matti Picus pushed to branch branch/default at PyPy / pypy Commits: f23f981b by Matti Picus at 2022-05-11T06:18:25+03:00 on releases, build OWN + JIT - - - - - 1 changed file: - pypy/tool/release/force-builds.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/f23f981b1a31ac60d1ebc303e1f2a0d080bfb7de -- View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/f23f981b1a31ac60d1ebc303e1f2a0d080bfb7de 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