pypy/module/array/test/test_array.py::AppTestArray::()::test_reversingslice
self = <CallInfo when='teardown' exception: {
<C object Array of Char {'nolength': True} at 0x60000121db90>:
<C object Arra...os-x86-64/build/pypy/module/array/interp_array.py", line 214, in setlen
rffi.CCHARP.TO, byte_size, flavor='raw')
}>
func = <function <lambda> at 0x00007fc6e956e110>, when = 'teardown'
def __init__(self, func, when):
#: context of invocation: one of "setup", "call",
#: "teardown", "memocollect"
self.when = when
self.start = time()
try:
> self.result = func()
../_pytest/runner.py:150:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
> return CallInfo(lambda: ihook(item=item, **kwds), when=when)
../_pytest/runner.py:138:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <_HookCaller 'pytest_runtest_teardown'>
kwargs = {'__multicall__': <_MultiCall 0 results, 0 meths, kwargs={'item': <AppTestMethod 'test_reversingslice'>, 'nextitem': <...kwargs={...}>}>, 'item': <AppTestMethod 'test_reversingslice'>, 'nextitem': <AppTestMethod 'test_getslice_large_step'>}
def __call__(self, **kwargs):
assert not self.is_historic()
> return self._hookexec(self, self._nonwrappers + self._wrappers, kwargs)
../_pytest/vendored_packages/pluggy.py:724:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <_pytest.config.PytestPluginManager object at 0x00007fc7088fa988>
hook = <_HookCaller 'pytest_runtest_teardown'>, methods = []
kwargs = {'__multicall__': <_MultiCall 0 results, 0 meths, kwargs={'item': <AppTestMethod 'test_reversingslice'>, 'nextitem': <...kwargs={...}>}>, 'item': <AppTestMethod 'test_reversingslice'>, 'nextitem': <AppTestMethod 'test_getslice_large_step'>}
def _hookexec(self, hook, methods, kwargs):
# called from all hookcaller instances.
# enable_tracing will set its own wrapping function at self._inner_hookexec
> return self._inner_hookexec(hook, methods, kwargs)
../_pytest/vendored_packages/pluggy.py:338:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
hook = <_HookCaller 'pytest_runtest_teardown'>, methods = []
kwargs = {'__multicall__': <_MultiCall 0 results, 0 meths, kwargs={'item': <AppTestMethod 'test_reversingslice'>, 'nextitem': <...kwargs={...}>}>, 'item': <AppTestMethod 'test_reversingslice'>, 'nextitem': <AppTestMethod 'test_getslice_large_step'>}
self._inner_hookexec = lambda hook, methods, kwargs: \
> _MultiCall(methods, kwargs, hook.spec_opts).execute()
../_pytest/vendored_packages/pluggy.py:333:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <_MultiCall 0 results, 0 meths, kwargs={'item': <AppTestMethod 'test_reversingslice'>, 'nextitem': <AppTestMethod 'test_getslice_large_step'>, '__multicall__': <_MultiCall 0 results, 0 meths, kwargs={...}>}>
def execute(self):
all_kwargs = self.kwargs
self.results = results = []
firstresult = self.specopts.get("firstresult")
while self.hook_impls:
hook_impl = self.hook_impls.pop()
args = [all_kwargs[argname] for argname in hook_impl.argnames]
if hook_impl.hookwrapper:
> return _wrapped_call(hook_impl.function(*args), self.execute)
../_pytest/vendored_packages/pluggy.py:595:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
wrap_controller = <generator object pytest_runtest_teardown at 0x00007fc6fc8cc638>
func = <bound method _MultiCall.execute of <_MultiCall 0 results, 0 meths, kwargs={'i...large_step'>, '__multicall__': <_MultiCall 0 results, 0 meths, kwargs={...}>}>>
def _wrapped_call(wrap_controller, func):
""" Wrap calling to a function with a generator which needs to yield
exactly once. The yield point will trigger calling the wrapped function
and return its _CallOutcome to the yield point. The generator then needs
to finish (raise StopIteration) in order for the wrapped call to complete.
"""
try:
next(wrap_controller) # first yield
except StopIteration:
_raise_wrapfail(wrap_controller, "did not yield")
call_outcome = _CallOutcome(func)
try:
wrap_controller.send(call_outcome)
_raise_wrapfail(wrap_controller, "has second yield")
except StopIteration:
pass
> return call_outcome.get_result()
../_pytest/vendored_packages/pluggy.py:253:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <_pytest.vendored_packages.pluggy._CallOutcome instance at 0x00007fc6da139220>
def get_result(self):
if self.excinfo is None:
return self.result
else:
ex = self.excinfo
if _py3:
raise ex[1].with_traceback(ex[2])
> _reraise(*ex) # noqa
../_pytest/vendored_packages/pluggy.py:279:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <_pytest.vendored_packages.pluggy._CallOutcome instance at 0x00007fc6da139220>
func = <bound method _MultiCall.execute of <_MultiCall 0 results, 0 meths, kwargs={'i...large_step'>, '__multicall__': <_MultiCall 0 results, 0 meths, kwargs={...}>}>>
def __init__(self, func):
try:
> self.result = func()
../_pytest/vendored_packages/pluggy.py:264:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <_MultiCall 0 results, 0 meths, kwargs={'item': <AppTestMethod 'test_reversingslice'>, 'nextitem': <AppTestMethod 'test_getslice_large_step'>, '__multicall__': <_MultiCall 0 results, 0 meths, kwargs={...}>}>
def execute(self):
all_kwargs = self.kwargs
self.results = results = []
firstresult = self.specopts.get("firstresult")
while self.hook_impls:
hook_impl = self.hook_impls.pop()
args = [all_kwargs[argname] for argname in hook_impl.argnames]
if hook_impl.hookwrapper:
return _wrapped_call(hook_impl.function(*args), self.execute)
> res = hook_impl.function(*args)
../_pytest/vendored_packages/pluggy.py:596:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <rpython.conftest.LeakFinder instance at 0x00007fc6f86a36e0>
item = <AppTestMethod 'test_reversingslice'>
@pytest.hookimpl(trylast=True)
def pytest_runtest_teardown(self, item):
if not isinstance(item, py.test.collect.Function):
return
if (not getattr(item.obj, 'dont_track_allocations', False)
and leakfinder.TRACK_ALLOCATIONS):
kwds = {}
try:
kwds['do_collection'] = item.track_allocations_collect
except AttributeError:
pass
item._pypytest_leaks = leakfinder.stop_tracking_allocations(False,
**kwds)
else: # stop_tracking_allocations() already called
item._pypytest_leaks = None
# check for leaks, but only if the test passed so far
if getattr(item, '_success', False) and item._pypytest_leaks:
> raise leakfinder.MallocMismatch(item._pypytest_leaks)
E MallocMismatch: {
E
E <C object Array of Char {'nolength': True} at 0x60000121db90>:
E <C object Array of Char {'nolength': True} at 0x60000102c200>:
E <C object Array of Char {'nolength': True} at 0x60000102c3a0>:
E <C object Array of Char {'nolength': True} at 0x600001210ab0>:
E <C object Array of Char {'nolength': True} at 0x600001212ed0>:
E <C object Array of Char {'nolength': True} at 0x60000102c2c0>:
E <C object Array of Char {'nolength': True} at 0x60000102c5a0>:
E <C object Array of Char {'nolength': True} at 0x600001215690>:
E <C object Array of Char {'nolength': True} at 0x60000121cca0>:
E <C object Array of Char {'nolength': True} at 0x60000102c1a0>:
E <C object Array of Char {'nolength': True} at 0x60000102c400>:
E <C object Array of Char {'nolength': True} at 0x60000102c1c0>:
E <C object Array of Char {'nolength': True} at 0x60000102c220>:
E <C object Array of Char {'nolength': True} at 0x60000102c700>:
E <C object Array of Char {'nolength': True} at 0x60000102c240>:
E <C object Array of Char {'nolength': True} at 0x60000102c720>:
E <C object Array of Char {'nolength': True} at 0x6000012ef2e0>:
E <C object Array of Char {'nolength': True} at 0x600001e40a20>:
E <C object Array of Char {'nolength': True} at 0x600001e41200>:
E <C object Array of Char {'nolength': True} at 0x60000102c360>:
E <C object Array of Char {'nolength': True} at 0x60000102c4a0>:
E <C object Array of Char {'nolength': True} at 0x60000102c9a0>:
E <C object Array of Char {'nolength': True} at 0x60000102c0e0>:
E <C object Array of Char {'nolength': True} at 0x60000102c3c0>:
E <C object Array of Char {'nolength': True} at 0x60000102c300>:
E <C object Array of Char {'nolength': True} at 0x60000102c380>:
E <C object Array of Char {'nolength': True} at 0x60000121d2e0>:
E <C object Array of Char {'nolength': True} at 0x600001209210>:
E <C object Array of Char {'nolength': True} at 0x60000102c180>:
E <C object Array of Char {'nolength': True} at 0x60000102c560>:
E <C object Array of Char {'nolength': True} at 0x6000012ee270>:
E <C object Array of Char {'nolength': True} at 0x6000012ef670>:
E <C object Array of Char {'nolength': True} at 0x60000102c6e0>:
E <C object Array of Char {'nolength': True} at 0x60000102c620>:
E <C object Array of Char {'nolength': True} at 0x60000121ec10>:
E <C object Array of Char {'nolength': True} at 0x600001210b20>:
E <C object Array of Char {'nolength': True} at 0x60000102c060>:
E <C object Array of Char {'nolength': True} at 0x60000102c280>:
E <C object Array of Char {'nolength': True} at 0x6000012ecb90>:
E <C object Array of Char {'nolength': True} at 0x6000012ee310>:
E <C object Array of Char {'nolength': True} at 0x60000102c740>:
E <C object Array of Char {'nolength': True} at 0x60000102c7c0>:
E <C object Array of Char {'nolength': True} at 0x60000102c440>:
E <C object Array of Char {'nolength': True} at 0x600001211c70>:
E <C object Array of Char {'nolength': True} at 0x600001e41320>:
E <C object Array of Char {'nolength': True} at 0x600001e41080>:
E <C object Array of Char {'nolength': True} at 0x60000102c660>:
E <C object Array of Char {'nolength': True} at 0x60000102c8c0>:
E <C object Array of Char {'nolength': True} at 0x60000102c940>:
E <C object Array of Char {'nolength': True} at 0x60000102c020>:
E <C object Array of Char {'nolength': True} at 0x60000102c880>:
E <C object Array of Char {'nolength': True} at 0x60000102c4c0>:
E <C object Array of Char {'nolength': True} at 0x60000102c7a0>:
E <C object Array of Char {'nolength': True} at 0x60000102ca40>:
E <C object Array of Char {'nolength': True} at 0x60000102c260>:
E <C object Array of Char {'nolength': True} at 0x60000102c960>:
E <C object Array of Char {'nolength': True} at 0x6000010507c0>:
E <C object Array of Char {'nolength': True} at 0x600001050ac0>:
E <C object Array of Char {'nolength': True} at 0x600001050be0>:
E <C object Array of Char {'nolength': True} at 0x600001e5e010>:
E <C object Array of Char {'nolength': True} at 0x600001050f00>:
E <C object Array of Char {'nolength': True} at 0x600001050600>:
E <C object Array of Char {'nolength': True} at 0x6000010505a0>:
E <C object Array of Char {'nolength': True} at 0x600001050b60>:
E <C object Array of Char {'nolength': True} at 0x600001050460>:
E <C object Array of Char {'nolength': True} at 0x600001050760>:
E <C object Array of Char {'nolength': True} at 0x600001050ea0>:
E <C object Array of Char {'nolength': True} at 0x600001050c20>:
E ...
E File "/Users/matti/build-worker-x86_64/own-macos-x86-64/build/pypy/module/array/interp_array.py", line 414, in descr_fromlist
E self.fromsequence(w_lst)
E File "/Users/matti/build-worker-x86_64/own-macos-x86-64/build/pypy/module/array/interp_array.py", line 1106, in fromsequence
E self.setlen(oldlen + len(lst))
E File "/Users/matti/build-worker-x86_64/own-macos-x86-64/build/pypy/module/array/interp_array.py", line 214, in setlen
E rffi.CCHARP.TO, byte_size, flavor='raw')
E
E <C object Array of Char {'nolength': True} at 0x6000012127e0>:
E <C object Array of Char {'nolength': True} at 0x600001232460>:
E <C object Array of Char {'nolength': True} at 0x60000121db00>:
E <C object Array of Char {'nolength': True} at 0x60000121c6f0>:
E <C object Array of Char {'nolength': True} at 0x6000012edae0>:
E <C object Array of Char {'nolength': True} at 0x60000121d6c0>:
E <C object Array of Char {'nolength': True} at 0x6000012ec480>:
E ...
E File "/Users/matti/build-worker-x86_64/own-macos-x86-64/build/pypy/module/array/interp_array.py", line 645, in descr_getitem
E return self.getitem_slice(space, w_idx)
E File "/Users/matti/build-worker-x86_64/own-macos-x86-64/build/pypy/module/array/interp_array.py", line 1242, in getitem_slice
E w_a.setlen(size, overallocate=False)
E File "/Users/matti/build-worker-x86_64/own-macos-x86-64/build/pypy/module/array/interp_array.py", line 214, in setlen
E rffi.CCHARP.TO, byte_size, flavor='raw')
E
E <C object Array of Char {'nolength': True} at 0x600001e40ed0>:
E <C object Array of Char {'nolength': True} at 0x600001e41020>:
E ...
E File "/Users/matti/build-worker-x86_64/own-macos-x86-64/build/pypy/module/array/interp_array.py", line 1280, in setitem_slice
E self.fromsequence(w_lst)
E File "/Users/matti/build-worker-x86_64/own-macos-x86-64/build/pypy/module/array/interp_array.py", line 1106, in fromsequence
E self.setlen(oldlen + len(lst))
E File "/Users/matti/build-worker-x86_64/own-macos-x86-64/build/pypy/module/array/interp_array.py", line 214, in setlen
E rffi.CCHARP.TO, byte_size, flavor='raw')
E }
../rpython/conftest.py:103: MallocMismatch
---------- Captured stderr call ----------
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000121db90>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc703ad0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c200>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc703b08> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c3a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc703b40> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x6000012127e0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc703b78> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x600001210ab0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc715408> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x600001212ed0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc715440> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c2c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc715478> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c5a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc7154b0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x600001232460>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc7154e8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x600001215690>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc715520> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000121cca0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc7271d8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c1a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc727210> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c400>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc727e18> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000121db00>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc727e50> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c1c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc727e88> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c220>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc727ec0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c700>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc727ef8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x600001e40ed0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc757440> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c240>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc7574e8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c720>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc757520> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x6000012ef2e0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc757558> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x600001e40a20>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc768870> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x600001e41200>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc769050> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c360>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc769088> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c4a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc769168> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c9a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc7a55c8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c0e0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc82dc58> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c3c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc82dc90> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c300>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc8498a0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c380>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc8498d8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000121c6f0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc849910> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000121d2e0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc849948> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x600001209210>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc849980> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c180>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc8499b8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c560>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc855558> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x6000012edae0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc855590> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x6000012ee270>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc8555c8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x6000012ef670>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc855600> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c6e0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc855638> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c620>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc864d78> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000121d6c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc864db0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000121ec10>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc864de8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x600001210b20>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc864e20> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c060>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc864e58> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c280>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc864e90> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x6000012ec480>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc874bb8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x6000012ecb90>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc874bf0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x6000012ee310>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc874c28> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c740>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc874c60> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x600001e41020>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc874c98> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c7c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc884330> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c440>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc884368> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x600001211c70>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc8843a0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x600001e41320>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc885168> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x600001e41080>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc885a60> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c660>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc885a98> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c8c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc885b78> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c940>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc885bb0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c020>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc8c4f38> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c880>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc8c4f70> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c4c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc8c5cc8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c7a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc8c5d00> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102ca40>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc8c5de0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c260>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc8f4e58> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x60000102c960>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc8f4f38> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x6000010507c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc904e90> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x600001050ac0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc905de0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x600001050be0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6fc905e18> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x600001e5e010>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6da0cfb40> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x600001050f00>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6da0cfb78> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x600001050600>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6da106cd0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x6000010505a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6da106d08> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x600001050b60>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6da106de8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x600001050460>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6da116598> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x600001050760>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6da1165d0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x600001050ea0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6da1174e8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x600001050c20>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x00007fc6da1175c8> ignored
builder: own-macos-x86-64 build #1261+
test: pypy/module/array/test/test_array.py::AppTestArray::()::test_reversingslice