[pypy-commit] [Git][pypy/pypy][branch/default] 5 commits: (antocuni, arigo): add a passing test which we needed to convince ourselves that…

2020-03-13 Thread Antonio Cuni
Antonio Cuni pushed to branch branch/default at PyPy / pypy Commits: 9d641148 by Antonio Cuni at 2019-11-18T15:27:18+01:00 (antocuni, arigo): add a passing test which we needed to convince ourselves that you can raise exceptions from within llhelper()ed functions --HG-- branch : hpy-rpython-bac

[pypy-commit] [Git][pypy/pypy][branch/default] 2 commits: Change the signature of rlib.buffer.Buffer.getslice():

2020-03-13 Thread Armin Rigo
Armin Rigo pushed to branch branch/default at PyPy / pypy Commits: 586265e8 by Armin Rigo at 2020-03-13T12:15:05+01:00 Change the signature of rlib.buffer.Buffer.getslice(): Now it doesn't take a 'stop' argument any more. This prevents bugs in some subclasses' implmentations that rely on 'stop'

[pypy-commit] [Git][pypy/pypy][branch/default] Untranslated, rlib.rgil now implements its own "gil" instead of relying on the

2020-03-13 Thread Armin Rigo
Armin Rigo pushed to branch branch/default at PyPy / pypy Commits: 6f180f8d by Armin Rigo at 2020-03-13T13:07:27+01:00 Untranslated, rlib.rgil now implements its own "gil" instead of relying on the one from the C code---which doesn't work because the latter falls back to "1234" as the thread ide

[pypy-commit] [Git][pypy/pypy][branch/default] Support buffer slices with the end index larger than the length of the buffer in…

2020-03-13 Thread Manuel Jacob
Manuel Jacob pushed to branch branch/default at PyPy / pypy Commits: bd512511 by Manuel Jacob at 2020-03-13T13:56:46+01:00 Support buffer slices with the end index larger than the length of the buffer in RPython (in __getslice__()). All other RPython classes seem to support that as well (e.g. r