pypy/module/array/test/test_array.py::AppTestArray::()::test_reversingslice
self = <CallInfo when='teardown' exception: {
<C object Array of Char {'nolength': True} at 0x2365a79a180>:
<C object Array...in-x86-64\build\pypy\module\array\interp_array.py", line 214, in setlen
rffi.CCHARP.TO, byte_size, flavor='raw')
}>
func = <function <lambda> at 0x000002365b6c55b0>, 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 0x000002364e341440>
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 0x000002365ddcf330>
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 0x000002365de844a0>
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 0x000002365de844a0>
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 0x000002364fba0c60>
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 0x2365a79a180>:
E <C object Array of Char {'nolength': True} at 0x2365a799fe0>:
E <C object Array of Char {'nolength': True} at 0x2365a79a580>:
E <C object Array of Char {'nolength': True} at 0x2365a79a160>:
E <C object Array of Char {'nolength': True} at 0x2365a799ea0>:
E <C object Array of Char {'nolength': True} at 0x2365a799f20>:
E <C object Array of Char {'nolength': True} at 0x2365a79a460>:
E <C object Array of Char {'nolength': True} at 0x2365a79a080>:
E <C object Array of Char {'nolength': True} at 0x2365a799e80>:
E <C object Array of Char {'nolength': True} at 0x2365a799fc0>:
E <C object Array of Char {'nolength': True} at 0x2365a79a320>:
E <C object Array of Char {'nolength': True} at 0x2365a79a340>:
E <C object Array of Char {'nolength': True} at 0x2365a79a2a0>:
E <C object Array of Char {'nolength': True} at 0x2365a79aa20>:
E <C object Array of Char {'nolength': True} at 0x2365a79a780>:
E <C object Array of Char {'nolength': True} at 0x2365a79a880>:
E <C object Array of Char {'nolength': True} at 0x2365a79a9c0>:
E <C object Array of Char {'nolength': True} at 0x2365a79adc0>:
E <C object Array of Char {'nolength': True} at 0x2365a79a600>:
E <C object Array of Char {'nolength': True} at 0x2365a5a8d10>:
E <C object Array of Char {'nolength': True} at 0x2365a79ab40>:
E <C object Array of Char {'nolength': True} at 0x2365a5a8c20>:
E <C object Array of Char {'nolength': True} at 0x2365a5a8e90>:
E <C object Array of Char {'nolength': True} at 0x2365a79a760>:
E <C object Array of Char {'nolength': True} at 0x2365a79aca0>:
E <C object Array of Char {'nolength': True} at 0x2365a79a680>:
E <C object Array of Char {'nolength': True} at 0x2365a79a840>:
E <C object Array of Char {'nolength': True} at 0x2365a79a6a0>:
E <C object Array of Char {'nolength': True} at 0x2365a79a7e0>:
E <C object Array of Char {'nolength': True} at 0x2365a79abe0>:
E <C object Array of Char {'nolength': True} at 0x2365a79a660>:
E <C object Array of Char {'nolength': True} at 0x2365a79aac0>:
E <C object Array of Char {'nolength': True} at 0x2365a79a800>:
E <C object Array of Char {'nolength': True} at 0x2365a79a720>:
E <C object Array of Char {'nolength': True} at 0x2365a79aae0>:
E <C object Array of Char {'nolength': True} at 0x2365a79ace0>:
E <C object Array of Char {'nolength': True} at 0x2365a79aa60>:
E <C object Array of Char {'nolength': True} at 0x2365a79b400>:
E <C object Array of Char {'nolength': True} at 0x2365a5a8ec0>:
E <C object Array of Char {'nolength': True} at 0x2365a79aee0>:
E <C object Array of Char {'nolength': True} at 0x2365a5a93a0>:
E <C object Array of Char {'nolength': True} at 0x2365a5a9250>:
E <C object Array of Char {'nolength': True} at 0x2365a79af60>:
E <C object Array of Char {'nolength': True} at 0x2365a79b4c0>:
E <C object Array of Char {'nolength': True} at 0x2365a79b160>:
E <C object Array of Char {'nolength': True} at 0x2365a79b1e0>:
E <C object Array of Char {'nolength': True} at 0x2365a79af80>:
E <C object Array of Char {'nolength': True} at 0x2365a79ade0>:
E <C object Array of Char {'nolength': True} at 0x2365a79b380>:
E <C object Array of Char {'nolength': True} at 0x2365a79b3a0>:
E <C object Array of Char {'nolength': True} at 0x2365a79b260>:
E <C object Array of Char {'nolength': True} at 0x2365a79b420>:
E <C object Array of Char {'nolength': True} at 0x2365a79b440>:
E <C object Array of Char {'nolength': True} at 0x2365a79b0a0>:
E <C object Array of Char {'nolength': True} at 0x2365a79b560>:
E <C object Array of Char {'nolength': True} at 0x2365a79b520>:
E <C object Array of Char {'nolength': True} at 0x2365a79b100>:
E <C object Array of Char {'nolength': True} at 0x2365a79b2e0>:
E <C object Array of Char {'nolength': True} at 0x2365a79b300>:
E <C object Array of Char {'nolength': True} at 0x2365a79afe0>:
E <C object Array of Char {'nolength': True} at 0x2365a79af20>:
E <C object Array of Char {'nolength': True} at 0x2365a79ae20>:
E <C object Array of Char {'nolength': True} at 0x2365a79b120>:
E <C object Array of Char {'nolength': True} at 0x2365a79b080>:
E <C object Array of Char {'nolength': True} at 0x2365a79bdc0>:
E <C object Array of Char {'nolength': True} at 0x2365a5a8d40>:
E <C object Array of Char {'nolength': True} at 0x2365a79ba40>:
E <C object Array of Char {'nolength': True} at 0x2365a5a8890>:
E <C object Array of Char {'nolength': True} at 0x2365a5a9a30>:
E <C object Array of Char {'nolength': True} at 0x2365a79b7c0>:
E <C object Array of Char {'nolength': True} at 0x2365a79b660>:
E <C object Array of Char {'nolength': True} at 0x2365a79bc00>:
E <C object Array of Char {'nolength': True} at 0x2365a79b920>:
E <C object Array of Char {'nolength': True} at 0x2365a79bac0>:
E <C object Array of Char {'nolength': True} at 0x2365a79b6c0>:
E <C object Array of Char {'nolength': True} at 0x2365a79bb80>:
E <C object Array of Char {'nolength': True} at 0x2365a79b980>:
E <C object Array of Char {'nolength': True} at 0x2365a79b6a0>:
E <C object Array of Char {'nolength': True} at 0x2365a79bd80>:
E <C object Array of Char {'nolength': True} at 0x2365a79b5e0>:
E <C object Array of Char {'nolength': True} at 0x2365a79b720>:
E <C object Array of Char {'nolength': True} at 0x2365a79ba60>:
E <C object Array of Char {'nolength': True} at 0x2365a79bc20>:
E <C object Array of Char {'nolength': True} at 0x2365a79b640>:
E <C object Array of Char {'nolength': True} at 0x2365a79b8a0>:
E <C object Array of Char {'nolength': True} at 0x2365a79bbe0>:
E <C object Array of Char {'nolength': True} at 0x2365a79b740>:
E <C object Array of Char {'nolength': True} at 0x2365a79b840>:
E <C object Array of Char {'nolength': True} at 0x2365a79ba80>:
E <C object Array of Char {'nolength': True} at 0x2365a79b760>:
E <C object Array of Char {'nolength': True} at 0x2365a79b860>:
E <C object Array of Char {'nolength': True} at 0x2365a79b780>:
E <C object Array of Char {'nolength': True} at 0x2365a5a90d0>:
E <C object Array of Char {'nolength': True} at 0x2365a79bb00>:
E <C object Array of Char {'nolength': True} at 0x2365a5a8950>:
E <C object Array of Char {'nolength': True} at 0x2365a5a8c80>:
E <C object Array of Char {'nolength': True} at 0x2365a79bca0>:
E <C object Array of Char {'nolength': True} at 0x2365a79b700>:
E <C object Array of Char {'nolength': True} at 0x2365a79bb60>:
E <C object Array of Char {'nolength': True} at 0x2365a79bbc0>:
E <C object Array of Char {'nolength': True} at 0x2365a79bce0>:
E <C object Array of Char {'nolength': True} at 0x2365a79be60>:
E <C object Array of Char {'nolength': True} at 0x2365a79bf80>:
E <C object Array of Char {'nolength': True} at 0x2365a79c300>:
E <C object Array of Char {'nolength': True} at 0x2365a79c120>:
E <C object Array of Char {'nolength': True} at 0x2365a79c440>:
E <C object Array of Char {'nolength': True} at 0x2365a79bf40>:
E <C object Array of Char {'nolength': True} at 0x2365a79c320>:
E <C object Array of Char {'nolength': True} at 0x2365a79c220>:
E <C object Array of Char {'nolength': True} at 0x2365a79c200>:
E <C object Array of Char {'nolength': True} at 0x2365a5a8b30>:
E <C object Array of Char {'nolength': True} at 0x2365a5a88c0>:
E <C object Array of Char {'nolength': True} at 0x2365a5a8ad0>:
E <C object Array of Char {'nolength': True} at 0x2365a79c0c0>:
E <C object Array of Char {'nolength': True} at 0x2365a79bf60>:
E <C object Array of Char {'nolength': True} at 0x2365a79c160>:
E <C object Array of Char {'nolength': True} at 0x2365a79c4c0>:
E <C object Array of Char {'nolength': True} at 0x2365a79c260>:
E <C object Array of Char {'nolength': True} at 0x2365a79c1e0>:
E <C object Array of Char {'nolength': True} at 0x2365a79c0a0>:
E <C object Array of Char {'nolength': True} at 0x2365a79c000>:
E ...
E File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\array\interp_array.py", line 414, in descr_fromlist
E self.fromsequence(w_lst)
E File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\array\interp_array.py", line 1106, in fromsequence
E self.setlen(oldlen + len(lst))
E File "d:\pypy_stuff\buildbot64\slave\own-win-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 0x2365d7f1a80>:
E <C object Array of Char {'nolength': True} at 0x2365d7f1420>:
E <C object Array of Char {'nolength': True} at 0x2365d7f0c10>:
E <C object Array of Char {'nolength': True} at 0x2365d7f06d0>:
E <C object Array of Char {'nolength': True} at 0x2365d7efea0>:
E <C object Array of Char {'nolength': True} at 0x2365d7f4fe0>:
E <C object Array of Char {'nolength': True} at 0x2365d7f20d0>:
E <C object Array of Char {'nolength': True} at 0x2365d7f4010>:
E <C object Array of Char {'nolength': True} at 0x2365d7f22b0>:
E <C object Array of Char {'nolength': True} at 0x2365a590420>:
E <C object Array of Char {'nolength': True} at 0x236571c0310>:
E <C object Array of Char {'nolength': True} at 0x23657701970>:
E ...
E File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\array\interp_array.py", line 645, in descr_getitem
E return self.getitem_slice(space, w_idx)
E File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\array\interp_array.py", line 1242, in getitem_slice
E w_a.setlen(size, overallocate=False)
E File "d:\pypy_stuff\buildbot64\slave\own-win-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 0x2365a5a8a70>:
E <C object Array of Char {'nolength': True} at 0x2365a5a9130>:
E <C object Array of Char {'nolength': True} at 0x2365a5a93d0>:
E <C object Array of Char {'nolength': True} at 0x2365a5a8f50>:
E ...
E File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\array\interp_array.py", line 1280, in setitem_slice
E self.fromsequence(w_lst)
E File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\array\interp_array.py", line 1106, in fromsequence
E self.setlen(oldlen + len(lst))
E File "d:\pypy_stuff\buildbot64\slave\own-win-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 0x2365a79a180>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d8c9cc8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a799fe0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d8db018> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79a580>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d8db050> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365d7f1a80>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d8db088> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79a160>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d8db0c0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a799ea0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d8e8608> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a799f20>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d8e8640> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79a460>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d8e8678> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365d7f1420>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d8e86b0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79a080>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d8e86e8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a799e80>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d8e8720> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a799fc0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d8fc138> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79a320>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d8fc170> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365d7f0c10>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d8fc1a8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79a340>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d8fc1e0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79a2a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d8fc218> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79aa20>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d8fdf30> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79a780>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d8fdf68> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365d7f06d0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d8fdfa0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79a880>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d912020> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79a9c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d964c98> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79adc0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d964cd0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a5a8a70>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d964d08> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79a600>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d985408> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a5a8d10>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d985440> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79ab40>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d985478> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a5a8c20>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d9979f0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a5a8e90>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d9cf520> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79a760>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d9cf558> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79aca0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d9cf638> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79a680>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365d9cf670> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79a840>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365da80f70> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79a6a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365da80fa8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79a7e0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365da81e18> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79abe0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365da81e50> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79a660>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365da81f30> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79aac0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365da81f68> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79a800>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365da8d7c0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79a720>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365da8d7f8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79aae0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365da9e720> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79ace0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365da9e758> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79aa60>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365da9e838> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a5a9130>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365da9e870> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b400>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365da9fcc8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a5a8ec0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365da9fd00> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79aee0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365da9fd38> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a5a93a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365da9fd70> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a5a9250>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365daab0f8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79af60>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365daabb08> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b4c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365daabbe8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b160>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365daabc20> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b1e0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365db18c98> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79af80>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365db18cd0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79ade0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365db18db0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b380>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365db2e138> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365d7efea0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365db2e170> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b3a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365db2e1a8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b260>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365db2f018> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b420>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365db2f050> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b440>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365db2f088> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365d7f4fe0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365db2f0c0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b0a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365db2f0f8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b560>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365db42720> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b520>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365db42758> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b100>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365db42790> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365d7f20d0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365db427c8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b2e0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365db42800> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b300>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365db42838> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79afe0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365db501e0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79af20>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365db50218> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365d7f4010>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365db50250> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79ae20>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365db64918> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b120>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365db64950> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b080>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365db64988> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a5a93d0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365db649c0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79bdc0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365db65d00> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a5a8d40>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365db65d38> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79ba40>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365db65d70> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a5a8890>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dbaec28> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a5a9a30>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dbaec98> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b7c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dbe0f00> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b660>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dbe1a60> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79bc00>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dbe1a98> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b920>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dbe1b78> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79bac0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dc1dfa0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b6c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dc280c8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79bb80>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dce94b0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365d7f22b0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dce94e8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b980>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dce9520> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b6a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dce9558> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79bd80>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dce9590> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b5e0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dcf6e58> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a590420>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dcf6e90> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b720>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dcf6ec8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79ba60>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dcf6f00> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79bc20>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dcf6f38> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b640>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dcf6f70> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x236571c0310>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dd04b80> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b8a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dd04bb8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79bbe0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dd04bf0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b740>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dd04c28> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b840>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dd04c60> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x23657701970>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dd04c98> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79ba80>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dd164f0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b760>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dd16528> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b860>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dd16560> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a5a8f50>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dd16598> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b780>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dd16640> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a5a90d0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dd20250> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79bb00>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dd20288> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a5a8950>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dd210f8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a5a8c80>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dd21168> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79bca0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dd21b78> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79b700>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dd21c58> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79bb60>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dd21c90> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79bbc0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dda8e58> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79bce0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dda8e90> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79be60>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dda9d00> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79bf80>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dda9d38> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79c300>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dda9e18> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79c120>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dda9e50> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79c440>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365ddb70f8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79bf40>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365ddb7130> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79c320>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365ddb7ec0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79c220>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365ddb7fa0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79c200>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365ddc72b8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a5a8b30>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365ddc72f0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a5a88c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dde41e0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a5a8ad0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dde4c60> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79c0c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365dde4c98> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79bf60>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365de10058> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79c160>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365de10138> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79c4c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365de10170> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79c260>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365de11210> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79c1e0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365de11248> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79c0a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365de643a0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True} at 0x2365a79c000>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x000002365de64480> ignored
builder: own-win-x86-64 build #2292+
test: pypy/module/array/test/test_array.py::AppTestArray::()::test_reversingslice