[pypy-commit] [Git][pypy/pypy][branch/py3.9] rposix macOS does not support 'sendfile_no_offset

2022-07-25 Thread Matti Picus (@mattip)
Matti Picus pushed to branch branch/py3.9 at PyPy / pypy Commits: 9dd39648 by Matti Picus at 2022-07-25T10:42:12+03:00 rposix macOS does not support 'sendfile_no_offset --HG-- branch : py3.9 - - - - - 1 changed file: - pypy/module/posix/interp_posix.py View it on Heptapod: https://foss.

[pypy-commit] [Git][pypy/pypy][branch/default] small optimization: if a unicode string is ascii only, .split() can use the

2022-07-25 Thread Carl Friedrich Bolz-Tereick (@cfbolz)
Carl Friedrich Bolz-Tereick pushed to branch branch/default at PyPy / pypy Commits: baf29a8a by Carl Friedrich Bolz-Tereick at 2022-07-25T13:57:22+02:00 small optimization: if a unicode string is ascii only, .split() can use the faster ascii-based whitespace detection for finding the places to

[pypy-commit] [Git][pypy/pypy][branch/issue3786] 2 commits: test now pases on CPython, fails on PyPy

2022-07-25 Thread Matti Picus (@mattip)
Matti Picus pushed to branch branch/issue3786 at PyPy / pypy Commits: a574e424 by Matti Picus at 2022-07-25T09:17:08+03:00 test now pases on CPython, fails on PyPy --HG-- branch : issue3786 - - - - - 14c7c4fe by Matti Picus at 2022-07-25T16:14:16+03:00 use the normalized w_exc in processing O

[pypy-commit] [Git][pypy/pypy][branch/default] add const qualifier

2022-07-25 Thread Matti Picus (@mattip)
Matti Picus pushed to branch branch/default at PyPy / pypy Commits: 7b326266 by Matti Picus at 2022-07-25T17:05:52+03:00 add const qualifier - - - - - 1 changed file: - rpython/rlib/_rsocket_rffi.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/7b326266901ef2a6f19f869

[pypy-commit] [Git][pypy/pypy][branch/py3.8] 4 commits: add a test for issue 3786.

2022-07-25 Thread Matti Picus (@mattip)
Matti Picus pushed to branch branch/py3.8 at PyPy / pypy Commits: 0414d4ea by Matti Picus at 2022-07-22T12:49:12+03:00 add a test for issue 3786. Calling PyRun_String("open('badfilename', 'r')" raises a SystemError on CPython, something is wrong. --HG-- branch : issue3786 - - - - - a574e424

[pypy-commit] [Git][pypy/pypy][branch/py3.9] 5 commits: add a test for issue 3786.

2022-07-25 Thread Matti Picus (@mattip)
Matti Picus pushed to branch branch/py3.9 at PyPy / pypy Commits: 0414d4ea by Matti Picus at 2022-07-22T12:49:12+03:00 add a test for issue 3786. Calling PyRun_String("open('badfilename', 'r')" raises a SystemError on CPython, something is wrong. --HG-- branch : issue3786 - - - - - a574e424

[pypy-commit] [Git][pypy/pypy][branch/py3.8] test, fix error message for PyFloat_AsDouble (from scipy tests)

2022-07-25 Thread Matti Picus (@mattip)
Matti Picus pushed to branch branch/py3.8 at PyPy / pypy Commits: 5f154c5a by Matti Picus at 2022-07-25T22:19:08+03:00 test, fix error message for PyFloat_AsDouble (from scipy tests) --HG-- branch : py3.8 - - - - - 2 changed files: - pypy/module/cpyext/test/test_floatobject.py - pypy/objsp

[pypy-commit] [Git][pypy/pypy] Pushed new branch branch/raise-in-thread

2022-07-25 Thread Carl Friedrich Bolz-Tereick (@cfbolz)
Carl Friedrich Bolz-Tereick pushed new branch branch/raise-in-thread at PyPy / pypy -- View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/tree/branch/raise-in-thread You're receiving this email because of your account on foss.heptapod.net. ___

[pypy-commit] [Git][pypy/pypy][branch/raise-in-thread] ec can be none here

2022-07-25 Thread Carl Friedrich Bolz-Tereick (@cfbolz)
Carl Friedrich Bolz-Tereick pushed to branch branch/raise-in-thread at PyPy / pypy Commits: f45c4df7 by Carl Friedrich Bolz-Tereick at 2022-07-25T22:21:51+02:00 ec can be none here --HG-- branch : raise-in-thread - - - - - 1 changed file: - pypy/module/signal/interp_signal.py View it on

[pypy-commit] [Git][pypy/pypy][branch/default] fix translation

2022-07-25 Thread Matti Picus (@mattip)
Matti Picus pushed to branch branch/default at PyPy / pypy Commits: f4414f71 by Matti Picus at 2022-07-26T06:23:32+03:00 fix translation - - - - - 1 changed file: - rpython/rlib/rsocket.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/f4414f71b7d22ad42df7ee115f2ac10c4

[pypy-commit] [Git][pypy/pypy][branch/py3.8] 2 commits: fix unused value error in test

2022-07-25 Thread Matti Picus (@mattip)
Matti Picus pushed to branch branch/py3.8 at PyPy / pypy Commits: e6adfb59 by Matti Picus at 2022-07-26T06:26:14+03:00 fix unused value error in test --HG-- branch : py3.8 - - - - - 02585637 by Matti Picus at 2022-07-25T10:42:12+03:00 rposix macOS does not support 'sendfile_no_offset --HG--

[pypy-commit] [Git][pypy/pypy][branch/py3.8] fix condition in test

2022-07-25 Thread Matti Picus (@mattip)
Matti Picus pushed to branch branch/py3.8 at PyPy / pypy Commits: 52f8e719 by Matti Picus at 2022-07-26T06:44:30+03:00 fix condition in test --HG-- branch : py3.8 - - - - - 1 changed file: - pypy/module/posix/test/test_posix2.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-