python testrunner/app_level_tests.py
in dir /build_dir/pypy-c-jit-linux-x86-64/build (timeout 4000 secs)
watching logfiles {'pytestLog': 'pytest-A.log'}
argv: ['python', 'testrunner/app_level_tests.py']
environment:
AUDITWHEEL_ARCH=x86_64
AUDITWHEEL_PLAT=manylinux2014_x86_64
AUDITWHEEL_POLICY=manylinux2014
DEVTOOLSET_ROOTPATH=/opt/rh/devtoolset-10/root
HOME=/home/buildslave
HOSTNAME=a58a84039819
LANG=en_US.UTF-8
LANGUAGE=en_US.UTF-8
LC_ALL=en_US.UTF-8
LD_LIBRARY_PATH=/usr/local/lib:/opt/rh/devtoolset-10/root/usr/lib64:/opt/rh/devtoolset-10/root/usr/lib:/opt/rh/devtoolset-10/root/usr/lib64/dyninst:/opt/rh/devtoolset-10/root/usr/lib/dyninst:/usr/local/lib64
LOGNAME=buildslave
PATH=/python27_virt/bin:/opt/rh/devtoolset-10/root/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PKG_CONFIG_PATH=/usr/local/lib64/pkgconfig:/usr/local/lib/pkgconfig
PWD=/build_dir/pypy-c-jit-linux-x86-64/build
PYPY_LOCALBASE=/usr/local
PYPY_MAKE_PORTABLE=1
PYPY_USESSION_DIR=/tmp/pytest
SHELL=/bin/bash
SHLVL=2
SSL_CERT_FILE=/opt/_internal/certs.pem
TERM=xterm
TMPDIR=/tmp/pytest
USER=buildslave
USE_CURL=1
_=/python27_virt/bin/buildslave
using PTY: False
using config pypy/pytest-A.cfg
using config pypy/pytest-A.py
ignoring non-existant config /home/buildslave/machine-A_cfg.py
-- interpreter/astcompiler/test
-- interpreter/pyparser/test
-- interpreter/test
-- objspace/test
-- objspace/std/test
-- module/__builtin__/test
-- module/__pypy__/test
-- module/_ast/test
-- module/_cffi_backend/test
-- module/_codecs/test
-- module/_continuation/test
-- module/_cppyy/test
-- module/_csv/test
-- module/_demo/test
-- module/_file/test
-- module/_io/test
-- module/_jitlog/test
-- module/_locale/test
-- module/_lsprof/test
-- module/_md5/test
-- module/_minimal_curses/test
-- module/_multibytecodec/test
-- module/_multiprocessing/test
-- module/_pypyjson/test
-- module/_random/test
-- module/_rawffi/alt/test
-- module/_rawffi/test
-- module/_sha/test
-- module/_socket/test
-- module/_sre/test
-- module/_vmprof/test
-- module/_warnings/test
-- module/_weakref/test
-- module/_winreg/test
-- module/array/test
-- module/binascii/test
-- module/bz2/test
-- module/cStringIO/test
-- module/cmath/test
-- module/cpyext/test
-- module/crypt/test
-- module/errno/test
-- module/exceptions/test
-- module/faulthandler/test
-- module/fcntl/test
-- module/gc/test
-- module/imp/test
-- module/itertools/test
-- module/marshal/test
-- module/math/test
-- module/micronumpy/test
-- module/mmap/test
-- module/operator/test
-- module/parser/test
-- module/posix/test
-- module/pwd/test
-- module/pyexpat/test
-- module/pypyjit/test
-- module/select/test
-- module/signal/test
-- module/struct/test
-- module/sys/test
-- module/termios/test
-- module/test_lib_pypy
-- module/thread/test
-- module/time/test
-- module/unicodedata/test
-- module/zipimport/test
-- module/zlib/test
-- total: 69 to run
++ 07:40:44 starting interpreter/astcompiler/test [1 started in total]
__ interpreter/astcompiler/test [1 done in total, somefailed=True] ____________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.py
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 5 items
interpreter/astcompiler/test/test_compiler.py ..Fs. [100%]
=================================== FAILURES ===================================
__________________ AppTestCompiler.test_assert_with_tuple_arg __________________
self = <CallInfo when='call' exception: assert '(3,)\nassert False' == '(3,)'
- (3,)
? -
+ (3,)
- assert False>
func = <function <lambda> at 0x00000000032e8200>, when = 'call'
treat_keyboard_interrupt_as_exception = False
def __init__(self, func, when, treat_keyboard_interrupt_as_exception=False):
#: context of invocation: one of "setup", "call",
#: "teardown", "memocollect"
self.when = when
self.start = time()
try:
> self.result = func()
../_pytest/runner.py:212:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
> lambda: ihook(item=item, **kwds),
when=when,
treat_keyboard_interrupt_as_exception=item.config.getvalue("usepdb"),
)
../_pytest/runner.py:194:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <_HookCaller 'pytest_runtest_call'>, args = ()
kwargs = {'item': <AppTestMethod 'test_assert_with_tuple_arg'>}
notincall = set([])
def __call__(self, *args, **kwargs):
if args:
raise TypeError("hook calling supports only keyword arguments")
assert not self.is_historic()
if self.spec and self.spec.argnames:
notincall = (
set(self.spec.argnames) - set(["__multicall__"]) - set(kwargs.keys())
)
if notincall:
warnings.warn(
"Argument(s) {} which are declared in the hookspec "
"can not be found in this hook call".format(tuple(notincall)),
stacklevel=2,
)
> return self._hookexec(self, self.get_hookimpls(), kwargs)
../_pytest/vendored_packages/pluggy/hooks.py:289:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <_pytest.config.PytestPluginManager object at 0x00007f08a9cc0870>
hook = <_HookCaller 'pytest_runtest_call'>
methods = [<HookImpl plugin_name='runner', plugin=<module '_pytest.runner' from '/build_dir/pypy-c-jit-linux-x86-64/build/_pytes...b87750>>, <HookImpl plugin_name='logging-plugin', plugin=<_pytest.logging.LoggingPlugin object at 0x00000000012ff3d0>>]
kwargs = {'item': <AppTestMethod 'test_assert_with_tuple_arg'>}
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/manager.py:68:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
hook = <_HookCaller 'pytest_runtest_call'>
methods = [<HookImpl plugin_name='runner', plugin=<module '_pytest.runner' from '/build_dir/pypy-c-jit-linux-x86-64/build/_pytes...b87750>>, <HookImpl plugin_name='logging-plugin', plugin=<_pytest.logging.LoggingPlugin object at 0x00000000012ff3d0>>]
kwargs = {'item': <AppTestMethod 'test_assert_with_tuple_arg'>}
self._inner_hookexec = lambda hook, methods, kwargs: hook.multicall(
methods,
kwargs,
> firstresult=hook.spec.opts.get("firstresult") if hook.spec else False,
)
../_pytest/vendored_packages/pluggy/manager.py:62:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
hook_impls = [<HookImpl plugin_name='runner', plugin=<module '_pytest.runner' from '/build_dir/pypy-c-jit-linux-x86-64/build/_pytes...b87750>>, <HookImpl plugin_name='logging-plugin', plugin=<_pytest.logging.LoggingPlugin object at 0x00000000012ff3d0>>]
caller_kwargs = {'item': <AppTestMethod 'test_assert_with_tuple_arg'>}
firstresult = False
def _multicall(hook_impls, caller_kwargs, firstresult=False):
"""Execute a call into multiple python functions/methods and return the
result(s).
``caller_kwargs`` comes from _HookCaller.__call__().
"""
__tracebackhide__ = True
results = []
excinfo = None
try: # run impl and wrapper setup functions in a loop
teardowns = []
try:
for hook_impl in reversed(hook_impls):
try:
args = [caller_kwargs[argname] for argname in hook_impl.argnames]
except KeyError:
for argname in hook_impl.argnames:
if argname not in caller_kwargs:
raise HookCallError(
"hook call must provide argument %r" % (argname,)
)
if hook_impl.hookwrapper:
try:
gen = hook_impl.function(*args)
next(gen) # first yield
teardowns.append(gen)
except StopIteration:
_raise_wrapfail(gen, "did not yield")
else:
res = hook_impl.function(*args)
if res is not None:
results.append(res)
if firstresult: # halt further impl calls
break
except BaseException:
excinfo = sys.exc_info()
finally:
if firstresult: # first result hooks return a single value
outcome = _Result(results[0] if results else None, excinfo)
else:
outcome = _Result(results, excinfo)
# run all wrapper post-yield blocks
for gen in reversed(teardowns):
try:
gen.send(outcome)
_raise_wrapfail(gen, "has second yield")
except StopIteration:
pass
> return outcome.get_result()
../_pytest/vendored_packages/pluggy/callers.py:208:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <pluggy.callers._Result object at 0x000000000334b2b8>
def get_result(self):
"""Get the result(s) for this hook call.
If the hook was marked as a ``firstresult`` only a single value
will be returned otherwise a list of results.
"""
__tracebackhide__ = True
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/callers.py:81:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
hook_impls = [<HookImpl plugin_name='runner', plugin=<module '_pytest.runner' from '/build_dir/pypy-c-jit-linux-x86-64/build/_pytes...b87750>>, <HookImpl plugin_name='logging-plugin', plugin=<_pytest.logging.LoggingPlugin object at 0x00000000012ff3d0>>]
caller_kwargs = {'item': <AppTestMethod 'test_assert_with_tuple_arg'>}
firstresult = False
def _multicall(hook_impls, caller_kwargs, firstresult=False):
"""Execute a call into multiple python functions/methods and return the
result(s).
``caller_kwargs`` comes from _HookCaller.__call__().
"""
__tracebackhide__ = True
results = []
excinfo = None
try: # run impl and wrapper setup functions in a loop
teardowns = []
try:
for hook_impl in reversed(hook_impls):
try:
args = [caller_kwargs[argname] for argname in hook_impl.argnames]
except KeyError:
for argname in hook_impl.argnames:
if argname not in caller_kwargs:
raise HookCallError(
"hook call must provide argument %r" % (argname,)
)
if hook_impl.hookwrapper:
try:
gen = hook_impl.function(*args)
next(gen) # first yield
teardowns.append(gen)
except StopIteration:
_raise_wrapfail(gen, "did not yield")
else:
> res = hook_impl.function(*args)
../_pytest/vendored_packages/pluggy/callers.py:187:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
item = <AppTestMethod 'test_assert_with_tuple_arg'>
def pytest_runtest_call(item):
_update_current_test_var(item, "call")
sys.last_type, sys.last_value, sys.last_traceback = (None, None, None)
try:
> item.runtest()
../_pytest/runner.py:122:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <AppTestMethod 'test_assert_with_tuple_arg'>
def runtest(self):
target = self.obj
if self.config.option.runappdirect:
> return target()
tool/pytest/apptest.py:84:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <pypy.interpreter.astcompiler.test.test_compiler.AppTestCompiler instance at 0x0000000003340060>
def test_assert_with_tuple_arg(self):
try:
assert False, (3,)
except AssertionError as e:
> assert str(e) == "(3,)"
E AssertionError: assert '(3,)\nassert False' == '(3,)'
E - (3,)
E ? -
E + (3,)
E - assert False
interpreter/astcompiler/test/test_compiler.py:1018: AssertionError
=========================== short test summary info ============================
FAIL interpreter/astcompiler/test/test_compiler.py::AppTestCompiler::()::test_assert_with_tuple_arg
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
========== 1 failed, 3 passed, 1 skipped, 1 warnings in 3.25 seconds ===========
++ 07:40:49 starting interpreter/pyparser/test [2 started in total]
__ interpreter/pyparser/test [2 done in total, somefailed=False] ______________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 0 items
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
========================== 1 warnings in 2.01 seconds ==========================
++ 07:40:51 starting interpreter/test [3 started in total]
__ interpreter/test [3 done in total, somefailed=True] ________________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 174 items
interpreter/test/test_app_main.py sss [ 1%]
interpreter/test/test_appinterp.py . [ 2%]
interpreter/test/test_argument.py ......... [ 7%]
interpreter/test/test_code.py ....... [ 11%]
interpreter/test/test_compiler.py ......s...................... [ 28%]
interpreter/test/test_descrtypecheck.py .. [ 29%]
interpreter/test/test_exceptcomp.py ........... [ 35%]
interpreter/test/test_executioncontext.py .... [ 37%]
interpreter/test/test_extmodules.py s [ 38%]
interpreter/test/test_gateway.py ....... [ 42%]
interpreter/test/test_interpreter.py ............ [ 49%]
interpreter/test/test_mixedmodule.py ssss [ 51%]
interpreter/test/test_module.py ..... [ 54%]
interpreter/test/test_pyframe.py s. [ 55%]
interpreter/test/test_special.py .. [ 56%]
interpreter/test/test_syntax.py .............................. [ 74%]
interpreter/test/test_typedef.py .......... [ 79%]
interpreter/test/test_zzpickle_and_slow.py .ssssssssssssssssssssssssssss [ 96%]
ssssF. [100%]
=================================== FAILURES ===================================
_______________ AppTestGeneratorCloning.test_deepcopy_generator ________________
self = <CallInfo when='call' exception: __deepcopy__() takes exactly 1 argument (2 given)>
func = <function <lambda> at 0x00000000036db6a0>, when = 'call'
treat_keyboard_interrupt_as_exception = False
def __init__(self, func, when, treat_keyboard_interrupt_as_exception=False):
#: context of invocation: one of "setup", "call",
#: "teardown", "memocollect"
self.when = when
self.start = time()
try:
> self.result = func()
../_pytest/runner.py:212:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
> lambda: ihook(item=item, **kwds),
when=when,
treat_keyboard_interrupt_as_exception=item.config.getvalue("usepdb"),
)
../_pytest/runner.py:194:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <_HookCaller 'pytest_runtest_call'>, args = ()
kwargs = {'item': <AppTestMethod 'test_deepcopy_generator'>}
notincall = set([])
def __call__(self, *args, **kwargs):
if args:
raise TypeError("hook calling supports only keyword arguments")
assert not self.is_historic()
if self.spec and self.spec.argnames:
notincall = (
set(self.spec.argnames) - set(["__multicall__"]) - set(kwargs.keys())
)
if notincall:
warnings.warn(
"Argument(s) {} which are declared in the hookspec "
"can not be found in this hook call".format(tuple(notincall)),
stacklevel=2,
)
> return self._hookexec(self, self.get_hookimpls(), kwargs)
../_pytest/vendored_packages/pluggy/hooks.py:289:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <_pytest.config.PytestPluginManager object at 0x000000000223c918>
hook = <_HookCaller 'pytest_runtest_call'>
methods = [<HookImpl plugin_name='runner', plugin=<module '_pytest.runner' from '/build_dir/pypy-c-jit-linux-x86-64/build/_pytes...acf088>>, <HookImpl plugin_name='logging-plugin', plugin=<_pytest.logging.LoggingPlugin object at 0x0000000002b3dde0>>]
kwargs = {'item': <AppTestMethod 'test_deepcopy_generator'>}
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/manager.py:68:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
hook = <_HookCaller 'pytest_runtest_call'>
methods = [<HookImpl plugin_name='runner', plugin=<module '_pytest.runner' from '/build_dir/pypy-c-jit-linux-x86-64/build/_pytes...acf088>>, <HookImpl plugin_name='logging-plugin', plugin=<_pytest.logging.LoggingPlugin object at 0x0000000002b3dde0>>]
kwargs = {'item': <AppTestMethod 'test_deepcopy_generator'>}
self._inner_hookexec = lambda hook, methods, kwargs: hook.multicall(
methods,
kwargs,
> firstresult=hook.spec.opts.get("firstresult") if hook.spec else False,
)
../_pytest/vendored_packages/pluggy/manager.py:62:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
hook_impls = [<HookImpl plugin_name='runner', plugin=<module '_pytest.runner' from '/build_dir/pypy-c-jit-linux-x86-64/build/_pytes...acf088>>, <HookImpl plugin_name='logging-plugin', plugin=<_pytest.logging.LoggingPlugin object at 0x0000000002b3dde0>>]
caller_kwargs = {'item': <AppTestMethod 'test_deepcopy_generator'>}
firstresult = False
def _multicall(hook_impls, caller_kwargs, firstresult=False):
"""Execute a call into multiple python functions/methods and return the
result(s).
``caller_kwargs`` comes from _HookCaller.__call__().
"""
__tracebackhide__ = True
results = []
excinfo = None
try: # run impl and wrapper setup functions in a loop
teardowns = []
try:
for hook_impl in reversed(hook_impls):
try:
args = [caller_kwargs[argname] for argname in hook_impl.argnames]
except KeyError:
for argname in hook_impl.argnames:
if argname not in caller_kwargs:
raise HookCallError(
"hook call must provide argument %r" % (argname,)
)
if hook_impl.hookwrapper:
try:
gen = hook_impl.function(*args)
next(gen) # first yield
teardowns.append(gen)
except StopIteration:
_raise_wrapfail(gen, "did not yield")
else:
res = hook_impl.function(*args)
if res is not None:
results.append(res)
if firstresult: # halt further impl calls
break
except BaseException:
excinfo = sys.exc_info()
finally:
if firstresult: # first result hooks return a single value
outcome = _Result(results[0] if results else None, excinfo)
else:
outcome = _Result(results, excinfo)
# run all wrapper post-yield blocks
for gen in reversed(teardowns):
try:
gen.send(outcome)
_raise_wrapfail(gen, "has second yield")
except StopIteration:
pass
> return outcome.get_result()
../_pytest/vendored_packages/pluggy/callers.py:208:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <pluggy.callers._Result object at 0x0000000005a13520>
def get_result(self):
"""Get the result(s) for this hook call.
If the hook was marked as a ``firstresult`` only a single value
will be returned otherwise a list of results.
"""
__tracebackhide__ = True
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/callers.py:81:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
hook_impls = [<HookImpl plugin_name='runner', plugin=<module '_pytest.runner' from '/build_dir/pypy-c-jit-linux-x86-64/build/_pytes...acf088>>, <HookImpl plugin_name='logging-plugin', plugin=<_pytest.logging.LoggingPlugin object at 0x0000000002b3dde0>>]
caller_kwargs = {'item': <AppTestMethod 'test_deepcopy_generator'>}
firstresult = False
def _multicall(hook_impls, caller_kwargs, firstresult=False):
"""Execute a call into multiple python functions/methods and return the
result(s).
``caller_kwargs`` comes from _HookCaller.__call__().
"""
__tracebackhide__ = True
results = []
excinfo = None
try: # run impl and wrapper setup functions in a loop
teardowns = []
try:
for hook_impl in reversed(hook_impls):
try:
args = [caller_kwargs[argname] for argname in hook_impl.argnames]
except KeyError:
for argname in hook_impl.argnames:
if argname not in caller_kwargs:
raise HookCallError(
"hook call must provide argument %r" % (argname,)
)
if hook_impl.hookwrapper:
try:
gen = hook_impl.function(*args)
next(gen) # first yield
teardowns.append(gen)
except StopIteration:
_raise_wrapfail(gen, "did not yield")
else:
> res = hook_impl.function(*args)
../_pytest/vendored_packages/pluggy/callers.py:187:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
item = <AppTestMethod 'test_deepcopy_generator'>
def pytest_runtest_call(item):
_update_current_test_var(item, "call")
sys.last_type, sys.last_value, sys.last_traceback = (None, None, None)
try:
> item.runtest()
../_pytest/runner.py:122:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <AppTestMethod 'test_deepcopy_generator'>
def runtest(self):
target = self.obj
if self.config.option.runappdirect:
> return target()
tool/pytest/apptest.py:84:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <pypy.interpreter.test.test_zzpickle_and_slow.AppTestGeneratorCloning instance at 0x0000000005ba0aa0>
def test_deepcopy_generator(self):
import copy
def f(n):
for i in range(n):
yield 42 + i
g = f(4)
> g2 = copy.deepcopy(g)
interpreter/test/test_zzpickle_and_slow.py:561:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = <generator object f at 0x0000000005973470>
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}, _nil = []
def deepcopy(x, memo=None, _nil=[]):
"""Deep copy operation on arbitrary Python objects.
See the module's __doc__ string for more info.
"""
if memo is None:
memo = {}
d = id(x)
y = memo.get(d, _nil)
if y is not _nil:
return y
cls = type(x)
copier = _deepcopy_dispatch.get(cls)
if copier:
y = copier(x, memo)
else:
try:
issc = issubclass(cls, type)
except TypeError: # cls is not a class (old Boost; see SF #502085)
issc = 0
if issc:
y = _deepcopy_atomic(x, memo)
else:
copier = getattr(x, "__deepcopy__", None)
if copier:
y = copier(memo)
else:
reductor = dispatch_table.get(cls)
if reductor:
rv = reductor(x)
else:
reductor = getattr(x, "__reduce_ex__", None)
if reductor:
rv = reductor(2)
else:
reductor = getattr(x, "__reduce__", None)
if reductor:
rv = reductor()
else:
raise Error(
"un(deep)copyable object of type %s" % cls)
> y = _reconstruct(x, rv, 1, memo)
../lib-python/2.7/copy.py:190:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = <generator object f at 0x0000000005973470>
info = (<built-in function generator_new>, (), ((None, <module '__builtin__' (built-in)>, <code object f, file '/build_dir/py...erpreter/test/test_zzpickle_and_slow.py', line 557>, ((1, 2, 3, 4), 4, None, None, None, None), (), None, ...), False))
deep = 1, memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}
def _reconstruct(x, info, deep, memo=None):
if isinstance(info, str):
return x
assert isinstance(info, tuple)
if memo is None:
memo = {}
n = len(info)
assert n in (2, 3, 4, 5)
callable, args = info[:2]
if n > 2:
state = info[2]
else:
state = None
if n > 3:
listiter = info[3]
else:
listiter = None
if n > 4:
dictiter = info[4]
else:
dictiter = None
if deep:
args = deepcopy(args, memo)
y = callable(*args)
memo[id(x)] = y
if state is not None:
if deep:
> state = deepcopy(state, memo)
../lib-python/2.7/copy.py:334:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = ((None, <module '__builtin__' (built-in)>, <code object f, file '/build_dir/pypy-c-jit-linux-x86-64/build/pypy/interpreter/test/test_zzpickle_and_slow.py', line 557>, ((1, 2, 3, 4), 4, None, None, None, None), (), None, ...), False)
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}, _nil = []
def deepcopy(x, memo=None, _nil=[]):
"""Deep copy operation on arbitrary Python objects.
See the module's __doc__ string for more info.
"""
if memo is None:
memo = {}
d = id(x)
y = memo.get(d, _nil)
if y is not _nil:
return y
cls = type(x)
copier = _deepcopy_dispatch.get(cls)
if copier:
> y = copier(x, memo)
../lib-python/2.7/copy.py:163:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = ((None, <module '__builtin__' (built-in)>, <code object f, file '/build_dir/pypy-c-jit-linux-x86-64/build/pypy/interpreter/test/test_zzpickle_and_slow.py', line 557>, ((1, 2, 3, 4), 4, None, None, None, None), (), None, ...), False)
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}
def _deepcopy_tuple(x, memo):
y = []
for a in x:
> y.append(deepcopy(a, memo))
../lib-python/2.7/copy.py:237:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = (None, <module '__builtin__' (built-in)>, <code object f, file '/build_dir/pypy-c-jit-linux-x86-64/build/pypy/interpreter/test/test_zzpickle_and_slow.py', line 557>, ((1, 2, 3, 4), 4, None, None, None, None), (), None, ...)
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}, _nil = []
def deepcopy(x, memo=None, _nil=[]):
"""Deep copy operation on arbitrary Python objects.
See the module's __doc__ string for more info.
"""
if memo is None:
memo = {}
d = id(x)
y = memo.get(d, _nil)
if y is not _nil:
return y
cls = type(x)
copier = _deepcopy_dispatch.get(cls)
if copier:
> y = copier(x, memo)
../lib-python/2.7/copy.py:163:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = (None, <module '__builtin__' (built-in)>, <code object f, file '/build_dir/pypy-c-jit-linux-x86-64/build/pypy/interpreter/test/test_zzpickle_and_slow.py', line 557>, ((1, 2, 3, 4), 4, None, None, None, None), (), None, ...)
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}
def _deepcopy_tuple(x, memo):
y = []
for a in x:
> y.append(deepcopy(a, memo))
../lib-python/2.7/copy.py:237:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = {'@py_builtins': <module '__builtin__' (built-in)>, '@pytest_ar': <module '_pytest.assertion.rewrite' from '/build_dir...Pickling': <class pypy.interpreter.test.test_zzpickle_and_slow.AppTestInterpObjectPickling at 0x00000000057a1b40>, ...}
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}, _nil = []
def deepcopy(x, memo=None, _nil=[]):
"""Deep copy operation on arbitrary Python objects.
See the module's __doc__ string for more info.
"""
if memo is None:
memo = {}
d = id(x)
y = memo.get(d, _nil)
if y is not _nil:
return y
cls = type(x)
copier = _deepcopy_dispatch.get(cls)
if copier:
> y = copier(x, memo)
../lib-python/2.7/copy.py:163:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = {'@py_builtins': <module '__builtin__' (built-in)>, '@pytest_ar': <module '_pytest.assertion.rewrite' from '/build_dir...Pickling': <class pypy.interpreter.test.test_zzpickle_and_slow.AppTestInterpObjectPickling at 0x00000000057a1b40>, ...}
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}
def _deepcopy_dict(x, memo):
y = {}
memo[id(x)] = y
for key, value in x.iteritems():
> y[deepcopy(key, memo)] = deepcopy(value, memo)
../lib-python/2.7/copy.py:257:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = <_pytest.assertion.rewrite.AssertionRewritingHook object at 0x00000000023a1de0>
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}, _nil = []
def deepcopy(x, memo=None, _nil=[]):
"""Deep copy operation on arbitrary Python objects.
See the module's __doc__ string for more info.
"""
if memo is None:
memo = {}
d = id(x)
y = memo.get(d, _nil)
if y is not _nil:
return y
cls = type(x)
copier = _deepcopy_dispatch.get(cls)
if copier:
y = copier(x, memo)
else:
try:
issc = issubclass(cls, type)
except TypeError: # cls is not a class (old Boost; see SF #502085)
issc = 0
if issc:
y = _deepcopy_atomic(x, memo)
else:
copier = getattr(x, "__deepcopy__", None)
if copier:
y = copier(memo)
else:
reductor = dispatch_table.get(cls)
if reductor:
rv = reductor(x)
else:
reductor = getattr(x, "__reduce_ex__", None)
if reductor:
rv = reductor(2)
else:
reductor = getattr(x, "__reduce__", None)
if reductor:
rv = reductor()
else:
raise Error(
"un(deep)copyable object of type %s" % cls)
> y = _reconstruct(x, rv, 1, memo)
../lib-python/2.7/copy.py:190:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = <_pytest.assertion.rewrite.AssertionRewritingHook object at 0x00000000023a1de0>
info = (<function __newobj__ at 0x00007fdb99d88548>, (<class '_pytest.assertion.rewrite.AssertionRewritingHook'>,), {'_basena....test_argument', 'pypy.interpreter.test.test_buffer', 'pypy.interpreter.test.test_cellfamily', ...]), ...}, None, None)
deep = 1, memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}
def _reconstruct(x, info, deep, memo=None):
if isinstance(info, str):
return x
assert isinstance(info, tuple)
if memo is None:
memo = {}
n = len(info)
assert n in (2, 3, 4, 5)
callable, args = info[:2]
if n > 2:
state = info[2]
else:
state = None
if n > 3:
listiter = info[3]
else:
listiter = None
if n > 4:
dictiter = info[4]
else:
dictiter = None
if deep:
args = deepcopy(args, memo)
y = callable(*args)
memo[id(x)] = y
if state is not None:
if deep:
> state = deepcopy(state, memo)
../lib-python/2.7/copy.py:334:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = {'_basenames_to_check_rewrite': set(['conftest']), '_marked_for_rewrite_cache': {'_pypy_interact': False, '_pytest.ass...erpreter.test.test_argument', 'pypy.interpreter.test.test_buffer', 'pypy.interpreter.test.test_cellfamily', ...]), ...}
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}, _nil = []
def deepcopy(x, memo=None, _nil=[]):
"""Deep copy operation on arbitrary Python objects.
See the module's __doc__ string for more info.
"""
if memo is None:
memo = {}
d = id(x)
y = memo.get(d, _nil)
if y is not _nil:
return y
cls = type(x)
copier = _deepcopy_dispatch.get(cls)
if copier:
> y = copier(x, memo)
../lib-python/2.7/copy.py:163:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = {'_basenames_to_check_rewrite': set(['conftest']), '_marked_for_rewrite_cache': {'_pypy_interact': False, '_pytest.ass...erpreter.test.test_argument', 'pypy.interpreter.test.test_buffer', 'pypy.interpreter.test.test_cellfamily', ...]), ...}
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}
def _deepcopy_dict(x, memo):
y = {}
memo[id(x)] = y
for key, value in x.iteritems():
> y[deepcopy(key, memo)] = deepcopy(value, memo)
../lib-python/2.7/copy.py:257:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = <_pytest.config.Config object at 0x000000000223c950>
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}, _nil = []
def deepcopy(x, memo=None, _nil=[]):
"""Deep copy operation on arbitrary Python objects.
See the module's __doc__ string for more info.
"""
if memo is None:
memo = {}
d = id(x)
y = memo.get(d, _nil)
if y is not _nil:
return y
cls = type(x)
copier = _deepcopy_dispatch.get(cls)
if copier:
y = copier(x, memo)
else:
try:
issc = issubclass(cls, type)
except TypeError: # cls is not a class (old Boost; see SF #502085)
issc = 0
if issc:
y = _deepcopy_atomic(x, memo)
else:
copier = getattr(x, "__deepcopy__", None)
if copier:
y = copier(memo)
else:
reductor = dispatch_table.get(cls)
if reductor:
rv = reductor(x)
else:
reductor = getattr(x, "__reduce_ex__", None)
if reductor:
rv = reductor(2)
else:
reductor = getattr(x, "__reduce__", None)
if reductor:
rv = reductor()
else:
raise Error(
"un(deep)copyable object of type %s" % cls)
> y = _reconstruct(x, rv, 1, memo)
../lib-python/2.7/copy.py:190:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = <_pytest.config.Config object at 0x000000000223c950>
info = (<function __newobj__ at 0x00007fdb99d88548>, (<class '_pytest.config.Config'>,), {'_assertstate': <_pytest.assertion....nkeyPatch object at 0x0000000002b71050>>, <function fin at 0x0000000002b45880>], '_configured': True, ...}, None, None)
deep = 1, memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}
def _reconstruct(x, info, deep, memo=None):
if isinstance(info, str):
return x
assert isinstance(info, tuple)
if memo is None:
memo = {}
n = len(info)
assert n in (2, 3, 4, 5)
callable, args = info[:2]
if n > 2:
state = info[2]
else:
state = None
if n > 3:
listiter = info[3]
else:
listiter = None
if n > 4:
dictiter = info[4]
else:
dictiter = None
if deep:
args = deepcopy(args, memo)
y = callable(*args)
memo[id(x)] = y
if state is not None:
if deep:
> state = deepcopy(state, memo)
../lib-python/2.7/copy.py:334:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = {'_assertstate': <_pytest.assertion.AssertionState object at 0x0000000002b8caa0>, '_bestrelpathcache': {local('/build_...onkeypatch.MonkeyPatch object at 0x0000000002b71050>>, <function fin at 0x0000000002b45880>], '_configured': True, ...}
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}, _nil = []
def deepcopy(x, memo=None, _nil=[]):
"""Deep copy operation on arbitrary Python objects.
See the module's __doc__ string for more info.
"""
if memo is None:
memo = {}
d = id(x)
y = memo.get(d, _nil)
if y is not _nil:
return y
cls = type(x)
copier = _deepcopy_dispatch.get(cls)
if copier:
> y = copier(x, memo)
../lib-python/2.7/copy.py:163:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = {'_assertstate': <_pytest.assertion.AssertionState object at 0x0000000002b8caa0>, '_bestrelpathcache': {local('/build_...onkeypatch.MonkeyPatch object at 0x0000000002b71050>>, <function fin at 0x0000000002b45880>], '_configured': True, ...}
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}
def _deepcopy_dict(x, memo):
y = {}
memo[id(x)] = y
for key, value in x.iteritems():
> y[deepcopy(key, memo)] = deepcopy(value, memo)
../lib-python/2.7/copy.py:257:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = <_pytest.config.argparsing.Parser object at 0x000000000223d398>
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}, _nil = []
def deepcopy(x, memo=None, _nil=[]):
"""Deep copy operation on arbitrary Python objects.
See the module's __doc__ string for more info.
"""
if memo is None:
memo = {}
d = id(x)
y = memo.get(d, _nil)
if y is not _nil:
return y
cls = type(x)
copier = _deepcopy_dispatch.get(cls)
if copier:
y = copier(x, memo)
else:
try:
issc = issubclass(cls, type)
except TypeError: # cls is not a class (old Boost; see SF #502085)
issc = 0
if issc:
y = _deepcopy_atomic(x, memo)
else:
copier = getattr(x, "__deepcopy__", None)
if copier:
y = copier(memo)
else:
reductor = dispatch_table.get(cls)
if reductor:
rv = reductor(x)
else:
reductor = getattr(x, "__reduce_ex__", None)
if reductor:
rv = reductor(2)
else:
reductor = getattr(x, "__reduce__", None)
if reductor:
rv = reductor()
else:
raise Error(
"un(deep)copyable object of type %s" % cls)
> y = _reconstruct(x, rv, 1, memo)
../lib-python/2.7/copy.py:190:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = <_pytest.config.argparsing.Parser object at 0x000000000223d398>
info = (<function __newobj__ at 0x00007fdb99d88548>, (<class '_pytest.config.argparsing.Parser'>,), {'_anonymous': <_pytest.c...empty_parameter_set_mark', 'norecursedirs', 'testpaths', 'console_output_style', 'usefixtures', ...], ...}, None, None)
deep = 1, memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}
def _reconstruct(x, info, deep, memo=None):
if isinstance(info, str):
return x
assert isinstance(info, tuple)
if memo is None:
memo = {}
n = len(info)
assert n in (2, 3, 4, 5)
callable, args = info[:2]
if n > 2:
state = info[2]
else:
state = None
if n > 3:
listiter = info[3]
else:
listiter = None
if n > 4:
dictiter = info[4]
else:
dictiter = None
if deep:
args = deepcopy(args, memo)
y = callable(*args)
memo[id(x)] = y
if state is not None:
if deep:
> state = deepcopy(state, memo)
../lib-python/2.7/copy.py:334:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = {'_anonymous': <_pytest.config.argparsing.OptionGroup object at 0x000000000229fad0>, '_groups': [<_pytest.config.argpa...['markers', 'empty_parameter_set_mark', 'norecursedirs', 'testpaths', 'console_output_style', 'usefixtures', ...], ...}
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}, _nil = []
def deepcopy(x, memo=None, _nil=[]):
"""Deep copy operation on arbitrary Python objects.
See the module's __doc__ string for more info.
"""
if memo is None:
memo = {}
d = id(x)
y = memo.get(d, _nil)
if y is not _nil:
return y
cls = type(x)
copier = _deepcopy_dispatch.get(cls)
if copier:
> y = copier(x, memo)
../lib-python/2.7/copy.py:163:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = {'_anonymous': <_pytest.config.argparsing.OptionGroup object at 0x000000000229fad0>, '_groups': [<_pytest.config.argpa...['markers', 'empty_parameter_set_mark', 'norecursedirs', 'testpaths', 'console_output_style', 'usefixtures', ...], ...}
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}
def _deepcopy_dict(x, memo):
y = {}
memo[id(x)] = y
for key, value in x.iteritems():
> y[deepcopy(key, memo)] = deepcopy(value, memo)
../lib-python/2.7/copy.py:257:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = MyOptionParser(prog='test_all.py', usage='%(prog)s [options] [file_or_dir] [fi...rsing.DropShorterLongHelpFormatter'>, conflict_handler='error', add_help=False)
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}, _nil = []
def deepcopy(x, memo=None, _nil=[]):
"""Deep copy operation on arbitrary Python objects.
See the module's __doc__ string for more info.
"""
if memo is None:
memo = {}
d = id(x)
y = memo.get(d, _nil)
if y is not _nil:
return y
cls = type(x)
copier = _deepcopy_dispatch.get(cls)
if copier:
y = copier(x, memo)
else:
try:
issc = issubclass(cls, type)
except TypeError: # cls is not a class (old Boost; see SF #502085)
issc = 0
if issc:
y = _deepcopy_atomic(x, memo)
else:
copier = getattr(x, "__deepcopy__", None)
if copier:
y = copier(memo)
else:
reductor = dispatch_table.get(cls)
if reductor:
rv = reductor(x)
else:
reductor = getattr(x, "__reduce_ex__", None)
if reductor:
rv = reductor(2)
else:
reductor = getattr(x, "__reduce__", None)
if reductor:
rv = reductor()
else:
raise Error(
"un(deep)copyable object of type %s" % cls)
> y = _reconstruct(x, rv, 1, memo)
../lib-python/2.7/copy.py:190:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = MyOptionParser(prog='test_all.py', usage='%(prog)s [options] [file_or_dir] [fi...rsing.DropShorterLongHelpFormatter'>, conflict_handler='error', add_help=False)
info = (<function __newobj__ at 0x00007fdb99d88548>, (<class '_pytest.config.argparsing.MyOptionParser'>,), {'_action_groups'...tion file raise errors.', metavar=None), ...], '_defaults': {}, '_has_negative_number_optionals': [], ...}, None, None)
deep = 1, memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}
def _reconstruct(x, info, deep, memo=None):
if isinstance(info, str):
return x
assert isinstance(info, tuple)
if memo is None:
memo = {}
n = len(info)
assert n in (2, 3, 4, 5)
callable, args = info[:2]
if n > 2:
state = info[2]
else:
state = None
if n > 3:
listiter = info[3]
else:
listiter = None
if n > 4:
dictiter = info[4]
else:
dictiter = None
if deep:
args = deepcopy(args, memo)
y = callable(*args)
memo[id(x)] = y
if state is not None:
if deep:
> state = deepcopy(state, memo)
../lib-python/2.7/copy.py:334:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = {'_action_groups': [<argparse._ArgumentGroup object at 0x0000000002b2b248>, <argparse._ArgumentGroup object at 0x00000... in configuration file raise errors.', metavar=None), ...], '_defaults': {}, '_has_negative_number_optionals': [], ...}
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}, _nil = []
def deepcopy(x, memo=None, _nil=[]):
"""Deep copy operation on arbitrary Python objects.
See the module's __doc__ string for more info.
"""
if memo is None:
memo = {}
d = id(x)
y = memo.get(d, _nil)
if y is not _nil:
return y
cls = type(x)
copier = _deepcopy_dispatch.get(cls)
if copier:
> y = copier(x, memo)
../lib-python/2.7/copy.py:163:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = {'_action_groups': [<argparse._ArgumentGroup object at 0x0000000002b2b248>, <argparse._ArgumentGroup object at 0x00000... in configuration file raise errors.', metavar=None), ...], '_defaults': {}, '_has_negative_number_optionals': [], ...}
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}
def _deepcopy_dict(x, memo):
y = {}
memo[id(x)] = y
for key, value in x.iteritems():
> y[deepcopy(key, memo)] = deepcopy(value, memo)
../lib-python/2.7/copy.py:257:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = [_StoreAction(option_strings=['-k'], dest='keyword', nargs=None, const=None, de...s functions which have names assigne...est='strict', nargs=0, const=Tr... help='marks not registered in configuration file raise errors.', metavar=None), ...]
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}, _nil = []
def deepcopy(x, memo=None, _nil=[]):
"""Deep copy operation on arbitrary Python objects.
See the module's __doc__ string for more info.
"""
if memo is None:
memo = {}
d = id(x)
y = memo.get(d, _nil)
if y is not _nil:
return y
cls = type(x)
copier = _deepcopy_dispatch.get(cls)
if copier:
> y = copier(x, memo)
../lib-python/2.7/copy.py:163:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = [_StoreAction(option_strings=['-k'], dest='keyword', nargs=None, const=None, de...s functions which have names assigne...est='strict', nargs=0, const=Tr... help='marks not registered in configuration file raise errors.', metavar=None), ...]
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}
def _deepcopy_list(x, memo):
y = []
memo[id(x)] = y
for a in x:
> y.append(deepcopy(a, memo))
../lib-python/2.7/copy.py:230:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = _StoreAction(option_strings=['-k'], dest='keyword', nargs=None, const=None, de...s functions which have names assigned directly to them.", metavar='EXPRESSION')
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}, _nil = []
def deepcopy(x, memo=None, _nil=[]):
"""Deep copy operation on arbitrary Python objects.
See the module's __doc__ string for more info.
"""
if memo is None:
memo = {}
d = id(x)
y = memo.get(d, _nil)
if y is not _nil:
return y
cls = type(x)
copier = _deepcopy_dispatch.get(cls)
if copier:
y = copier(x, memo)
else:
try:
issc = issubclass(cls, type)
except TypeError: # cls is not a class (old Boost; see SF #502085)
issc = 0
if issc:
y = _deepcopy_atomic(x, memo)
else:
copier = getattr(x, "__deepcopy__", None)
if copier:
y = copier(memo)
else:
reductor = dispatch_table.get(cls)
if reductor:
rv = reductor(x)
else:
reductor = getattr(x, "__reduce_ex__", None)
if reductor:
rv = reductor(2)
else:
reductor = getattr(x, "__reduce__", None)
if reductor:
rv = reductor()
else:
raise Error(
"un(deep)copyable object of type %s" % cls)
> y = _reconstruct(x, rv, 1, memo)
../lib-python/2.7/copy.py:190:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = _StoreAction(option_strings=['-k'], dest='keyword', nargs=None, const=None, de...s functions which have names assigned directly to them.", metavar='EXPRESSION')
info = (<function __newobj__ at 0x00007fdb99d88548>, (<class 'argparse._StoreAction'>,), {'choices': None, 'const': None, 'container': <argparse._ArgumentGroup object at 0x0000000002b2b2b8>, 'default': '', ...}, None, None)
deep = 1, memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}
def _reconstruct(x, info, deep, memo=None):
if isinstance(info, str):
return x
assert isinstance(info, tuple)
if memo is None:
memo = {}
n = len(info)
assert n in (2, 3, 4, 5)
callable, args = info[:2]
if n > 2:
state = info[2]
else:
state = None
if n > 3:
listiter = info[3]
else:
listiter = None
if n > 4:
dictiter = info[4]
else:
dictiter = None
if deep:
args = deepcopy(args, memo)
y = callable(*args)
memo[id(x)] = y
if state is not None:
if deep:
> state = deepcopy(state, memo)
../lib-python/2.7/copy.py:334:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = {'choices': None, 'const': None, 'container': <argparse._ArgumentGroup object at 0x0000000002b2b2b8>, 'default': '', ...}
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}, _nil = []
def deepcopy(x, memo=None, _nil=[]):
"""Deep copy operation on arbitrary Python objects.
See the module's __doc__ string for more info.
"""
if memo is None:
memo = {}
d = id(x)
y = memo.get(d, _nil)
if y is not _nil:
return y
cls = type(x)
copier = _deepcopy_dispatch.get(cls)
if copier:
> y = copier(x, memo)
../lib-python/2.7/copy.py:163:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = {'choices': None, 'const': None, 'container': <argparse._ArgumentGroup object at 0x0000000002b2b2b8>, 'default': '', ...}
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}
def _deepcopy_dict(x, memo):
y = {}
memo[id(x)] = y
for key, value in x.iteritems():
> y[deepcopy(key, memo)] = deepcopy(value, memo)
../lib-python/2.7/copy.py:257:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = <argparse._ArgumentGroup object at 0x0000000002b2b2b8>
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}, _nil = []
def deepcopy(x, memo=None, _nil=[]):
"""Deep copy operation on arbitrary Python objects.
See the module's __doc__ string for more info.
"""
if memo is None:
memo = {}
d = id(x)
y = memo.get(d, _nil)
if y is not _nil:
return y
cls = type(x)
copier = _deepcopy_dispatch.get(cls)
if copier:
y = copier(x, memo)
else:
try:
issc = issubclass(cls, type)
except TypeError: # cls is not a class (old Boost; see SF #502085)
issc = 0
if issc:
y = _deepcopy_atomic(x, memo)
else:
copier = getattr(x, "__deepcopy__", None)
if copier:
y = copier(memo)
else:
reductor = dispatch_table.get(cls)
if reductor:
rv = reductor(x)
else:
reductor = getattr(x, "__reduce_ex__", None)
if reductor:
rv = reductor(2)
else:
reductor = getattr(x, "__reduce__", None)
if reductor:
rv = reductor()
else:
raise Error(
"un(deep)copyable object of type %s" % cls)
> y = _reconstruct(x, rv, 1, memo)
../lib-python/2.7/copy.py:190:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = <argparse._ArgumentGroup object at 0x0000000002b2b2b8>
info = (<function __newobj__ at 0x00007fdb99d88548>, (<class 'argparse._ArgumentGroup'>,), {'_action_groups': [], '_actions':...=0, const=Tr... help='marks not registered in configuration file raise errors.', metavar=None), ...], ...}, None, None)
deep = 1, memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}
def _reconstruct(x, info, deep, memo=None):
if isinstance(info, str):
return x
assert isinstance(info, tuple)
if memo is None:
memo = {}
n = len(info)
assert n in (2, 3, 4, 5)
callable, args = info[:2]
if n > 2:
state = info[2]
else:
state = None
if n > 3:
listiter = info[3]
else:
listiter = None
if n > 4:
dictiter = info[4]
else:
dictiter = None
if deep:
args = deepcopy(args, memo)
y = callable(*args)
memo[id(x)] = y
if state is not None:
if deep:
> state = deepcopy(state, memo)
../lib-python/2.7/copy.py:334:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = {'_action_groups': [], '_actions': [_StoreAction(option_strings=['-k'], dest='keyword', nargs=None, const=None, de...s...trict', nargs=0, const=Tr... help='marks not registered in configuration file raise errors.', metavar=None), ...], ...}
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}, _nil = []
def deepcopy(x, memo=None, _nil=[]):
"""Deep copy operation on arbitrary Python objects.
See the module's __doc__ string for more info.
"""
if memo is None:
memo = {}
d = id(x)
y = memo.get(d, _nil)
if y is not _nil:
return y
cls = type(x)
copier = _deepcopy_dispatch.get(cls)
if copier:
> y = copier(x, memo)
../lib-python/2.7/copy.py:163:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = {'_action_groups': [], '_actions': [_StoreAction(option_strings=['-k'], dest='keyword', nargs=None, const=None, de...s...trict', nargs=0, const=Tr... help='marks not registered in configuration file raise errors.', metavar=None), ...], ...}
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}
def _deepcopy_dict(x, memo):
y = {}
memo[id(x)] = y
for key, value in x.iteritems():
> y[deepcopy(key, memo)] = deepcopy(value, memo)
../lib-python/2.7/copy.py:257:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = {'--assert': _StoreAction(option_strings=['--assert'], dest='assertmode', nargs=None, const... p...], dest='cacheshow', nargs=0, c...e, help="show cache contents, don't perform collection or tests", metavar=None), ...}
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}, _nil = []
def deepcopy(x, memo=None, _nil=[]):
"""Deep copy operation on arbitrary Python objects.
See the module's __doc__ string for more info.
"""
if memo is None:
memo = {}
d = id(x)
y = memo.get(d, _nil)
if y is not _nil:
return y
cls = type(x)
copier = _deepcopy_dispatch.get(cls)
if copier:
> y = copier(x, memo)
../lib-python/2.7/copy.py:163:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = {'--assert': _StoreAction(option_strings=['--assert'], dest='assertmode', nargs=None, const... p...], dest='cacheshow', nargs=0, c...e, help="show cache contents, don't perform collection or tests", metavar=None), ...}
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}
def _deepcopy_dict(x, memo):
y = {}
memo[id(x)] = y
for key, value in x.iteritems():
> y[deepcopy(key, memo)] = deepcopy(value, memo)
../lib-python/2.7/copy.py:257:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = _CountAction(option_strings=['-v', '--verbose'], dest='verbose', nargs=0, cons..., default=0, type=None, choices=None, help='increase verbosity.', metavar=None)
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}, _nil = []
def deepcopy(x, memo=None, _nil=[]):
"""Deep copy operation on arbitrary Python objects.
See the module's __doc__ string for more info.
"""
if memo is None:
memo = {}
d = id(x)
y = memo.get(d, _nil)
if y is not _nil:
return y
cls = type(x)
copier = _deepcopy_dispatch.get(cls)
if copier:
y = copier(x, memo)
else:
try:
issc = issubclass(cls, type)
except TypeError: # cls is not a class (old Boost; see SF #502085)
issc = 0
if issc:
y = _deepcopy_atomic(x, memo)
else:
copier = getattr(x, "__deepcopy__", None)
if copier:
y = copier(memo)
else:
reductor = dispatch_table.get(cls)
if reductor:
rv = reductor(x)
else:
reductor = getattr(x, "__reduce_ex__", None)
if reductor:
rv = reductor(2)
else:
reductor = getattr(x, "__reduce__", None)
if reductor:
rv = reductor()
else:
raise Error(
"un(deep)copyable object of type %s" % cls)
> y = _reconstruct(x, rv, 1, memo)
../lib-python/2.7/copy.py:190:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = _CountAction(option_strings=['-v', '--verbose'], dest='verbose', nargs=0, cons..., default=0, type=None, choices=None, help='increase verbosity.', metavar=None)
info = (<function __newobj__ at 0x00007fdb99d88548>, (<class 'argparse._CountAction'>,), {'choices': None, 'const': None, 'container': <argparse._ArgumentGroup object at 0x0000000002b2b2f0>, 'default': 0, ...}, None, None)
deep = 1, memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}
def _reconstruct(x, info, deep, memo=None):
if isinstance(info, str):
return x
assert isinstance(info, tuple)
if memo is None:
memo = {}
n = len(info)
assert n in (2, 3, 4, 5)
callable, args = info[:2]
if n > 2:
state = info[2]
else:
state = None
if n > 3:
listiter = info[3]
else:
listiter = None
if n > 4:
dictiter = info[4]
else:
dictiter = None
if deep:
args = deepcopy(args, memo)
y = callable(*args)
memo[id(x)] = y
if state is not None:
if deep:
> state = deepcopy(state, memo)
../lib-python/2.7/copy.py:334:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = {'choices': None, 'const': None, 'container': <argparse._ArgumentGroup object at 0x0000000002b2b2f0>, 'default': 0, ...}
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}, _nil = []
def deepcopy(x, memo=None, _nil=[]):
"""Deep copy operation on arbitrary Python objects.
See the module's __doc__ string for more info.
"""
if memo is None:
memo = {}
d = id(x)
y = memo.get(d, _nil)
if y is not _nil:
return y
cls = type(x)
copier = _deepcopy_dispatch.get(cls)
if copier:
> y = copier(x, memo)
../lib-python/2.7/copy.py:163:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = {'choices': None, 'const': None, 'container': <argparse._ArgumentGroup object at 0x0000000002b2b2f0>, 'default': 0, ...}
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}
def _deepcopy_dict(x, memo):
y = {}
memo[id(x)] = y
for key, value in x.iteritems():
> y[deepcopy(key, memo)] = deepcopy(value, memo)
../lib-python/2.7/copy.py:257:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = <argparse._ArgumentGroup object at 0x0000000002b2b2f0>
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}, _nil = []
def deepcopy(x, memo=None, _nil=[]):
"""Deep copy operation on arbitrary Python objects.
See the module's __doc__ string for more info.
"""
if memo is None:
memo = {}
d = id(x)
y = memo.get(d, _nil)
if y is not _nil:
return y
cls = type(x)
copier = _deepcopy_dispatch.get(cls)
if copier:
y = copier(x, memo)
else:
try:
issc = issubclass(cls, type)
except TypeError: # cls is not a class (old Boost; see SF #502085)
issc = 0
if issc:
y = _deepcopy_atomic(x, memo)
else:
copier = getattr(x, "__deepcopy__", None)
if copier:
y = copier(memo)
else:
reductor = dispatch_table.get(cls)
if reductor:
rv = reductor(x)
else:
reductor = getattr(x, "__reduce_ex__", None)
if reductor:
rv = reductor(2)
else:
reductor = getattr(x, "__reduce__", None)
if reductor:
rv = reductor()
else:
raise Error(
"un(deep)copyable object of type %s" % cls)
> y = _reconstruct(x, rv, 1, memo)
../lib-python/2.7/copy.py:190:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = <argparse._ArgumentGroup object at 0x0000000002b2b2f0>
info = (<function __newobj__ at 0x00007fdb99d88548>, (<class 'argparse._ArgumentGroup'>,), {'_action_groups': [], '_actions':...locals', nar...es=None, help='show locals in tracebacks (disabled by default).', metavar=None), ...], ...}, None, None)
deep = 1, memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}
def _reconstruct(x, info, deep, memo=None):
if isinstance(info, str):
return x
assert isinstance(info, tuple)
if memo is None:
memo = {}
n = len(info)
assert n in (2, 3, 4, 5)
callable, args = info[:2]
if n > 2:
state = info[2]
else:
state = None
if n > 3:
listiter = info[3]
else:
listiter = None
if n > 4:
dictiter = info[4]
else:
dictiter = None
if deep:
args = deepcopy(args, memo)
y = callable(*args)
memo[id(x)] = y
if state is not None:
if deep:
> state = deepcopy(state, memo)
../lib-python/2.7/copy.py:334:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = {'_action_groups': [], '_actions': [_StoreAction(option_strings=['-k'], dest='keyword', nargs=None, const=None, de...s...], dest='showlocals', nar...es=None, help='show locals in tracebacks (disabled by default).', metavar=None), ...], ...}
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}, _nil = []
def deepcopy(x, memo=None, _nil=[]):
"""Deep copy operation on arbitrary Python objects.
See the module's __doc__ string for more info.
"""
if memo is None:
memo = {}
d = id(x)
y = memo.get(d, _nil)
if y is not _nil:
return y
cls = type(x)
copier = _deepcopy_dispatch.get(cls)
if copier:
> y = copier(x, memo)
../lib-python/2.7/copy.py:163:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = {'_action_groups': [], '_actions': [_StoreAction(option_strings=['-k'], dest='keyword', nargs=None, const=None, de...s...], dest='showlocals', nar...es=None, help='show locals in tracebacks (disabled by default).', metavar=None), ...], ...}
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}
def _deepcopy_dict(x, memo):
y = {}
memo[id(x)] = y
for key, value in x.iteritems():
> y[deepcopy(key, memo)] = deepcopy(value, memo)
../lib-python/2.7/copy.py:257:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
x = <SRE_Pattern object at 0x0000000002359a60>
memo = {1L: 0, 17L: 1, 33L: 2, 49L: 3, ...}, _nil = []
def deepcopy(x, memo=None, _nil=[]):
"""Deep copy operation on arbitrary Python objects.
See the module's __doc__ string for more info.
"""
if memo is None:
memo = {}
d = id(x)
y = memo.get(d, _nil)
if y is not _nil:
return y
cls = type(x)
copier = _deepcopy_dispatch.get(cls)
if copier:
y = copier(x, memo)
else:
try:
issc = issubclass(cls, type)
except TypeError: # cls is not a class (old Boost; see SF #502085)
issc = 0
if issc:
y = _deepcopy_atomic(x, memo)
else:
copier = getattr(x, "__deepcopy__", None)
if copier:
> y = copier(memo)
E TypeError: __deepcopy__() takes exactly 1 argument (2 given)
../lib-python/2.7/copy.py:174: TypeError
=========================== short test summary info ============================
FAIL interpreter/test/test_zzpickle_and_slow.py::AppTestGeneratorCloning::()::test_deepcopy_generator
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
========= 1 failed, 131 passed, 42 skipped, 1 warnings in 4.83 seconds =========
++ 07:40:57 starting objspace/test [4 started in total]
__ objspace/test [4 done in total, somefailed=False] __________________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 0 items
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
========================== 1 warnings in 0.09 seconds ==========================
++ 07:40:57 starting objspace/std/test [5 started in total]
__ objspace/std/test [5 done in total, somefailed=False] ______________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 1376 items / 1 skipped
objspace/std/test/test_bytearrayobject.py .............................. [ 2%]
......................... [ 3%]
objspace/std/test/test_bytesobject.py .................................. [ 6%]
.....s.....................s....... [ 9%]
objspace/std/test/test_celldict.py s...ss [ 9%]
objspace/std/test/test_dictmultiobject.py .............................. [ 11%]
........................................................................ [ 16%]
........................ssssss [ 19%]
objspace/std/test/test_dictproxy.py .....sssss [ 19%]
objspace/std/test/test_floatobject.py .................................. [ 22%]
. [ 22%]
objspace/std/test/test_identitydict.py ssssss [ 22%]
objspace/std/test/test_identityset.py sssssss [ 23%]
objspace/std/test/test_index.py ........................................ [ 26%]
...... [ 26%]
objspace/std/test/test_intobject.py ...........................s........ [ 29%]
................................s............... [ 32%]
objspace/std/test/test_jsondict.py ........... [ 33%]
objspace/std/test/test_kwargsdict.py sssss [ 33%]
objspace/std/test/test_listobject.py ................................... [ 36%]
............................................ssssssss. [ 40%]
objspace/std/test/test_longobject.py ................................... [ 42%]
... [ 43%]
objspace/std/test/test_mapdict.py ................ssssssssssssssssssssss [ 45%]
ssssssssssssssssssssss [ 47%]
objspace/std/test/test_memoryobject.py ....... [ 47%]
objspace/std/test/test_methodcache.py ssssssssssssssssssssssssssssssssss [ 50%]
sssssssssssssssssssssssssssssssssssss [ 53%]
objspace/std/test/test_newformat.py .................................... [ 55%]
..................................................ss........ [ 60%]
objspace/std/test/test_obj.py ..........s...sss.s... [ 61%]
objspace/std/test/test_prebuiltint.py ssssssssssssssssssssssssssssssssss [ 64%]
sssssssss [ 64%]
objspace/std/test/test_proxy.py ssssssssssss [ 65%]
objspace/std/test/test_proxy_function.py ........ [ 66%]
objspace/std/test/test_proxy_internals.py s....... [ 66%]
objspace/std/test/test_proxy_iter.py . [ 66%]
objspace/std/test/test_proxy_object.py .......... [ 67%]
objspace/std/test/test_proxy_usercreated.py s [ 67%]
objspace/std/test/test_setobject.py .................................... [ 70%]
.......................................... [ 73%]
objspace/std/test/test_sliceobject.py ....... [ 73%]
objspace/std/test/test_smalllongobject.py ...........................s.. [ 76%]
............ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss [ 81%]
sssssssssssssssssssssssssss [ 83%]
objspace/std/test/test_specialisedtupleobject.py .............ss........ [ 84%]
............... [ 85%]
objspace/std/test/test_tupleobject.py ..................... [ 87%]
objspace/std/test/test_typeobject.py ................................... [ 90%]
.............................s.ssssssss [ 92%]
objspace/std/test/test_unicodeobject.py ......................s......... [ 95%]
...............................................s................. [ 99%]
objspace/std/test/test_userobject.py . [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
pypy/objspace/std/test/test_unicodeobject.py::AppTestUnicodeStringStdOnly::()::test_compares
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/objspace/std/test/test_unicodeobject.py:259: UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
assert not s == u # UnicodeWarning
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/objspace/std/test/test_unicodeobject.py:260: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
assert s != u
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/objspace/std/test/test_unicodeobject.py:261: UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
assert not u == s
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/objspace/std/test/test_unicodeobject.py:262: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
assert u != s
-- Docs: https://docs.pytest.org/en/latest/warnings.html
============ 1052 passed, 325 skipped, 5 warnings in 17.29 seconds =============
++ 07:41:17 starting module/__builtin__/test [6 started in total]
__ module/__builtin__/test [6 done in total, somefailed=False] ________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 292 items
module/__builtin__/test/test_abstractinst.py .......... [ 3%]
module/__builtin__/test/test_apply.py ... [ 4%]
module/__builtin__/test/test_builtin.py ................................ [ 15%]
.................................. [ 27%]
module/__builtin__/test/test_classobj.py ............................... [ 37%]
........................ssss [ 47%]
module/__builtin__/test/test_descriptor.py .......................... [ 56%]
module/__builtin__/test/test_filter.py ........... [ 59%]
module/__builtin__/test/test_functional.py ............................. [ 69%]
................... [ 76%]
module/__builtin__/test/test_minmax.py .......................... [ 85%]
module/__builtin__/test/test_range.py ........................ [ 93%]
module/__builtin__/test/test_rawinput.py ... [ 94%]
module/__builtin__/test/test_reduce.py .... [ 95%]
module/__builtin__/test/test_vars.py ... [ 96%]
module/__builtin__/test/test_zip.py ......... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
============== 288 passed, 4 skipped, 1 warnings in 3.28 seconds ===============
++ 07:41:22 starting module/__pypy__/test [7 started in total]
__ module/__pypy__/test [7 done in total, somefailed=False] ___________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 68 items
module/__pypy__/test/test_builders.py ..... [ 7%]
module/__pypy__/test/test_bytebuffer.py .. [ 10%]
module/__pypy__/test/test_debug.py sssssss [ 20%]
module/__pypy__/test/test_identitydict.py ...... [ 29%]
module/__pypy__/test/test_intop.py ........... [ 45%]
module/__pypy__/test/test_locals2fast.py ..... [ 52%]
module/__pypy__/test/test_magic.py .....s. [ 63%]
module/__pypy__/test/test_newmemoryview.py ... [ 67%]
module/__pypy__/test/test_os.py . [ 69%]
module/__pypy__/test/test_signal.py ..... [ 76%]
module/__pypy__/test/test_special.py sssssssssss.. [ 95%]
module/__pypy__/test/test_time.py ... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
============== 49 passed, 19 skipped, 1 warnings in 4.91 seconds ===============
++ 07:41:27 starting module/_ast/test [8 started in total]
__ module/_ast/test [8 done in total, somefailed=False] _______________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 36 items
module/_ast/test/test_ast.py .........s.......................... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
=============== 35 passed, 1 skipped, 1 warnings in 1.29 seconds ===============
++ 07:41:29 starting module/_cffi_backend/test [9 started in total]
__ module/_cffi_backend/test [9 done in total, somefailed=False] ______________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 442 items
module/_cffi_backend/test/test_c.py .................................... [ 8%]
................................................s....................... [ 24%]
.............................s.....s.......................s............ [ 40%]
......s..........s........................s...... [ 51%]
module/_cffi_backend/test/test_fastpath.py .................. [ 55%]
module/_cffi_backend/test/test_ffi_obj.py .............................. [ 62%]
.............. [ 65%]
module/_cffi_backend/test/test_re_python.py .................... [ 70%]
module/_cffi_backend/test/test_recompiler.py sssssssssssssssssssssssssss [ 76%]
ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss [ 92%]
sssssssssssssssssssssssss [ 98%]
module/_cffi_backend/test/test_unicode_literals.py ....... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
pypy/module/_cffi_backend/test/test_c.py::AppTestC::()::test_cast_with_functionptr
/tmp/pytest/usession-pytest3.10-2037/test_c/_all_test_c.py:2124: UserWarning: implicit cast from 'char *' to 'void(*)()' will be forbidden in the future (check that the types are as you expect; use an explicit ffi.cast() if they are correct)
newp(BStructPtr, [cast(BCharP, 0)])
pypy/module/_cffi_backend/test/test_re_python.py::AppTestRecompilerPython::()::test_constant_1
/build_dir/pypy-c-jit-linux-x86-64/build/lib_pypy/cffi/cparser.py:154: UserWarning: String literal found in cdef() or type source. String literals are ignored here, but you should remove them anyway because some character sequences confuse pre-parsing.
warnings.warn("String literal found in cdef() or type source. "
/build_dir/pypy-c-jit-linux-x86-64/build/lib_pypy/cffi/cparser.py:165: UserWarning: Global variable 'globalvar42' in cdef(): for consistency with C it should have a storage class specifier (usually 'extern')
"(usually 'extern')" % (decl.name,))
/build_dir/pypy-c-jit-linux-x86-64/build/lib_pypy/cffi/cparser.py:165: UserWarning: Global variable 'no_such_globalvar' in cdef(): for consistency with C it should have a storage class specifier (usually 'extern')
"(usually 'extern')" % (decl.name,))
-- Docs: https://docs.pytest.org/en/latest/warnings.html
============= 311 passed, 131 skipped, 5 warnings in 5.21 seconds ==============
++ 07:41:36 starting module/_codecs/test [10 started in total]
__ module/_codecs/test [10 done in total, somefailed=False] ___________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 64 items
module/_codecs/test/test_codecs.py ..................................... [ 57%]
........................... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
==================== 64 passed, 1 warnings in 1.50 seconds =====================
++ 07:41:39 starting module/_continuation/test [11 started in total]
__ module/_continuation/test [11 done in total, somefailed=False] _____________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 120 items
module/_continuation/test/test_generator.py .... [ 3%]
module/_continuation/test/test_greenlet.py ............................ [ 26%]
module/_continuation/test/test_stacklet.py ............................. [ 50%]
......s..s [ 59%]
module/_continuation/test/test_translated.py ........................... [ 81%]
.. [ 83%]
module/_continuation/test/test_zpickle.py .................... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
============== 118 passed, 2 skipped, 1 warnings in 11.64 seconds ==============
++ 07:41:51 starting module/_cppyy/test [12 started in total]
__ module/_cppyy/test [12 done in total, somefailed=False] ____________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 0 items
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
========================== 1 warnings in 0.02 seconds ==========================
++ 07:41:51 starting module/_csv/test [13 started in total]
__ module/_csv/test [13 done in total, somefailed=False] ______________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 22 items
module/_csv/test/test_dialect.py ......... [ 40%]
module/_csv/test/test_reader.py ......... [ 81%]
module/_csv/test/test_writer.py .... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
==================== 22 passed, 1 warnings in 1.23 seconds =====================
++ 07:41:53 starting module/_demo/test [14 started in total]
__ module/_demo/test [14 done in total, somefailed=False] _____________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 1 item
module/_demo/test/test_sieve.py s [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
==================== 1 skipped, 1 warnings in 1.07 seconds =====================
++ 07:41:55 starting module/_file/test [15 started in total]
__ module/_file/test [15 done in total, somefailed=False] _____________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 252 items
module/_file/test/test_file.py ..................ss...ss........ [ 13%]
module/_file/test/test_file_extra.py ................................... [ 26%]
........................................................................ [ 55%]
.......................................ss..............ss..............s [ 84%]
s..............ss..................... [ 99%]
module/_file/test/test_large_file.py .. [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
pypy/module/_file/test/test_file.py::AppTestFile::()::test_simple
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/_file/test/test_file.py:29: RemovedInPytest4Warning: pytest/tmpdir_factory.ensuretemp is deprecated,
please use the tmp_path fixture or tmp_path_factory.mktemp
str(pytest.ensuretemp("fileimpl").join("foo.txt")))
pypy/module/_file/test/test_file.py::AppTestConcurrency::()::test_concurrent_writes
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/_file/test/test_file.py:438: RemovedInPytest4Warning: pytest/tmpdir_factory.ensuretemp is deprecated,
please use the tmp_path fixture or tmp_path_factory.mktemp
str(pytest.ensuretemp("fileimpl").join("concurrency.txt")))
pypy/module/_file/test/test_file.py::AppTestFile25::()::test___enter__
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/_file/test/test_file.py:549: RemovedInPytest4Warning: pytest/tmpdir_factory.ensuretemp is deprecated,
please use the tmp_path fixture or tmp_path_factory.mktemp
str(pytest.ensuretemp("fileimpl").join("foo.txt")))
pypy/module/_file/test/test_large_file.py::AppTestLargeFile::()::test_large_seek_offsets
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/_file/test/test_large_file.py:10: RemovedInPytest4Warning: pytest/tmpdir_factory.ensuretemp is deprecated,
please use the tmp_path fixture or tmp_path_factory.mktemp
str(py.test.ensuretemp("fileimpl").join("large.data")))
-- Docs: https://docs.pytest.org/en/latest/warnings.html
============== 240 passed, 12 skipped, 5 warnings in 8.51 seconds ==============
++ 07:42:05 starting module/_io/test [16 started in total]
__ module/_io/test [16 done in total, somefailed=False] _______________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 97 items / 1 skipped
module/_io/test/test_bufferedio.py .................................ssss [ 38%]
sssssssssssss........................... [ 79%]
module/_io/test/test_fileio.py .................... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
============== 80 passed, 18 skipped, 1 warnings in 2.38 seconds ===============
++ 07:42:08 starting module/_jitlog/test [17 started in total]
__ module/_jitlog/test [17 done in total, somefailed=False] ___________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 1 item
module/_jitlog/test/test__jitlog.py . [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
===================== 1 passed, 1 warnings in 1.03 seconds =====================
++ 07:42:10 starting module/_locale/test [18 started in total]
__ module/_locale/test [18 done in total, somefailed=False] ___________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 14 items
module/_locale/test/test_locale.py ssssssssssssss [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
==================== 14 skipped, 1 warnings in 1.11 seconds ====================
++ 07:42:12 starting module/_lsprof/test [19 started in total]
__ module/_lsprof/test [19 done in total, somefailed=False] ___________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 6 items
module/_lsprof/test/test_cprofile.py ...... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
===================== 6 passed, 1 warnings in 2.10 seconds =====================
++ 07:42:14 starting module/_md5/test [20 started in total]
__ module/_md5/test [20 done in total, somefailed=False] ______________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 6 items
module/_md5/test/test_md5.py .s.... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
pypy/module/_md5/test/test_md5.py::AppTestMD5::()::test_digest_size
<string>:2: DeprecationWarning: the md5 module is deprecated; use hashlib instead
-- Docs: https://docs.pytest.org/en/latest/warnings.html
=============== 5 passed, 1 skipped, 2 warnings in 1.04 seconds ================
++ 07:42:16 starting module/_minimal_curses/test [21 started in total]
__ module/_minimal_curses/test [21 done in total, somefailed=False] ___________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 0 items
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
========================== 1 warnings in 0.07 seconds ==========================
++ 07:42:16 starting module/_multibytecodec/test [22 started in total]
__ module/_multibytecodec/test [22 done in total, somefailed=False] ___________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 33 items
module/_multibytecodec/test/test_app_codecs.py ................ [ 48%]
module/_multibytecodec/test/test_app_incremental.py ............ [ 84%]
module/_multibytecodec/test/test_app_stream.py ..... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
==================== 33 passed, 1 warnings in 1.45 seconds =====================
++ 07:42:19 starting module/_multiprocessing/test [23 started in total]
__ module/_multiprocessing/test [23 done in total, somefailed=False] __________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 21 items
module/_multiprocessing/test/test_connection.py .sss...... [ 47%]
module/_multiprocessing/test/test_memory.py .. [ 57%]
module/_multiprocessing/test/test_semaphore.py ....... [ 90%]
module/_multiprocessing/test/test_win32.py ss [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
=============== 16 passed, 5 skipped, 1 warnings in 2.61 seconds ===============
++ 07:42:22 starting module/_pypyjson/test [24 started in total]
__ module/_pypyjson/test [24 done in total, somefailed=False] _________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 27 items / 1 skipped
module/_pypyjson/test/test__pypyjson.py ........................... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
=============== 27 passed, 1 skipped, 1 warnings in 1.48 seconds ===============
++ 07:42:25 starting module/_random/test [25 started in total]
__ module/_random/test [25 done in total, somefailed=False] ___________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 13 items
module/_random/test/test_random.py ............. [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
==================== 13 passed, 1 warnings in 2.20 seconds =====================
++ 07:42:28 starting module/_rawffi/alt/test [26 started in total]
__ module/_rawffi/alt/test [26 done in total, somefailed=False] _______________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 61 items
module/_rawffi/alt/test/test_ffitype.py ..... [ 8%]
module/_rawffi/alt/test/test_funcptr.py ................................ [ 60%]
..ssssss.s [ 77%]
module/_rawffi/alt/test/test_struct.py ...s.......... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
=============== 53 passed, 8 skipped, 1 warnings in 1.85 seconds ===============
++ 07:42:31 starting module/_rawffi/test [27 started in total]
__ module/_rawffi/test [27 done in total, somefailed=False] ___________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 78 items
module/_rawffi/test/test__rawffi.py .....s.............................. [ 46%]
...............s..........s..... [ 87%]
module/_rawffi/test/test_exit.py . [ 88%]
module/_rawffi/test/test_nested.py ...... [ 96%]
module/_rawffi/test/test_tracker.py sss [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
=============== 72 passed, 6 skipped, 1 warnings in 1.99 seconds ===============
n: 2
Arg 0: 3
Arg 1: 15
++ 07:42:33 starting module/_sha/test [28 started in total]
__ module/_sha/test [28 done in total, somefailed=False] ______________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 6 items
module/_sha/test/test_sha.py .s.... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
pypy/module/_sha/test/test_sha.py::AppTestSHA::()::test_digest_size
<string>:2: DeprecationWarning: the sha module is deprecated; use the hashlib module instead
-- Docs: https://docs.pytest.org/en/latest/warnings.html
=============== 5 passed, 1 skipped, 2 warnings in 1.04 seconds ================
++ 07:42:35 starting module/_socket/test [29 started in total]
__ module/_socket/test [29 done in total, somefailed=False] ___________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 38 items
module/_socket/test/test_sock_app.py ..........s...........s.....s...... [ 92%]
... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
=============== 35 passed, 3 skipped, 1 warnings in 6.76 seconds ===============
++ 07:42:43 starting module/_sre/test [30 started in total]
__ module/_sre/test [30 done in total, somefailed=False] ______________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 139 items
module/_sre/test/test_app_sre.py ....................................... [ 28%]
.......s........................ssssssssssssssssssssssssssssssssssss.... [ 79%]
.... [ 82%]
module/_sre/test/test_sre_buf.py ........................ [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
============== 102 passed, 37 skipped, 1 warnings in 1.83 seconds ==============
++ 07:42:46 starting module/_vmprof/test [31 started in total]
__ module/_vmprof/test [31 done in total, somefailed=False] ___________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 5 items
module/_vmprof/test/test__vmprof.py ....s [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
/build_dir/pypy-c-jit-linux-x86-64/build/lib_pypy/cffi/cparser.py:165
/build_dir/pypy-c-jit-linux-x86-64/build/lib_pypy/cffi/cparser.py:165: UserWarning: Global variable 'buffer' in cdef(): for consistency with C it should have a storage class specifier (usually 'extern')
"(usually 'extern')" % (decl.name,))
-- Docs: https://docs.pytest.org/en/latest/warnings.html
=============== 4 passed, 1 skipped, 2 warnings in 1.51 seconds ================
++ 07:42:48 starting module/_warnings/test [32 started in total]
__ module/_warnings/test [32 done in total, somefailed=False] _________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 0 items
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
========================== 1 warnings in 0.04 seconds ==========================
++ 07:42:49 starting module/_weakref/test [33 started in total]
__ module/_weakref/test [33 done in total, somefailed=False] __________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 42 items
module/_weakref/test/test_weakref.py ................................... [ 83%]
....... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
==================== 42 passed, 1 warnings in 2.17 seconds =====================
++ 07:42:52 starting module/_winreg/test [34 started in total]
__ module/_winreg/test [34 done in total, somefailed=False] ___________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 0 items / 1 skipped
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
==================== 1 skipped, 1 warnings in 0.17 seconds =====================
++ 07:42:53 starting module/array/test [35 started in total]
__ module/array/test [35 done in total, somefailed=False] _____________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 48 items
module/array/test/test_array.py ........................................ [ 83%]
........ [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
pypy/module/array/test/test_array.py::AppTestArray::()::test_ctor
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/array/test/test_array.py:14: RemovedInPytest4Warning: pytest/tmpdir_factory.ensuretemp is deprecated,
please use the tmp_path fixture or tmp_path_factory.mktemp
str(pytest.ensuretemp('array').join('tmpfile')))
-- Docs: https://docs.pytest.org/en/latest/warnings.html
==================== 48 passed, 2 warnings in 1.81 seconds =====================
++ 07:42:55 starting module/binascii/test [36 started in total]
__ module/binascii/test [36 done in total, somefailed=False] __________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 14 items
module/binascii/test/test_binascii.py .............. [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
==================== 14 passed, 1 warnings in 1.12 seconds =====================
++ 07:42:57 starting module/bz2/test [37 started in total]
__ module/bz2/test [37 done in total, somefailed=False] _______________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 52 items
module/bz2/test/test_bz2_compdecomp.py ..s...........s... [ 34%]
module/bz2/test/test_bz2_file.py ................................. [ 98%]
module/bz2/test/test_large.py . [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
pypy/module/bz2/test/test_bz2_compdecomp.py::AppTestBZ2Compressor::()::test_compress
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/bz2/test/test_bz2_compdecomp.py:20: DeprecationWarning: The popen2 module is deprecated. Use the subprocess module.
import popen2
pypy/module/bz2/test/test_bz2_file.py::AppTestBZ2File::()::test_attributes
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/bz2/test/test_bz2_file.py:62: RemovedInPytest4Warning: pytest/tmpdir_factory.ensuretemp is deprecated,
please use the tmp_path fixture or tmp_path_factory.mktemp
str(py.test.ensuretemp("bz2").join("foo")))
pypy/module/bz2/test/test_bz2_file.py::AppTestBZ2File::()::test_open_close_del
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/bz2/test/test_bz2_file.py:20: RemovedInPytest4Warning: pytest/tmpdir_factory.ensuretemp is deprecated,
please use the tmp_path fixture or tmp_path_factory.mktemp
f = py.test.ensuretemp("bz2").join("foo")
pypy/module/bz2/test/test_bz2_file.py::AppTestBZ2File::()::test_open_mode_U
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/bz2/test/test_bz2_file.py:20: RemovedInPytest4Warning: pytest/tmpdir_factory.ensuretemp is deprecated,
please use the tmp_path fixture or tmp_path_factory.mktemp
f = py.test.ensuretemp("bz2").join("foo")
pypy/module/bz2/test/test_bz2_file.py::AppTestBZ2File::()::test_seek_forward
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/bz2/test/test_bz2_file.py:20: RemovedInPytest4Warning: pytest/tmpdir_factory.ensuretemp is deprecated,
please use the tmp_path fixture or tmp_path_factory.mktemp
f = py.test.ensuretemp("bz2").join("foo")
pypy/module/bz2/test/test_bz2_file.py::AppTestBZ2File::()::test_seek_backwards
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/bz2/test/test_bz2_file.py:20: RemovedInPytest4Warning: pytest/tmpdir_factory.ensuretemp is deprecated,
please use the tmp_path fixture or tmp_path_factory.mktemp
f = py.test.ensuretemp("bz2").join("foo")
pypy/module/bz2/test/test_bz2_file.py::AppTestBZ2File::()::test_seek_backwards_from_end
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/bz2/test/test_bz2_file.py:20: RemovedInPytest4Warning: pytest/tmpdir_factory.ensuretemp is deprecated,
please use the tmp_path fixture or tmp_path_factory.mktemp
f = py.test.ensuretemp("bz2").join("foo")
pypy/module/bz2/test/test_bz2_file.py::AppTestBZ2File::()::test_seek_post_end
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/bz2/test/test_bz2_file.py:20: RemovedInPytest4Warning: pytest/tmpdir_factory.ensuretemp is deprecated,
please use the tmp_path fixture or tmp_path_factory.mktemp
f = py.test.ensuretemp("bz2").join("foo")
pypy/module/bz2/test/test_bz2_file.py::AppTestBZ2File::()::test_seek_post_end_twice
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/bz2/test/test_bz2_file.py:20: RemovedInPytest4Warning: pytest/tmpdir_factory.ensuretemp is deprecated,
please use the tmp_path fixture or tmp_path_factory.mktemp
f = py.test.ensuretemp("bz2").join("foo")
pypy/module/bz2/test/test_bz2_file.py::AppTestBZ2File::()::test_seek_pre_start
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/bz2/test/test_bz2_file.py:20: RemovedInPytest4Warning: pytest/tmpdir_factory.ensuretemp is deprecated,
please use the tmp_path fixture or tmp_path_factory.mktemp
f = py.test.ensuretemp("bz2").join("foo")
pypy/module/bz2/test/test_bz2_file.py::AppTestBZ2File::()::test_readline
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/bz2/test/test_bz2_file.py:20: RemovedInPytest4Warning: pytest/tmpdir_factory.ensuretemp is deprecated,
please use the tmp_path fixture or tmp_path_factory.mktemp
f = py.test.ensuretemp("bz2").join("foo")
pypy/module/bz2/test/test_bz2_file.py::AppTestBZ2File::()::test_read
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/bz2/test/test_bz2_file.py:20: RemovedInPytest4Warning: pytest/tmpdir_factory.ensuretemp is deprecated,
please use the tmp_path fixture or tmp_path_factory.mktemp
f = py.test.ensuretemp("bz2").join("foo")
pypy/module/bz2/test/test_bz2_file.py::AppTestBZ2File::()::test_silently_closes
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/bz2/test/test_bz2_file.py:25: RemovedInPytest4Warning: pytest/tmpdir_factory.ensuretemp is deprecated,
please use the tmp_path fixture or tmp_path_factory.mktemp
f = py.test.ensuretemp("bz2").join("foo")
pypy/module/bz2/test/test_bz2_file.py::AppTestBZ2File::()::test_read_broken_file
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/bz2/test/test_bz2_file.py:25: RemovedInPytest4Warning: pytest/tmpdir_factory.ensuretemp is deprecated,
please use the tmp_path fixture or tmp_path_factory.mktemp
f = py.test.ensuretemp("bz2").join("foo")
pypy/module/bz2/test/test_bz2_file.py::AppTestBZ2File::()::test_subsequent_read_broken_file
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/bz2/test/test_bz2_file.py:25: RemovedInPytest4Warning: pytest/tmpdir_factory.ensuretemp is deprecated,
please use the tmp_path fixture or tmp_path_factory.mktemp
f = py.test.ensuretemp("bz2").join("foo")
pypy/module/bz2/test/test_bz2_file.py::AppTestBZ2File::()::test_read_chunk9
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/bz2/test/test_bz2_file.py:20: RemovedInPytest4Warning: pytest/tmpdir_factory.ensuretemp is deprecated,
please use the tmp_path fixture or tmp_path_factory.mktemp
f = py.test.ensuretemp("bz2").join("foo")
pypy/module/bz2/test/test_bz2_file.py::AppTestBZ2File::()::test_read_100_bytes
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/bz2/test/test_bz2_file.py:20: RemovedInPytest4Warning: pytest/tmpdir_factory.ensuretemp is deprecated,
please use the tmp_path fixture or tmp_path_factory.mktemp
f = py.test.ensuretemp("bz2").join("foo")
pypy/module/bz2/test/test_bz2_file.py::AppTestBZ2File::()::test_universal_newlines_lf
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/bz2/test/test_bz2_file.py:20: RemovedInPytest4Warning: pytest/tmpdir_factory.ensuretemp is deprecated,
please use the tmp_path fixture or tmp_path_factory.mktemp
f = py.test.ensuretemp("bz2").join("foo")
pypy/module/bz2/test/test_bz2_file.py::AppTestBZ2File::()::test_universal_newlines_crlf
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/bz2/test/test_bz2_file.py:20: RemovedInPytest4Warning: pytest/tmpdir_factory.ensuretemp is deprecated,
please use the tmp_path fixture or tmp_path_factory.mktemp
f = py.test.ensuretemp("bz2").join("foo")
pypy/module/bz2/test/test_bz2_file.py::AppTestBZ2File::()::test_readlines
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/bz2/test/test_bz2_file.py:20: RemovedInPytest4Warning: pytest/tmpdir_factory.ensuretemp is deprecated,
please use the tmp_path fixture or tmp_path_factory.mktemp
f = py.test.ensuretemp("bz2").join("foo")
pypy/module/bz2/test/test_bz2_file.py::AppTestBZ2File::()::test_iterator
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/bz2/test/test_bz2_file.py:20: RemovedInPytest4Warning: pytest/tmpdir_factory.ensuretemp is deprecated,
please use the tmp_path fixture or tmp_path_factory.mktemp
f = py.test.ensuretemp("bz2").join("foo")
pypy/module/bz2/test/test_bz2_file.py::AppTestBZ2File::()::test_xreadlines
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/bz2/test/test_bz2_file.py:20: RemovedInPytest4Warning: pytest/tmpdir_factory.ensuretemp is deprecated,
please use the tmp_path fixture or tmp_path_factory.mktemp
f = py.test.ensuretemp("bz2").join("foo")
-- Docs: https://docs.pytest.org/en/latest/warnings.html
============== 50 passed, 2 skipped, 23 warnings in 3.84 seconds ===============
++ 07:43:01 starting module/cStringIO/test [38 started in total]
__ module/cStringIO/test [38 done in total, somefailed=False] _________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 15 items
module/cStringIO/test/test_interp_stringio.py ............... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
==================== 15 passed, 1 warnings in 1.22 seconds =====================
++ 07:43:03 starting module/cmath/test [39 started in total]
__ module/cmath/test [39 done in total, somefailed=False] _____________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 13 items
module/cmath/test/test_cmath.py ............. [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
==================== 13 passed, 1 warnings in 1.12 seconds =====================
++ 07:43:05 starting module/cpyext/test [40 started in total]
__ module/cpyext/test [40 done in total, somefailed=False] ____________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 329 items
module/cpyext/test/test_abstract.py ....... [ 2%]
module/cpyext/test/test_arraymodule.py ..........x...... [ 7%]
module/cpyext/test/test_boolobject.py ... [ 8%]
module/cpyext/test/test_borrow.py ..x [ 9%]
module/cpyext/test/test_bufferobject.py ..s. [ 10%]
module/cpyext/test/test_bytearrayobject.py ...... [ 12%]
module/cpyext/test/test_bytesobject.py .............. [ 16%]
module/cpyext/test/test_capsule.py . [ 16%]
module/cpyext/test/test_cell.py . [ 17%]
module/cpyext/test/test_classobject.py .. [ 17%]
module/cpyext/test/test_complexobject.py .... [ 18%]
module/cpyext/test/test_cpyext.py ..s.........s....s........ [ 26%]
module/cpyext/test/test_datetime.py ..... [ 28%]
module/cpyext/test/test_dictobject.py .......... [ 31%]
module/cpyext/test/test_eval.py ........ [ 33%]
module/cpyext/test/test_fileobject.py . [ 34%]
module/cpyext/test/test_floatobject.py ............ [ 37%]
module/cpyext/test/test_frameobject.py .. [ 38%]
module/cpyext/test/test_getargs.py ........... [ 41%]
module/cpyext/test/test_import.py . [ 41%]
module/cpyext/test/test_intobject.py ..... [ 43%]
module/cpyext/test/test_iterator.py .. [ 44%]
module/cpyext/test/test_listobject.py .... [ 45%]
module/cpyext/test/test_longobject.py .......... [ 48%]
module/cpyext/test/test_mapping.py . [ 48%]
module/cpyext/test/test_marshal.py .. [ 49%]
module/cpyext/test/test_memoryobject.py ...s.. [ 51%]
module/cpyext/test/test_methodobject.py ........... [ 54%]
module/cpyext/test/test_misc.py . [ 54%]
module/cpyext/test/test_ndarrayobject.py sss [ 55%]
module/cpyext/test/test_number.py x... [ 56%]
module/cpyext/test/test_object.py ......s..... [ 60%]
module/cpyext/test/test_pycobject.py . [ 60%]
module/cpyext/test/test_pyerrors.py ....s.......ss.. [ 65%]
module/cpyext/test/test_pyfile.py . [ 65%]
module/cpyext/test/test_pysignals.py . [ 66%]
module/cpyext/test/test_pystate.py ........... [ 69%]
module/cpyext/test/test_sequence.py .... [ 70%]
module/cpyext/test/test_setobject.py . [ 71%]
module/cpyext/test/test_sliceobject.py .... [ 72%]
module/cpyext/test/test_structseq.py . [ 72%]
module/cpyext/test/test_sysmodule.py .. [ 73%]
module/cpyext/test/test_thread.py .... [ 74%]
module/cpyext/test/test_tupleobject.py ..... [ 75%]
module/cpyext/test/test_typeobject.py ..........s....s.................. [ 86%]
............................. [ 95%]
module/cpyext/test/test_unicodeobject.py ......... [ 97%]
module/cpyext/test/test_userslots.py ... [ 98%]
module/cpyext/test/test_version.py .. [ 99%]
module/cpyext/test/test_weakref.py .. [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
pypy/module/cpyext/test/test_object.py::AppTestObject::()::test_object_malloc
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/cpyext/test/test_object.py:239: RemovedInPytest4Warning: pytest/tmpdir_factory.ensuretemp is deprecated,
please use the tmp_path fixture or tmp_path_factory.mktemp
tmpname = str(pytest.ensuretemp('out', dir=0))
-- Docs: https://docs.pytest.org/en/latest/warnings.html
======== 312 passed, 14 skipped, 3 xfailed, 2 warnings in 95.28 seconds ========
in sq_inplace_repeat, n=3
got no exc
got no exc
got exc
++ 07:44:47 starting module/crypt/test [41 started in total]
__ module/crypt/test [41 done in total, somefailed=False] _____________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 1 item
module/crypt/test/test_crypt.py s [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
==================== 1 skipped, 1 warnings in 1.01 seconds =====================
++ 07:44:48 starting module/errno/test [42 started in total]
__ module/errno/test [42 done in total, somefailed=False] _____________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 3 items
module/errno/test/test_errno.py ... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
===================== 3 passed, 1 warnings in 1.01 seconds =====================
++ 07:44:50 starting module/exceptions/test [43 started in total]
__ module/exceptions/test [43 done in total, somefailed=False] ________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 24 items
module/exceptions/test/test_exc.py ..........s............. [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
=============== 23 passed, 1 skipped, 1 warnings in 1.28 seconds ===============
++ 07:44:52 starting module/faulthandler/test [44 started in total]
__ module/faulthandler/test [44 done in total, somefailed=False] ______________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 2 items
module/faulthandler/test/test_faulthander.py .. [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
===================== 2 passed, 1 warnings in 1.09 seconds =====================
++ 07:44:54 starting module/fcntl/test [45 started in total]
__ module/fcntl/test [45 done in total, somefailed=False] _____________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 8 items
module/fcntl/test/test_fcntl.py ........ [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
===================== 8 passed, 1 warnings in 1.67 seconds =====================
++ 07:44:56 starting module/gc/test [46 started in total]
__ module/gc/test [46 done in total, somefailed=False] ________________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 24 items
module/gc/test/test_gc.py sssssx.. [ 33%]
module/gc/test/test_hook.py ssssssss [ 66%]
module/gc/test/test_referents.py ........ [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
========= 10 passed, 13 skipped, 1 xfailed, 1 warnings in 3.79 seconds =========
++ 07:45:00 starting module/imp/test [47 started in total]
__ module/imp/test [47 done in total, somefailed=False] _______________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 110 items
module/imp/test/test_app.py ................ [ 14%]
module/imp/test/test_import.py ..............................s.......... [ 51%]
.....................sss.......................sss.s. [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
pypy/module/imp/test/test_import.py::AppTestImport::()::test__package__
pkg.notarealmodule:1: RuntimeWarning: Parent module 'foo' not found while handling absolute import
notarealpkg.notarealmodule:1: RuntimeWarning: Parent module 'foo' not found while handling absolute import
pypy/module/imp/test/test_import.py::AppTestImportHooks::()::test_imp_wrapper
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/imp/test/test_import.py:1352: DeprecationWarning: The compiler package is deprecated and removed in Python 3.x.
mod = imp.load_module(fullname, self.file, self.filename, self.stuff)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
============== 102 passed, 8 skipped, 4 warnings in 5.08 seconds ===============
++ 07:45:06 starting module/itertools/test [48 started in total]
__ module/itertools/test [48 done in total, somefailed=False] _________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 72 items
module/itertools/test/test_itertools.py ................................ [ 44%]
........................................ [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
==================== 72 passed, 1 warnings in 1.67 seconds =====================
++ 07:45:09 starting module/marshal/test [49 started in total]
__ module/marshal/test [49 done in total, somefailed=False] ___________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 79 items
module/marshal/test/test_marshal.py .................................sss [ 45%]
sssssssssssssssssssssssssssssss [ 84%]
module/marshal/test/test_marshalimpl.py ......ssssss [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
============== 39 passed, 40 skipped, 1 warnings in 1.82 seconds ===============
++ 07:45:11 starting module/math/test [50 started in total]
__ module/math/test [50 done in total, somefailed=False] ______________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 14 items
module/math/test/test_math.py .........s.... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
=============== 13 passed, 1 skipped, 1 warnings in 1.22 seconds ===============
++ 07:45:13 starting module/micronumpy/test [51 started in total]
__ module/micronumpy/test [51 done in total, somefailed=False] ________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 646 items
module/micronumpy/test/test_appbridge.py .. [ 0%]
module/micronumpy/test/test_arrayops.py .................... [ 3%]
module/micronumpy/test/test_broadcast.py ....... [ 4%]
module/micronumpy/test/test_casting.py ...... [ 5%]
module/micronumpy/test/test_complex.py ......................... [ 9%]
module/micronumpy/test/test_deprecations.py . [ 9%]
module/micronumpy/test/test_dtypes.py .................................. [ 14%]
.........................................s.s...... [ 22%]
module/micronumpy/test/test_flagsobj.py ....... [ 23%]
module/micronumpy/test/test_ndarray.py ................................. [ 28%]
........................................................................ [ 39%]
........................................................................ [ 50%]
........................................................................ [ 62%]
....s............................ [ 67%]
module/micronumpy/test/test_nditer.py .......s......ss..s [ 70%]
module/micronumpy/test/test_object_arrays.py ......s..s..s [ 72%]
module/micronumpy/test/test_outarg.py ..... [ 72%]
module/micronumpy/test/test_scalar.py .................................. [ 78%]
. [ 78%]
module/micronumpy/test/test_selection.py ........s.sss..... [ 81%]
module/micronumpy/test/test_subtype.py ......................... [ 84%]
module/micronumpy/test/test_support_app.py .... [ 85%]
module/micronumpy/test/test_ufuncs.py .................................. [ 90%]
........................................................... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
pypy/module/micronumpy/test/test_ndarray.py::AppTestNumArray::()::test_bool_array_index
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/micronumpy/test/test_ndarray.py:2305: VisibleDeprecationWarning: boolean index did not match indexed array along dimension 0; dimension is 3 but corresponding boolean dimension is 1
b = a[c]
-- Docs: https://docs.pytest.org/en/latest/warnings.html
============== 632 passed, 14 skipped, 2 warnings in 6.58 seconds ==============
++ 07:45:21 starting module/mmap/test [52 started in total]
__ module/mmap/test [52 done in total, somefailed=False] ______________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 43 items
module/mmap/test/test_mmap.py ......................s................... [ 97%]
. [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
=============== 42 passed, 1 skipped, 1 warnings in 1.43 seconds ===============
++ 07:45:23 starting module/operator/test [53 started in total]
__ module/operator/test [53 done in total, somefailed=False] __________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 18 items
module/operator/test/test_operator.py .................. [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
==================== 18 passed, 1 warnings in 1.27 seconds =====================
++ 07:45:25 starting module/parser/test [54 started in total]
__ module/parser/test [54 done in total, somefailed=False] ____________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 7 items
module/parser/test/test_parser.py ....... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
===================== 7 passed, 1 warnings in 1.08 seconds =====================
++ 07:45:26 starting module/posix/test [55 started in total]
__ module/posix/test [55 done in total, somefailed=False] _____________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 106 items
module/posix/test/test_posix2.py ....................................... [ 36%]
....................................s.........s................ [ 96%]
module/posix/test/test_posix_libfile.py .... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
pypy/module/posix/test/test_posix2.py::AppTestPosix::()::test_tmpnam
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/posix/test/test_posix2.py:1061: RuntimeWarning: tmpnam is a potential security risk to your program
s1 = os.tmpnam()
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/posix/test/test_posix2.py:1062: RuntimeWarning: tmpnam is a potential security risk to your program
s2 = os.tmpnam()
pypy/module/posix/test/test_posix2.py::AppTestPosix::()::test_tempnam
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/posix/test/test_posix2.py:1078: RuntimeWarning: tempnam is a potential security risk to your program
s1 = os.tempnam(dir, prefix)
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/posix/test/test_posix2.py:1079: RuntimeWarning: tempnam is a potential security risk to your program
s2 = os.tempnam(dir, prefix)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
============== 104 passed, 2 skipped, 5 warnings in 5.68 seconds ===============
++ 07:45:33 starting module/pwd/test [56 started in total]
__ module/pwd/test [56 done in total, somefailed=False] _______________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 3 items
module/pwd/test/test_pwd.py ... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
===================== 3 passed, 1 warnings in 1.08 seconds =====================
++ 07:45:35 starting module/pyexpat/test [57 started in total]
__ module/pyexpat/test [57 done in total, somefailed=False] ___________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 20 items
module/pyexpat/test/test_parser.py .................... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
==================== 20 passed, 1 warnings in 1.28 seconds =====================
++ 07:45:37 starting module/pypyjit/test [58 started in total]
__ module/pypyjit/test [58 done in total, somefailed=False] ___________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 15 items
module/pypyjit/test/test_jit_hook.py sssssssss [ 60%]
module/pypyjit/test/test_jit_not_in_trace.py .. [ 73%]
module/pypyjit/test/test_jit_setup.py .... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
=============== 6 passed, 9 skipped, 1 warnings in 1.37 seconds ================
++ 07:45:39 starting module/select/test [59 started in total]
__ module/select/test [59 done in total, somefailed=False] ____________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 40 items
module/select/test/test_epoll.py ........ [ 20%]
module/select/test/test_kqueue.py sssss [ 32%]
module/select/test/test_select.py ........................... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
=============== 35 passed, 5 skipped, 1 warnings in 5.50 seconds ===============
++ 07:45:45 starting module/signal/test [60 started in total]
__ module/signal/test [60 done in total, somefailed=False] ____________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 17 items
module/signal/test/test_signal.py ...............ss [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
pypy/module/signal/test/test_signal.py::AppTestSignal::()::test_exported_names
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/signal/test/test_signal.py:46: RemovedInPytest4Warning: pytest/tmpdir_factory.ensuretemp is deprecated,
please use the tmp_path fixture or tmp_path_factory.mktemp
str(pytest.ensuretemp("signal").join("foo.txt")))
-- Docs: https://docs.pytest.org/en/latest/warnings.html
=============== 15 passed, 2 skipped, 2 warnings in 8.15 seconds ===============
++ 07:45:56 starting module/struct/test [61 started in total]
__ module/struct/test [61 done in total, somefailed=False] ____________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 40 items
module/struct/test/test_struct.py ...................................... [ 95%]
.. [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
==================== 40 passed, 1 warnings in 1.44 seconds =====================
++ 07:45:58 starting module/sys/test [62 started in total]
__ module/sys/test [62 done in total, somefailed=False] _______________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 53 items
module/sys/test/test_sysmodule.py ......................s......s........ [ 71%]
....s....... [ 94%]
module/sys/test/test_version.py ... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
=============== 50 passed, 3 skipped, 1 warnings in 1.54 seconds ===============
++ 07:46:01 starting module/termios/test [63 started in total]
__ module/termios/test [63 done in total, somefailed=False] ___________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 3 items
module/termios/test/test_termios.py ... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
===================== 3 passed, 1 warnings in 1.03 seconds =====================
++ 07:46:02 starting module/test_lib_pypy [64 started in total]
__ module/test_lib_pypy [64 done in total, somefailed=False] __________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 240 items / 2 skipped
module/test_lib_pypy/test_collections.py ..................... [ 8%]
module/test_lib_pypy/test_curses.py .. [ 9%]
module/test_lib_pypy/test_marshal_extra.py ............................. [ 21%]
........................................................................ [ 51%]
.................................................. [ 72%]
module/test_lib_pypy/test_md5_extra.py ...... [ 75%]
module/test_lib_pypy/test_msvcrt.py s [ 75%]
module/test_lib_pypy/test_os_wait.py ... [ 76%]
module/test_lib_pypy/test_pickle_extra.py s [ 77%]
module/test_lib_pypy/test_resource.py ... [ 78%]
module/test_lib_pypy/test_sha_extra.py ... [ 79%]
module/test_lib_pypy/test_site_extra.py . [ 80%]
module/test_lib_pypy/test_stackless.py .............................. [ 92%]
module/test_lib_pypy/test_stackless_pickling.py .. [ 93%]
module/test_lib_pypy/test_structseq.py ......... [ 97%]
module/test_lib_pypy/test_tputil.py ..s.... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
module/test_lib_pypy/test_md5_extra.py:6
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/test_lib_pypy/test_md5_extra.py:6: DeprecationWarning: the md5 module is deprecated; use hashlib instead
import md5
module/test_lib_pypy/test_stackless.py:238
/build_dir/pypy-c-jit-linux-x86-64/build/pypy/module/test_lib_pypy/test_stackless.py:238: SyntaxWarning: name 'TaskletExit' is used prior to global declaration
global TaskletExit
-- Docs: https://docs.pytest.org/en/latest/warnings.html
============== 237 passed, 5 skipped, 3 warnings in 2.57 seconds ===============
++ 07:46:06 starting module/thread/test [65 started in total]
__ module/thread/test [65 done in total, somefailed=False] ____________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 41 items
module/thread/test/test_fork.py ... [ 7%]
module/thread/test/test_import_lock.py .... [ 17%]
module/thread/test/test_local.py ...... [ 31%]
module/thread/test/test_lock.py ................ [ 70%]
module/thread/test/test_thread.py ............ [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
==================== 41 passed, 1 warnings in 53.54 seconds ====================
++ 07:47:04 starting module/time/test [66 started in total]
__ module/time/test [66 done in total, somefailed=False] ______________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 18 items
module/time/test/test_time.py .................. [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
==================== 18 passed, 1 warnings in 1.36 seconds =====================
++ 07:47:06 starting module/unicodedata/test [67 started in total]
__ module/unicodedata/test [67 done in total, somefailed=False] _______________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 10 items / 1 skipped
module/unicodedata/test/test_unicodedata.py .......... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
=============== 10 passed, 1 skipped, 1 warnings in 1.08 seconds ===============
++ 07:47:08 starting module/zipimport/test [68 started in total]
__ module/zipimport/test [68 done in total, somefailed=False] _________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 47 items
module/zipimport/test/test_undocumented.py ...... [ 12%]
module/zipimport/test/test_zipimport.py .................... [ 55%]
module/zipimport/test/test_zipimport_deflated.py ..................... [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
==================== 47 passed, 1 warnings in 1.51 seconds =====================
++ 07:47:10 starting module/zlib/test [69 started in total]
__ module/zlib/test [69 done in total, somefailed=False] ______________________
============================= test session starts ==============================
platform linux2 -- Python 2.7.18[pypy-7.3.23-alpha], pytest-3.10.1, py-1.11.0, pluggy-0.11.0
pytest-3.10.1 from /build_dir/pypy-c-jit-linux-x86-64/build/pytest.pyc
rootdir: /build_dir/pypy-c-jit-linux-x86-64/build, inifile: pytest.ini
collected 30 items
module/zlib/test/test_zlib.py ........................s..s.. [100%]
=============================== warnings summary ===============================
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39
/build_dir/pypy-c-jit-linux-x86-64/build/_pytest/resultlog.py:39: RemovedInPytest4Warning: --result-log is deprecated and scheduled for removal in pytest 4.0.
See https://docs.pytest.org/en/latest/usage.html#creating-resultlog-format-files for more information.
_issue_config_warning(RESULT_LOG, config)
-- Docs: https://docs.pytest.org/en/latest/warnings.html
=============== 28 passed, 2 skipped, 1 warnings in 1.25 seconds ===============
program finished with exit code 1
elapsedTime=387.805072