Home - Summaries: (main) : (py3.11) : Everything - Nightly builds - Benchmarks - RPython - Builders - About

pypy/module/array/test/test_array.py::AppTestArray::()::test_reversingslice

self = <CallInfo when='teardown' exception: {

<C object Array of Char {'nolength': True}  at 0x22d803a8ac0>:
<C object Array...in-x86-64\build\pypy\module\array\interp_array.py", line 190, in setlen
    rffi.CCHARP.TO, byte_size, flavor='raw')
}>
func = <function <lambda> at 0x0000022d81aee4d0>, 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 0x0000022df87615c8>
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 0x0000022d81af3790>
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 0x0000022dfdf49da0>

    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 0x0000022dfdf49da0>
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 0x0000022dfa034660>
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 0x22d803a8ac0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a89c0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a8b00>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a91c0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a9440>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a9160>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a9560>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a96c0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a92c0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a94e0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a95c0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a9780>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a97c0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a9640>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a96a0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a9fe0>:
E           <C object Array of Char {'nolength': True}  at 0x22dfd90e210>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aa0e0>:
E           <C object Array of Char {'nolength': True}  at 0x22dff90bf60>:
E           <C object Array of Char {'nolength': True}  at 0x22dff90c800>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a9940>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a9980>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a9d60>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a9ac0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a9e20>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aa020>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aa100>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a9bc0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a9b20>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aa0c0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aa060>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aa000>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a9a20>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a9ea0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a9c00>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a9be0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a9d80>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aa840>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aa7a0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aa2c0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aa3a0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aa6c0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aa200>:
E           <C object Array of Char {'nolength': True}  at 0x22dff90c4a0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aa360>:
E           <C object Array of Char {'nolength': True}  at 0x22dff90c5f0>:
E           <C object Array of Char {'nolength': True}  at 0x22dff90c890>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aa780>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aa3e0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aa4c0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aa740>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aa140>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aa460>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aa580>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aa1c0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aac80>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aab20>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aaac0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aab00>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ab000>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aae20>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aaf20>:
E           <C object Array of Char {'nolength': True}  at 0x22dff90c3e0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aac60>:
E           <C object Array of Char {'nolength': True}  at 0x22dff90bed0>:
E           <C object Array of Char {'nolength': True}  at 0x22dfd90deb0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aaf40>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aaf60>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aae40>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ab040>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aada0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aad20>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aaae0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aa9a0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aafe0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aae80>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aafc0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aac00>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ab020>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aae60>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aabe0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aaf00>:
E           <C object Array of Char {'nolength': True}  at 0x22dfd90e2d0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ab600>:
E           <C object Array of Char {'nolength': True}  at 0x22dff90bcf0>:
E           <C object Array of Char {'nolength': True}  at 0x22dff90cb60>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ab520>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ab860>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ab720>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ab7e0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ab660>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ab6a0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ab740>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ab6c0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ab140>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ab440>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ab380>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aba80>:
E           <C object Array of Char {'nolength': True}  at 0x22d803abae0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803abba0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803abb00>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ac100>:
E           <C object Array of Char {'nolength': True}  at 0x22d803abca0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ab940>:
E           <C object Array of Char {'nolength': True}  at 0x22d803abc20>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ac040>:
E           <C object Array of Char {'nolength': True}  at 0x22d803abea0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803abce0>:
E           <C object Array of Char {'nolength': True}  at 0x22dff90c4d0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ab980>:
E           <C object Array of Char {'nolength': True}  at 0x22dff90c5c0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803abec0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803abb80>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ab9a0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803abf80>:
E           <C object Array of Char {'nolength': True}  at 0x22d803abcc0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ab960>:
E           <C object Array of Char {'nolength': True}  at 0x22d803abde0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803abf60>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ac760>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ac8a0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ac280>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ac8c0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ac600>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ac380>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ac700>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ac1a0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ac180>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ac1c0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ac240>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ac3c0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803acd20>:
E           <C object Array of Char {'nolength': True}  at 0x22d803acd60>:
E           <C object Array of Char {'nolength': True}  at 0x22d803acda0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ad000>:
E           <C object Array of Char {'nolength': True}  at 0x22d803acde0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ace80>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ad0c0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803acb40>:
E           <C object Array of Char {'nolength': True}  at 0x22d803acf00>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ad020>:
E           <C object Array of Char {'nolength': True}  at 0x22dff90c440>:
E           <C object Array of Char {'nolength': True}  at 0x22d803acea0>:
E           <C object Array of Char {'nolength': True}  at 0x22dff90cbf0>:
E           <C object Array of Char {'nolength': True}  at 0x22dff90c380>:
E           <C object Array of Char {'nolength': True}  at 0x22d803acfa0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ad0a0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803acd80>:
E           <C object Array of Char {'nolength': True}  at 0x22d803acc00>:
E           <C object Array of Char {'nolength': True}  at 0x22d803acc60>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ad1e0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ad660>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ad580>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ad900>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ad8e0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ad720>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ad4e0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ad740>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ad380>:
E           <C object Array of Char {'nolength': True}  at 0x22d803adc80>:
E           <C object Array of Char {'nolength': True}  at 0x22dff90be10>:
E           <C object Array of Char {'nolength': True}  at 0x22d803adb60>:
E           <C object Array of Char {'nolength': True}  at 0x22dff90c740>:
E           <C object Array of Char {'nolength': True}  at 0x22d803add80>:
E           <C object Array of Char {'nolength': True}  at 0x22d803adaa0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803adb40>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ae080>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ad9a0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ad9c0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ad940>:
E           <C object Array of Char {'nolength': True}  at 0x22d803adbc0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803adfc0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ae480>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ae1e0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ae160>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ae4a0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ae760>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ae540>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ae8e0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ae720>:
E           <C object Array of Char {'nolength': True}  at 0x22dff90be70>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ae7c0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ae460>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ae1a0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ae340>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ae420>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ae700>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ae4e0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ae840>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ae3c0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ae8c0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ae1c0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ae2a0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ae500>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ae660>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aea00>:
E           <C object Array of Char {'nolength': True}  at 0x22d803af020>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aea20>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aeea0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aee40>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aeb40>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aeee0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a7480>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a75a0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a7140>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a76a0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a7760>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a78e0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a75e0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a7900>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a7280>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a7520>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a7320>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a7460>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a7200>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a7720>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a78a0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a7800>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a7420>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a8100>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a7940>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a8060>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a80a0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a8480>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a85a0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a8800>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a85e0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a8860>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a8660>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a88e0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a8c80>:
E           <C object Array of Char {'nolength': True}  at 0x22dff90c170>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a9040>:
E           <C object Array of Char {'nolength': True}  at 0x22dff90cc50>:
E           <C object Array of Char {'nolength': True}  at 0x22dfd90e060>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a8bc0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a8b60>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a8d60>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a89e0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a8de0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a9700>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a9200>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a9760>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a9880>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a9840>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a99c0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a9aa0>:
E           <C object Array of Char {'nolength': True}  at 0x22dff90cbc0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803aa160>:
E           <C object Array of Char {'nolength': True}  at 0x22dfdfa93d0>:
E               ...
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\array\interp_array.py", line 371, 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 996, 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 190, in setlen
E               rffi.CCHARP.TO, byte_size, flavor='raw')
E           
E           <C object Array of Char {'nolength': True}  at 0x22d805b2230>:
E           <C object Array of Char {'nolength': True}  at 0x22d805b2d40>:
E           <C object Array of Char {'nolength': True}  at 0x22d805b3b60>:
E           <C object Array of Char {'nolength': True}  at 0x22d805b44c0>:
E           <C object Array of Char {'nolength': True}  at 0x22d805b2dd0>:
E           <C object Array of Char {'nolength': True}  at 0x22d805b5680>:
E           <C object Array of Char {'nolength': True}  at 0x22d805b4a10>:
E           <C object Array of Char {'nolength': True}  at 0x22d805b7b90>:
E           <C object Array of Char {'nolength': True}  at 0x22d805b2af0>:
E           <C object Array of Char {'nolength': True}  at 0x22d805b9920>:
E           <C object Array of Char {'nolength': True}  at 0x22d805b9e80>:
E           <C object Array of Char {'nolength': True}  at 0x22dffb53c70>:
E           <C object Array of Char {'nolength': True}  at 0x22dffb515a0>:
E           <C object Array of Char {'nolength': True}  at 0x22d805b8500>:
E           <C object Array of Char {'nolength': True}  at 0x22dfd664210>:
E           <C object Array of Char {'nolength': True}  at 0x22dffb52980>:
E           <C object Array of Char {'nolength': True}  at 0x22d805b9a60>:
E           <C object Array of Char {'nolength': True}  at 0x22d805b6ea0>:
E           <C object Array of Char {'nolength': True}  at 0x22dfea988a0>:
E           <C object Array of Char {'nolength': True}  at 0x22d80e0a5a0>:
E           <C object Array of Char {'nolength': True}  at 0x22d80e0c1a0>:
E           <C object Array of Char {'nolength': True}  at 0x22d80e0b300>:
E           <C object Array of Char {'nolength': True}  at 0x22d80e0b980>:
E           <C object Array of Char {'nolength': True}  at 0x22d80e0b950>:
E           <C object Array of Char {'nolength': True}  at 0x22d80e0ce90>:
E           <C object Array of Char {'nolength': True}  at 0x22d80e0a5c0>:
E           <C object Array of Char {'nolength': True}  at 0x22d80e0ed30>:
E           <C object Array of Char {'nolength': True}  at 0x22d80e0d5e0>:
E               ...
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\array\interp_array.py", line 579, 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 1138, 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 190, in setlen
E               rffi.CCHARP.TO, byte_size, flavor='raw')
E           
E           <C object Array of Char {'nolength': True}  at 0x22dff90c7d0>:
E           <C object Array of Char {'nolength': True}  at 0x22dff90c080>:
E           <C object Array of Char {'nolength': True}  at 0x22dff90c6e0>:
E           <C object Array of Char {'nolength': True}  at 0x22dff90bf30>:
E           <C object Array of Char {'nolength': True}  at 0x22d803abc60>:
E           <C object Array of Char {'nolength': True}  at 0x22dfdfa93a0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ae0a0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803ae6c0>:
E           <C object Array of Char {'nolength': True}  at 0x22d803a71a0>:
E           <C object Array of Char {'nolength': True}  at 0x22dff90c560>:
E               ...
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\array\interp_array.py", line 1176, 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 996, 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 190, 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 0x22d803a8ac0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d8054fe88> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a89c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d8054fec0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a8b00>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d8054fef8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a91c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d8054ff30> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d805b2230>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80576a68> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a9440>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80576aa0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a9160>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80576ad8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a9560>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80576b10> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a96c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d805e4b80> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d805b2d40>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d805e4bb8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a92c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d805e4bf0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a94e0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d805e4c28> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a95c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d805fd1d8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a9780>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d805fd210> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d805b3b60>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d805fd248> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a97c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d805fd280> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a9640>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d805fd2b8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a96a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d805fd2f0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dff90c7d0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80612aa0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a9fe0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80612b48> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dfd90e210>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d8063a608> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aa0e0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d8063a640> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dff90bf60>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d8063bc20> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dff90c800>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80696528> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a9940>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80696560> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a9980>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80696640> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a9d60>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80696678> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a9ac0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d806ae0c8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a9e20>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d806ae100> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aa020>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d806ae1e0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aa100>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d806d2678> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d805b44c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d806d26b0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a9bc0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d806d26e8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a9b20>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d806d2720> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aa0c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d806d2758> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aa060>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80777718> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d805b2dd0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80777750> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aa000>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80777788> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a9a20>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d807a7e50> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a9ea0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d807a7e88> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a9c00>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d807a7ec0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d805b5680>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d807a7ef8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a9be0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d807a7f30> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a9d80>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d807a7f68> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aa840>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d807a7fa0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aa7a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d807c24f0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d805b4a10>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d807c2528> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aa2c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d807c2560> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aa3a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d807c2598> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aa6c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d807c25d0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dff90c080>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d807c2608> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aa200>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d807ce0c8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dff90c4a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d807cea30> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aa360>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d807cea68> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dff90c5f0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d807cf558> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dff90c890>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d807cfec0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aa780>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d807cfef8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aa3e0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80828020> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aa4c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80828058> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aa740>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d808488a8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aa140>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80859da8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aa460>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80859e88> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aa580>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80859ec0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aa1c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80859fa0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aac80>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d808722c0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aab20>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d808723a0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aaac0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d808723d8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aab00>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80880950> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ab000>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80880988> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aae20>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80880a68> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dff90c6e0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80881b78> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aaf20>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80881c20> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dff90c3e0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d809349c0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aac60>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d809349f8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dff90bed0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80935c58> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dfd90deb0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80935cc8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aaf40>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d809648e0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aaf60>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d809649c0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aae40>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d809649f8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ab040>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80964ad8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aada0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d8097a2f8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aad20>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d8097a3d8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aaae0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d8097a410> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aa9a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d8097a4f0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aafe0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d8097bd38> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aae80>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d8097be18> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aafc0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d8097be50> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aac00>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80a289c0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ab020>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80a289f8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aae60>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80a506b0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dff90bf30>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80a506e8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d805b7b90>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80a50720> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aabe0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80a50758> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aaf00>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80a50790> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dfd90e2d0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80a51f68> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ab600>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80a51fa0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dff90bcf0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80af3718> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dff90cb60>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80af3788> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ab520>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80af37c0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d805b2af0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80b38758> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ab860>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80b38790> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ab720>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80b4bfa0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ab7e0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80b5a020> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ab660>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80b5a058> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d805b9920>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80b5a090> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ab6a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80b5b7f8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ab740>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80b5b830> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ab6c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80b5b868> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ab140>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80b5b8a0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d805b9e80>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80b5b8d8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ab440>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80b5b910> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ab380>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80b5b948> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aba80>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80bd3a60> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803abae0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80bd3a98> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803abba0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80bd3b78> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803abb00>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80bd3bb0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ac100>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80be52f0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803abca0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80be5328> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ab940>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80be5408> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803abc20>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80be5440> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ac040>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80cecd40> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803abc60>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80cecd78> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dffb53c70>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80cecdb0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803abea0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80cecde8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803abce0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80cece20> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dff90c4d0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80cfa838> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ab980>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80cfa870> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dff90c5c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80cfa8a8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803abec0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80cfb9b8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803abb80>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80cfb9f0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dffb515a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80cfba28> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ab9a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80cfba60> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803abf80>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80cfba98> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803abcc0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80d7b520> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ab960>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80d7b558> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d805b8500>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80d7b590> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803abde0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80d7b5c8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803abf60>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80d7b600> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ac760>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80d7b638> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ac8a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80d7b670> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dfd664210>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80d8f440> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ac280>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80d8f478> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ac8c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80d8f4b0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ac600>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80d8f4e8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ac380>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80d8f520> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dffb52980>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80d8f558> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ac700>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80d8f590> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ac1a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80da33d0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ac180>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80da3408> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ac1c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80da3440> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d805b9a60>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80da3478> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ac240>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80da34b0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ac3c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80da34e8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803acd20>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80da3520> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803acd60>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80db1408> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d805b6ea0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80db1440> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803acda0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80db1478> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ad000>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80db14b0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803acde0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80db14e8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ace80>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80db1520> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dfea988a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80db1558> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ad0c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80db1590> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803acb40>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80dc53d0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803acf00>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80dc5408> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dfdfa93a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80dc5440> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ad020>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80dc54e8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dff90c440>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80dd6a30> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803acea0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80dd6a68> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dff90cbf0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80dd6aa0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dff90c380>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80dd7b08> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803acfa0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80dd7b40> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ad0a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80e2f3d0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803acd80>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80e2f408> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803acc00>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80e2f4e8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803acc60>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80e2f520> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ad1e0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80e42f00> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ad660>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80e42f38> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ad580>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80e43018> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ad900>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80e43050> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ad8e0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80e56720> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ad720>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80e56758> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ad4e0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80e56838> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ad740>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80e56870> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ad380>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80e56950> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ae0a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80e60170> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803adc80>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80e60218> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dff90be10>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80e612f0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803adb60>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80e61328> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dff90c740>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80f36640> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803add80>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80f376a8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803adaa0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80f376e0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803adb40>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80f377c0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ae080>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80f377f8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ad9a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80f378d8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ad9c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80f67088> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ad940>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80f67168> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803adbc0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80f671a0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803adfc0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80f67280> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ae480>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80f78bb8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ae1e0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80f78c98> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ae160>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80f78cd0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ae4a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80f78db0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ae760>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80f78de8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ae540>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80f844f0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ae6c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80f84528> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d80e0a5a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80f84560> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ae8e0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80f84598> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ae720>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80f845d0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dff90be70>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80f85ef8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ae7c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80f85f30> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ae460>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80fe8c28> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ae1a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80fe96a8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ae340>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80fe96e0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d80e0c1a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80fe9718> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ae420>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d80fe9750> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ae700>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d81023948> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ae4e0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d81023980> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ae840>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d810239b8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d80e0b300>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d810239f0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ae3c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d81023a28> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ae8c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d8103f050> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ae1c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d8103f088> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ae2a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d8103f0c0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d80e0b980>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d8103f0f8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ae500>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d8103f130> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803ae660>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d8103f168> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aea00>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d8103f1a0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803af020>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d81053248> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aea20>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d81053328> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aeea0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d810ae100> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aee40>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d810ae1e0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aeb40>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d810ae218> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aeee0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d810ae2f8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a7480>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d810ae330> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a75a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d810afb40> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a71a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d810afb78> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d80e0b950>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d810afbb0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a7140>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d810afbe8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a76a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d810afc20> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a7760>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d810afc58> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a78e0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d810d5398> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a75e0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d810f4170> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a7900>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d810f4bf0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a7280>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d810f4c28> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d80e0ce90>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d810f4c60> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a7520>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d810f4c98> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a7320>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d810f4cd0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a7460>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d810f4d08> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a7200>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d8112b130> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d80e0a5c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d8112b168> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a7720>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d8112b1a0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a78a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d8112b1d8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a7800>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d8112b210> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a7420>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d8112b248> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d80e0ed30>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d8112b280> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a8100>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d81176e90> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a7940>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d81176ec8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a8060>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d81176f00> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a80a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d81176f38> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a8480>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d81177018> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a85a0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d81177050> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a8800>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d8118f1d8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a85e0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d8118f210> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a8860>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d811b4330> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a8660>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d811b4368> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a88e0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d811b4448> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dff90c560>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d811b4480> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a8c80>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d811b4528> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dff90c170>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d811b5e50> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a9040>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d811d8e58> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dff90cc50>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d811d9718> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dfd90e060>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d811d9788> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a8bc0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d811d97c0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a8b60>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d811d98a0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a8d60>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d812f7670> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a89e0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d812f7750> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a8de0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d812f7788> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a9700>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d812f7868> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a9200>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d812f78a0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a9760>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d813eadb0> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a9880>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d813eade8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a9840>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d813eaec8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a99c0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d813fc7c8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803a9aa0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d813fc8a8> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d80e0d5e0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d813fc918> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dff90cbc0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d81438d08> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22d803aa160>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d81438d40> ignored
Exception KeyError: KeyError(<C object Array of Char {'nolength': True}  at 0x22dfdfa93d0>,) in method __del__ of <pypy.module.array.interp_array.W_ArrayTypei object at 0x0000022d81438d78> ignored
builder: own-win-x86-64 build #2299+
test: pypy/module/array/test/test_array.py::AppTestArray::()::test_reversingslice