Home - Speed - Summaries: (trunk - py2.7) : (py3.8) : (py3.9) : (py3.10) : Everything : RPython - Nightly builds - Waterfall - Builders - About

Console View


Categories: aarch64 benchmark-run buildbot linux-ppc64 linux-s390x linux32 linux64 macos-arm64 macos-x86_64 numpy win32 win64
Legend:   Passed Failed Warnings Failed Again Running Exception Offline No data

aarch64 benchmark-run buildbot linux-ppc64 linux-s390x linux32 linux64 macos-arm64 macos-x86_64 numpy win32 win64
fc5ab68c4a4f...
Matti Picus
test, fix setting pyobj.tp_basicsize on legacy types

Still need to set pyobj.tp_as_buffer.bf_getbuffer, since it is expected to be on
the c-level pyobj
fbecd3adb578...
CF Bolz-Tereick
merge py3.9
f84ba0491b2a...
CF Bolz-Tereick
merge heads
ebbe11d1e9b4...
CF Bolz-Tereick
merge default
df2b0ac5aad5...
Matti Picus
debugging cruft broke the world
ddbacb0df4d0...
Matti Picus
merge py3.9
c896d52ccd31...
Matti Picus
limit ndims on buffer exports from memoryview to 64 (issue #4041)

The limit is specified in https://docs.python.org/3/c-api/buffer.html#c.PyBUF_MAX_NDIM
b9f097b1f89f...
Matti Picus
try to debug test failure that does not reproduce locally
afeef951893a...
Matti Picus
increment ob_refcnt when creating a pyobject, raise if the pyobject already exists
9fee334f22a8...
Matti Picus
more bytearray fixes: end cannot be longer than len() or it picks up the NULL byte
991642901c20...
CF Bolz-Tereick
#4031: stop the segfault for the example program

(this isn't a great bugfix, I didn't manage to write a small test for the
problem. will add the segfaulting program as a test in a py3 branch)
97e3e9b079ba...
CF Bolz-Tereick
merge default (#4038)
94b487e3492f...
Matti Picus
add hidden_applevel to _contextvars.Context.run

discovered in django PR 17500
936270c7efe3...
Matti Picus
convert data to list
916397de00af...
Matti Picus
prevent overflow in index calculations
8b684bc8d727...
Matti Picus
make sure an encoding does not have invalid surrogates
6eddfebd3b42...
Matti Picus
fix some storagesize and tp_basicsize errors, assert on missing tp_traverse

See hyp issue #460
6a4b214b4cd9...
CF Bolz-Tereick
merge heads
6479a137d66c...
Matti Picus
add create_pyobject_from_storage and use the HPy storage as the PyObject c struct.

Also rearrange the type creation so that legacy types call `attach` to fill all
the slots
5cb6aabe2874...
Matti Picus
align cpeyext use of PyBUF_MAX_NDIM with python3
3e7d8027dce8...
Matti Picus
add non-functional _ctypes.PyObj_FromPtr (fixes test error)
30460609b6dd...
Matti Picus
refactor and fix for *termios and const *winsize in rposix.py (issue #4042)
2d5443bbabb0...
Matti Picus
hack to make legacy hpytypes reflect the HPy_bf_getbuffer into the PyObject

Should all the slot be reflected?
13839dbf61e8...
CF Bolz-Tereick
#4031 add crashing program as a (now passing) unit test
096bf80a2a56...
Matti Picus
add reflection of applevel __buffer__ to tp_as_buffer.bf_getbuffer when creating a PyTypeObject