[pypy-commit] [Git][pypy/pypy][branch/default] fix bogus tests: always pass utf-8 encoded unicode strings, not the unicode type
Carl Friedrich Bolz-Tereick pushed to branch branch/default at PyPy / pypy Commits: f1039fad by Carl Friedrich Bolz-Tereick at 2022-08-23T09:16:54+02:00 fix bogus tests: always pass utf-8 encoded unicode strings, not the unicode type - - - - - 1 changed file: - rpython/rlib/rsre/test/test_search.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/f1039fadf528313ee01dc0ad275a6313520cc55a -- View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/f1039fadf528313ee01dc0ad275a6313520cc55a 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] disable assert that fails on pypy2 (not worth fixing pypy2, it's a cpy2 bug that was fixed on cpy3)
Carl Friedrich Bolz-Tereick pushed to branch branch/default at PyPy / pypy Commits: 79d4a83f by Carl Friedrich Bolz-Tereick at 2022-08-23T09:31:59+02:00 disable assert that fails on pypy2 (not worth fixing pypy2, it's a cpy2 bug that was fixed on cpy3) - - - - - 1 changed file: - rpython/rlib/rsre/test/test_search.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/79d4a83f1dd5009619df75a5053a3b9886275112 -- View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/79d4a83f1dd5009619df75a5053a3b9886275112 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] 3 commits: #3148: disable JIT via env var
Carl Friedrich Bolz-Tereick pushed to branch branch/default at PyPy / pypy Commits: f112d5d5 by Alessandro Ogier at 2022-08-22T13:12:57+02:00 #3148: disable JIT via env var --HG-- branch : 3148-disable-jit-via-envvar-default - - - - - f5cd3df0 by Alessandro Ogier at 2022-08-22T14:13:56+02:00 manpage update --HG-- branch : 3148-disable-jit-via-envvar-default - - - - - 08d1b4de by Carl Friedrich Bolz-Tereick at 2022-08-23T12:43:14+00:00 Merge branch 'branch/3148-disable-jit-via-envvar-default' into 'branch/default' #3148: disable JIT via env var Closes #3148 See merge request pypy/pypy!853 - - - - - 3 changed files: - pypy/doc/man/pypy.1.rst - pypy/interpreter/app_main.py - pypy/interpreter/test/test_app_main.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/compare/79d4a83f1dd5009619df75a5053a3b9886275112...08d1b4dee6fe02a1104a382639e85f59a016b528 -- View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/compare/79d4a83f1dd5009619df75a5053a3b9886275112...08d1b4dee6fe02a1104a382639e85f59a016b528 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] store the jit options into options, to make them testable without monkeypatching
Carl Friedrich Bolz-Tereick pushed to branch branch/default at PyPy / pypy Commits: e77ab165 by Carl Friedrich Bolz-Tereick at 2022-08-23T16:48:12+02:00 store the jit options into options, to make them testable without monkeypatching - - - - - 2 changed files: - pypy/interpreter/app_main.py - pypy/interpreter/test/test_app_main.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/e77ab1653836aa54d850b85325d5ff5e5d26c022 -- View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/e77ab1653836aa54d850b85325d5ff5e5d26c022 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] 10 commits: change regex to detect 10 or more CPUs for "make -j"
Carl Friedrich Bolz-Tereick pushed to branch branch/py3.8 at PyPy / pypy Commits: 72ee5689 by Matti Picus at 2022-08-19T09:56:12+03:00 change regex to detect 10 or more CPUs for "make -j" - - - - - f112d5d5 by Alessandro Ogier at 2022-08-22T13:12:57+02:00 #3148: disable JIT via env var --HG-- branch : 3148-disable-jit-via-envvar-default - - - - - f5cd3df0 by Alessandro Ogier at 2022-08-22T14:13:56+02:00 manpage update --HG-- branch : 3148-disable-jit-via-envvar-default - - - - - fb84ff43 by Carl Friedrich Bolz-Tereick at 2022-08-22T14:30:07+02:00 work around cpython bug - - - - - f1039fad by Carl Friedrich Bolz-Tereick at 2022-08-23T09:16:54+02:00 fix bogus tests: always pass utf-8 encoded unicode strings, not the unicode type - - - - - 79d4a83f by Carl Friedrich Bolz-Tereick at 2022-08-23T09:31:59+02:00 disable assert that fails on pypy2 (not worth fixing pypy2, it's a cpy2 bug that was fixed on cpy3) - - - - - 08d1b4de by Carl Friedrich Bolz-Tereick at 2022-08-23T12:43:14+00:00 Merge branch 'branch/3148-disable-jit-via-envvar-default' into 'branch/default' #3148: disable JIT via env var Closes #3148 See merge request pypy/pypy!853 - - - - - 61017c0b by Carl Friedrich Bolz-Tereick at 2022-08-23T15:11:14+02:00 merge default --HG-- branch : py3.8 - - - - - e77ab165 by Carl Friedrich Bolz-Tereick at 2022-08-23T16:48:12+02:00 store the jit options into options, to make them testable without monkeypatching - - - - - d0819166 by Carl Friedrich Bolz-Tereick at 2022-08-23T17:09:05+02:00 merge default --HG-- branch : py3.8 - - - - - 6 changed files: - pypy/doc/man/pypy.1.rst - pypy/interpreter/app_main.py - pypy/interpreter/test/test_app_main.py - rpython/config/support.py - rpython/rlib/rsre/test/test_search.py - rpython/rlib/unicodedata/test/test_unicodedata.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/compare/c6843603fa720f8e34a45a7bbc7c48c3599a540c...d08191667c85374b432b0f717ae61d24bf8d540e -- View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/compare/c6843603fa720f8e34a45a7bbc7c48c3599a540c...d08191667c85374b432b0f717ae61d24bf8d540e 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] 2 commits: add the env var variant too
Carl Friedrich Bolz-Tereick pushed to branch branch/py3.8 at PyPy / pypy Commits: 2e56325b by Carl Friedrich Bolz-Tereick at 2022-08-23T17:14:39+02:00 add the env var variant too - - - - - 11cb5cc0 by Carl Friedrich Bolz-Tereick at 2022-08-23T17:16:32+02:00 merge default --HG-- branch : py3.8 - - - - - 1 changed file: - pypy/interpreter/test/test_app_main.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/compare/d08191667c85374b432b0f717ae61d24bf8d540e...11cb5cc06fa80998272c11e4a488daccaaeb4c5a -- View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/compare/d08191667c85374b432b0f717ae61d24bf8d540e...11cb5cc06fa80998272c11e4a488daccaaeb4c5a 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] add the env var variant too
Carl Friedrich Bolz-Tereick pushed to branch branch/default at PyPy / pypy Commits: 2e56325b by Carl Friedrich Bolz-Tereick at 2022-08-23T17:14:39+02:00 add the env var variant too - - - - - 1 changed file: - pypy/interpreter/test/test_app_main.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/2e56325b30488c74c9161502d6b708df04dc6547 -- View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/2e56325b30488c74c9161502d6b708df04dc6547 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/list-unrolling-bugs-3781] fix test_cffi_init_struct_with_list with slighly annoying code, see comment
Carl Friedrich Bolz-Tereick pushed to branch branch/list-unrolling-bugs-3781 at PyPy / pypy Commits: 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 - - - - - 1 changed file: - pypy/module/_cffi_backend/ctypestruct.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/ac5c6bce771a0b792e1bb56d61f830f37961c896 -- View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/ac5c6bce771a0b792e1bb56d61f830f37961c896 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