-
Notifications
You must be signed in to change notification settings - Fork 822
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Building python from source with --enable-configurations hangs indefinitely upon reaching test case 313 (test_ssl) #4005
Comments
Spirituality dupe #1596 and #2526. You've got repro steps but no actionable. You could in principle isolate the 313 fail and post a targeted repro with |
I'm confused, what are you asking? I tried running strace as it requires but the command failed. |
In-lining one of the links for you, paraphrased:
The part of the template that you deleted asks for an |
This is sort of helpful? I'm on a fresh install of wsl and am trying to set up python3.7 with pip. Using apt-get install python3.7 does not install pip with python 3.7. So there not exactly popular real-world programs that are failing because of this, I am just looking for any way to install python3.7 and ensure that pip is installed with it as well. Thanks for your time. |
Thanks! The deadsnakes ppa ended up working. I had seen that solution, but decided to try other options (such as building from source) which were dead-ends. Thanks for setting me back on track. |
I got exactly the same problem, still no solution other than ppa? |
found another solution: install 3.7.3 via pyenv |
Just a comment. It appears that at least Python 3.9.7 now installs in Ubuntu WSL2 via |
@bavalpey installing those packages helped me sudo apt install make build-essential libssl-dev zlib1g-dev libbz2-dev \
libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev libncursesw5-dev \
xz-utils tk-dev libffi-dev liblzma-dev |
@bavalpey also if you don't run in gcc-9 gives error for run make -j8 CC=gcc-9 |
Please fill out the below information:
Your Windows build number: 10.0.17763.437
What you're doing and what's happening:
Command Output
sudo make -j 8 [sudo] password for bavalpey: Running code to generate profile data (this can take a while): # First, we need to create a clean build with profile generation # enabled. make profile-gen-stamp make[1]: Entering directory '/usr/bin/Python-3.7.3' make[1]: 'profile-gen-stamp' is up to date. make[1]: Leaving directory '/usr/bin/Python-3.7.3' # Next, run the profile task to generate the profile information. make run_profile_task make[1]: Entering directory '/usr/bin/Python-3.7.3' ./python -m test.regrtest --pgo || true Run tests sequentially 0:00:00 load avg: 0.52 [ 1/416] test_grammar 0:00:00 load avg: 0.52 [ 2/416] test_opcodes 0:00:00 load avg: 0.52 [ 3/416] test_dict 0:00:01 load avg: 0.52 [ 4/416] test_builtin profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 0:00:02 load avg: 0.52 [ 5/416] test_exceptions 0:00:11 load avg: 0.52 [ 6/416] test_types 0:00:11 load avg: 0.52 [ 7/416] test_unittest 0:00:21 load avg: 0.52 [ 8/416] test_doctest ********************************************************************** File "/usr/bin/Python-3.7.3/Lib/test/test_doctest.py", line 2766, in test.test_doctest.test_CLI Failed example: rc1, out1, err1 Expected: (0, b'', b'') Got: (0, b'', b'profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30\nprofiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11') ********************************************************************** File "/usr/bin/Python-3.7.3/Lib/test/test_doctest.py", line 2771, in test.test_doctest.test_CLI Failed example: rc2, err2 Expected: (0, b'') Got: (0, b'profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30\nprofiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11') ********************************************************************** File "/usr/bin/Python-3.7.3/Lib/test/test_doctest.py", line 2840, in test.test_doctest.test_CLI Failed example: rc1, err1 Expected: (1, b'') Got: (1, b'profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30\nprofiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11') ********************************************************************** File "/usr/bin/Python-3.7.3/Lib/test/test_doctest.py", line 2868, in test.test_doctest.test_CLI Failed example: rc2, out2, err2 Expected: (0, b'', b'') Got: (0, b'', b'profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30\nprofiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11') ********************************************************************** File "/usr/bin/Python-3.7.3/Lib/test/test_doctest.py", line 2870, in test.test_doctest.test_CLI Failed example: rc3, out3, err3 Expected: (0, b'', b'') Got: (0, b'', b'profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30\nprofiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11') ********************************************************************** File "/usr/bin/Python-3.7.3/Lib/test/test_doctest.py", line 2875, in test.test_doctest.test_CLI Failed example: rc4, err4 Expected: (1, b'') Got: (1, b'profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30\nprofiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11') ********************************************************************** File "/usr/bin/Python-3.7.3/Lib/test/test_doctest.py", line 2894, in test.test_doctest.test_CLI Failed example: rc5, err5 Expected: (0, b'') Got: (0, b'profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30\nprofiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11') ********************************************************************** File "/usr/bin/Python-3.7.3/Lib/test/test_doctest.py", line 2943, in test.test_doctest.test_CLI Failed example: print(normalize(err)) # doctest: +ELLIPSIS Expected: Traceback (most recent call last): ... FileNotFoundError: [Errno ...] No such file or directory: 'nosuchfile' Got: Traceback (most recent call last): File "/usr/bin/Python-3.7.3/Lib/runpy.py", line 193, in _run_module_as_main "__main__", mod_spec) File "/usr/bin/Python-3.7.3/Lib/runpy.py", line 85, in _run_code exec(code, run_globals) File "/usr/bin/Python-3.7.3/Lib/doctest.py", line 2786, in sys.exit(_test()) File "/usr/bin/Python-3.7.3/Lib/doctest.py", line 2779, in _test verbose=verbose, optionflags=options) File "/usr/bin/Python-3.7.3/Lib/doctest.py", line 2048, in testfile encoding or "utf-8") File "/usr/bin/Python-3.7.3/Lib/doctest.py", line 225, in _load_testfile with open(filename, encoding=encoding) as f: FileNotFoundError: [Errno 2] No such file or directory: 'nosuchfile' profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 ********************************************************************** 1 items had failures: 8 of 22 in test.test_doctest.test_CLI ***Test Failed*** 8 failures. 0:00:28 load avg: 0.52 [ 9/416] test_doctest2 -- test_doctest failed 0:00:28 load avg: 0.52 [ 10/416] test_support 0:00:51 load avg: 0.52 [ 11/416] test___all__ 0:00:52 load avg: 0.52 [ 12/416] test___future__ 0:00:53 load avg: 0.52 [ 13/416] test__locale 0:00:53 load avg: 0.52 [ 14/416] test__opcode 0:00:53 load avg: 0.52 [ 15/416] test__osx_support 0:00:53 load avg: 0.52 [ 16/416] test_abc 0:00:53 load avg: 0.52 [ 17/416] test_abstract_numbers 0:00:53 load avg: 0.52 [ 18/416] test_aifc 0:00:54 load avg: 0.52 [ 19/416] test_argparse 0:01:01 load avg: 0.52 [ 20/416] test_array 0:01:05 load avg: 0.52 [ 21/416] test_asdl_parser 0:01:05 load avg: 0.52 [ 22/416] test_ast 0:01:12 load avg: 0.52 [ 23/416] test_asyncgen 0:01:13 load avg: 0.52 [ 24/416] test_asynchat 0:01:15 load avg: 0.52 [ 25/416] test_asyncio profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 0:03:21 load avg: 0.52 [ 26/416] test_asyncore -- test_asyncio failed in 2 min 5 sec 0:03:21 load avg: 0.52 [ 27/416] test_atexit -- test_asyncore skipped 0:03:22 load avg: 0.52 [ 28/416] test_audioop -- test_atexit failed 0:03:22 load avg: 0.52 [ 29/416] test_augassign 0:03:22 load avg: 0.52 [ 30/416] test_base64 0:03:24 load avg: 0.52 [ 31/416] test_baseexception -- test_base64 failed 0:03:24 load avg: 0.52 [ 32/416] test_bdb 0:03:25 load avg: 0.52 [ 33/416] test_bigaddrspace 0:03:25 load avg: 0.52 [ 34/416] test_bigmem 0:03:25 load avg: 0.52 [ 35/416] test_binascii 0:03:26 load avg: 0.52 [ 36/416] test_binhex 0:03:26 load avg: 0.52 [ 37/416] test_binop 0:03:26 load avg: 0.52 [ 38/416] test_bisect 0:03:26 load avg: 0.52 [ 39/416] test_bool 0:03:27 load avg: 0.52 [ 40/416] test_buffer 0:03:53 load avg: 0.52 [ 41/416] test_bufio 0:04:03 load avg: 0.52 [ 42/416] test_bytes 0:04:09 load avg: 0.52 [ 43/416] test_bz2 0:04:09 load avg: 0.52 [ 44/416] test_c_locale_coercion -- test_bz2 skipped 0:04:42 load avg: 0.52 [ 45/416] test_calendar -- test_c_locale_coercion failed in 32 sec 688 ms 0:05:05 load avg: 0.52 [ 46/416] test_call 0:05:05 load avg: 0.52 [ 47/416] test_capi 0:05:10 load avg: 0.52 [ 48/416] test_cgi 0:05:10 load avg: 0.52 [ 49/416] test_cgitb 0:05:12 load avg: 0.52 [ 50/416] test_charmapcodec 0:05:12 load avg: 0.52 [ 51/416] test_class 0:05:12 load avg: 0.52 [ 52/416] test_clinic 0:05:13 load avg: 0.52 [ 53/416] test_cmath 0:05:13 load avg: 0.52 [ 54/416] test_cmd 0:05:14 load avg: 0.52 [ 55/416] test_cmd_line profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 0:05:50 load avg: 0.52 [ 56/416] test_cmd_line_script -- test_cmd_line failed in 36 sec 14 ms 0:06:18 load avg: 0.52 [ 57/416] test_code -- test_cmd_line_script failed 0:06:19 load avg: 0.52 [ 58/416] test_code_module 0:06:19 load avg: 0.52 [ 59/416] test_codeccallbacks 0:06:19 load avg: 0.52 [ 60/416] test_codecencodings_cn 0:06:21 load avg: 0.52 [ 61/416] test_codecencodings_hk 0:06:21 load avg: 0.52 [ 62/416] test_codecencodings_iso2022 0:06:22 load avg: 0.52 [ 63/416] test_codecencodings_jp 0:06:24 load avg: 0.52 [ 64/416] test_codecencodings_kr 0:06:25 load avg: 0.52 [ 65/416] test_codecencodings_tw 0:06:26 load avg: 0.52 [ 66/416] test_codecmaps_cn 0:06:26 load avg: 0.52 [ 67/416] test_codecmaps_hk 0:06:26 load avg: 0.52 [ 68/416] test_codecmaps_jp 0:06:26 load avg: 0.52 [ 69/416] test_codecmaps_kr 0:06:27 load avg: 0.52 [ 70/416] test_codecmaps_tw 0:06:27 load avg: 0.52 [ 71/416] test_codecs 0:06:31 load avg: 0.52 [ 72/416] test_codeop 0:06:32 load avg: 0.52 [ 73/416] test_collections 0:06:34 load avg: 0.52 [ 74/416] test_colorsys 0:06:34 load avg: 0.52 [ 75/416] test_compare 0:06:34 load avg: 0.52 [ 76/416] test_compile 0:06:41 load avg: 0.52 [ 77/416] test_compileall 0:07:16 load avg: 0.52 [ 78/416] test_complex -- test_compileall failed in 35 sec 66 ms 0:07:17 load avg: 0.52 [ 79/416] test_concurrent_futures Traceback (most recent call last): File "", line 1, in File "/usr/bin/Python-3.7.3/Lib/multiprocessing/forkserver.py", line 186, in main with socket.socket(socket.AF_UNIX, fileno=listener_fd) as listener, \ File "/usr/bin/Python-3.7.3/Lib/socket.py", line 151, in __init__ _socket.socket.__init__(self, family, type, proto, fileno) OSError: [Errno 22] Invalid argument: 'protocol' profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 Traceback (most recent call last): File "", line 1, in File "/usr/bin/Python-3.7.3/Lib/multiprocessing/forkserver.py", line 186, in main with socket.socket(socket.AF_UNIX, fileno=listener_fd) as listener, \ File "/usr/bin/Python-3.7.3/Lib/socket.py", line 151, in __init__ _socket.socket.__init__(self, family, type, proto, fileno) OSError: [Errno 22] Invalid argument: 'protocol' profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 Traceback (most recent call last): File "", line 1, in File "/usr/bin/Python-3.7.3/Lib/multiprocessing/forkserver.py", line 186, in main with socket.socket(socket.AF_UNIX, fileno=listener_fd) as listener, \ File "/usr/bin/Python-3.7.3/Lib/socket.py", line 151, in __init__ _socket.socket.__init__(self, family, type, proto, fileno) OSError: [Errno 22] Invalid argument: 'protocol' profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 Traceback (most recent call last): File "", line 1, in File "/usr/bin/Python-3.7.3/Lib/multiprocessing/forkserver.py", line 186, in main with socket.socket(socket.AF_UNIX, fileno=listener_fd) as listener, \ File "/usr/bin/Python-3.7.3/Lib/socket.py", line 151, in __init__ _socket.socket.__init__(self, family, type, proto, fileno) OSError: [Errno 22] Invalid argument: 'protocol' profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 Traceback (most recent call last): File "", line 1, in File "/usr/bin/Python-3.7.3/Lib/multiprocessing/forkserver.py", line 186, in main with socket.socket(socket.AF_UNIX, fileno=listener_fd) as listener, \ File "/usr/bin/Python-3.7.3/Lib/socket.py", line 151, in __init__ _socket.socket.__init__(self, family, type, proto, fileno) OSError: [Errno 22] Invalid argument: 'protocol' profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 Traceback (most recent call last): File "", line 1, in File "/usr/bin/Python-3.7.3/Lib/multiprocessing/forkserver.py", line 186, in main with socket.socket(socket.AF_UNIX, fileno=listener_fd) as listener, \ File "/usr/bin/Python-3.7.3/Lib/socket.py", line 151, in __init__ _socket.socket.__init__(self, family, type, proto, fileno) OSError: [Errno 22] Invalid argument: 'protocol' profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 Traceback (most recent call last): File "", line 1, in File "/usr/bin/Python-3.7.3/Lib/multiprocessing/forkserver.py", line 186, in main with socket.socket(socket.AF_UNIX, fileno=listener_fd) as listener, \ File "/usr/bin/Python-3.7.3/Lib/socket.py", line 151, in __init__ _socket.socket.__init__(self, family, type, proto, fileno) OSError: [Errno 22] Invalid argument: 'protocol' profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 Traceback (most recent call last): File "", line 1, in File "/usr/bin/Python-3.7.3/Lib/multiprocessing/forkserver.py", line 186, in main with socket.socket(socket.AF_UNIX, fileno=listener_fd) as listener, \ File "/usr/bin/Python-3.7.3/Lib/socket.py", line 151, in __init__ _socket.socket.__init__(self, family, type, proto, fileno) OSError: [Errno 22] Invalid argument: 'protocol' profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 Warning -- reap_children() reaped child process 1121 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/iterobject.gcda:Merge mismatch for function 1 profiling:/usr/bin/Python-3.7.3/Objects/descrobject.gcda:Merge mismatch for function 77 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_operator.gcda:Merge mismatch for function 22 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Python/sysmodule.gcda:Merge mismatch for function 76 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/getargs.gcda:Merge mismatch for function 32 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/complexobject.gcda:Merge mismatch for function 31 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/compile.gcda:Merge mismatch for function 80 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/codecs.gcda:Merge mismatch for function 37 profiling:/usr/bin/Python-3.7.3/Python/codecs.gcda:Merge mismatch for function 37 profiling:/usr/bin/Python-3.7.3/Python/bltinmodule.gcda:Merge mismatch for function 1 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 0:10:07 load avg: 0.52 [ 80/416] test_configparser -- test_concurrent_futures failed in 2 min 50 sec 0:10:09 load avg: 0.52 [ 81/416] test_contains 0:10:09 load avg: 0.52 [ 82/416] test_context 0:10:15 load avg: 0.52 [ 83/416] test_contextlib 0:10:15 load avg: 0.52 [ 84/416] test_contextlib_async Task was destroyed but it is pending! task: ()>> Task was destroyed but it is pending! task: ()>> 0:10:16 load avg: 0.52 [ 85/416] test_copy 0:10:16 load avg: 0.52 [ 86/416] test_copyreg 0:10:16 load avg: 0.52 [ 87/416] test_coroutines 0:10:19 load avg: 0.52 [ 88/416] test_cprofile 0:10:22 load avg: 0.52 [ 89/416] test_crashers 0:10:22 load avg: 0.52 [ 90/416] test_crypt 0:10:22 load avg: 0.52 [ 91/416] test_csv 0:10:24 load avg: 0.52 [ 92/416] test_ctypes 0:10:28 load avg: 0.52 [ 93/416] test_curses 0:10:29 load avg: 0.52 [ 94/416] test_dataclasses -- test_curses skipped (resource denied) 0:10:30 load avg: 0.52 [ 95/416] test_datetime 0:10:44 load avg: 0.52 [ 96/416] test_dbm 0:10:45 load avg: 0.52 [ 97/416] test_dbm_dumb 0:10:48 load avg: 0.52 [ 98/416] test_dbm_gnu 0:10:48 load avg: 0.52 [ 99/416] test_dbm_ndbm 0:10:49 load avg: 0.52 [100/416] test_decimal -- test_dbm_ndbm skipped 0:11:05 load avg: 0.52 [101/416] test_decorators 0:11:06 load avg: 0.52 [102/416] test_defaultdict 0:11:06 load avg: 0.52 [103/416] test_deque 0:11:15 load avg: 0.52 [104/416] test_descr 0:11:21 load avg: 0.52 [105/416] test_descrtut 0:11:22 load avg: 0.52 [106/416] test_devpoll 0:11:22 load avg: 0.52 [107/416] test_dict_version -- test_devpoll skipped 0:11:22 load avg: 0.52 [108/416] test_dictcomps 0:11:22 load avg: 0.52 [109/416] test_dictviews 0:11:23 load avg: 0.52 [110/416] test_difflib 0:11:27 load avg: 0.52 [111/416] test_dis 0:11:29 load avg: 0.52 [112/416] test_distutils profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 0:11:38 load avg: 0.52 [113/416] test_docxmlrpc 0:11:40 load avg: 0.52 [114/416] test_dtrace 0:11:40 load avg: 0.52 [115/416] test_dummy_thread 0:11:41 load avg: 0.52 [116/416] test_dummy_threading 0:11:41 load avg: 0.52 [117/416] test_dynamic 0:11:41 load avg: 0.52 [118/416] test_dynamicclassattribute 0:11:42 load avg: 0.52 [119/416] test_eintr 0:12:58 load avg: 0.52 [120/416] test_email -- test_eintr failed in 1 min 16 sec 0:13:10 load avg: 0.52 [121/416] test_embed 0:13:29 load avg: 0.52 [122/416] test_ensurepip -- test_embed failed 0:13:30 load avg: 0.52 [123/416] test_enum 0:13:31 load avg: 0.52 [124/416] test_enumerate 0:13:32 load avg: 0.52 [125/416] test_eof 0:13:32 load avg: 0.52 [126/416] test_epoll 0:13:35 load avg: 0.52 [127/416] test_errno -- test_epoll failed 0:13:35 load avg: 0.52 [128/416] test_exception_hierarchy 0:13:35 load avg: 0.52 [129/416] test_exception_variations 0:13:36 load avg: 0.52 [130/416] test_extcall 0:13:36 load avg: 0.52 [131/416] test_faulthandler profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 0:14:07 load avg: 0.52 [132/416] test_fcntl -- test_faulthandler failed in 30 sec 991 ms 0:14:07 load avg: 0.52 [133/416] test_file -- test_fcntl failed 0:14:08 load avg: 0.52 [134/416] test_file_eintr 0:14:20 load avg: 0.52 [135/416] test_filecmp 0:14:21 load avg: 0.52 [136/416] test_fileinput 0:14:21 load avg: 0.52 [137/416] test_fileio 0:14:22 load avg: 0.52 [138/416] test_finalization 0:14:26 load avg: 0.52 [139/416] test_float 0:14:27 load avg: 0.52 [140/416] test_flufl 0:14:28 load avg: 0.52 [141/416] test_fnmatch 0:14:28 load avg: 0.52 [142/416] test_fork1 0:14:35 load avg: 0.52 [143/416] test_format 0:14:35 load avg: 0.52 [144/416] test_fractions 0:14:36 load avg: 0.52 [145/416] test_frame 0:14:37 load avg: 0.52 [146/416] test_frozen 0:14:37 load avg: 0.52 [147/416] test_fstring 0:14:39 load avg: 0.52 [148/416] test_ftplib 0:14:42 load avg: 0.52 [149/416] test_funcattrs -- test_ftplib failed 0:14:42 load avg: 0.52 [150/416] test_functools 0:14:43 load avg: 0.52 [151/416] test_future 0:14:43 load avg: 0.52 [152/416] test_future3 0:14:43 load avg: 0.52 [153/416] test_future4 0:14:44 load avg: 0.52 [154/416] test_future5 0:14:44 load avg: 0.52 [155/416] test_gc 0:14:55 load avg: 0.52 [156/416] test_gdb 0:14:57 load avg: 0.52 [157/416] test_generator_stop 0:14:57 load avg: 0.52 [158/416] test_generators 0:14:58 load avg: 0.52 [159/416] test_genericclass 0:14:59 load avg: 0.52 [160/416] test_genericpath 0:14:59 load avg: 0.52 [161/416] test_genexps 0:14:59 load avg: 0.52 [162/416] test_getargs2 0:15:00 load avg: 0.52 [163/416] test_getopt 0:15:00 load avg: 0.52 [164/416] test_getpass 0:15:01 load avg: 0.52 [165/416] test_gettext 0:15:02 load avg: 0.52 [166/416] test_glob 0:15:03 load avg: 0.52 [167/416] test_global 0:15:03 load avg: 0.52 [168/416] test_grp 0:15:03 load avg: 0.52 [169/416] test_gzip 0:15:07 load avg: 0.52 [170/416] test_hash -- test_gzip failed 0:15:21 load avg: 0.52 [171/416] test_hashlib 0:15:23 load avg: 0.52 [172/416] test_heapq 0:15:26 load avg: 0.52 [173/416] test_hmac 0:15:27 load avg: 0.52 [174/416] test_html 0:15:27 load avg: 0.52 [175/416] test_htmlparser 0:15:27 load avg: 0.52 [176/416] test_http_cookiejar 0:15:28 load avg: 0.52 [177/416] test_http_cookies 0:15:28 load avg: 0.52 [178/416] test_httplib 0:15:29 load avg: 0.52 [179/416] test_httpservers -- test_httplib failed 0:15:30 load avg: 0.52 [180/416] test_idle -- test_httpservers failed 0:15:31 load avg: 0.52 [181/416] test_imaplib -- test_idle skipped 0:15:34 load avg: 0.52 [182/416] test_imghdr 0:15:34 load avg: 0.52 [183/416] test_imp 0:15:36 load avg: 0.52 [184/416] test_import 0:15:40 load avg: 0.52 [185/416] test_importlib -- test_import failed 0:15:47 load avg: 0.52 [186/416] test_index 0:15:47 load avg: 0.52 [187/416] test_inspect 0:15:51 load avg: 0.52 [188/416] test_int -- test_inspect failed 0:15:51 load avg: 0.52 [189/416] test_int_literal 0:15:52 load avg: 0.52 [190/416] test_io 0:17:11 load avg: 0.52 [191/416] test_ioctl -- test_io failed in 1 min 19 sec 0:17:12 load avg: 0.52 [192/416] test_ipaddress 0:17:12 load avg: 0.52 [193/416] test_isinstance 0:17:13 load avg: 0.52 [194/416] test_iter 0:17:14 load avg: 0.52 [195/416] test_iterlen 0:17:14 load avg: 0.52 [196/416] test_itertools 0:17:36 load avg: 0.52 [197/416] test_json 0:17:48 load avg: 0.52 [198/416] test_keyword -- test_json failed 0:17:55 load avg: 0.52 [199/416] test_keywordonlyarg -- test_keyword failed 0:17:55 load avg: 0.52 [200/416] test_kqueue 0:17:56 load avg: 0.52 [201/416] test_largefile -- test_kqueue skipped 0:18:13 load avg: 0.52 [202/416] test_lib2to3 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 0:18:59 load avg: 0.52 [203/416] test_linecache -- test_lib2to3 passed in 45 sec 759 ms 0:18:59 load avg: 0.52 [204/416] test_list 0:19:01 load avg: 0.52 [205/416] test_listcomps 0:19:01 load avg: 0.52 [206/416] test_locale 0:19:01 load avg: 0.52 [207/416] test_logging 0:19:26 load avg: 0.52 [208/416] test_long 0:19:37 load avg: 0.52 [209/416] test_longexp 0:19:38 load avg: 0.52 [210/416] test_lzma 0:19:39 load avg: 0.52 [211/416] test_macpath -- test_lzma skipped 0:19:40 load avg: 0.52 [212/416] test_mailbox 0:19:49 load avg: 0.52 [213/416] test_mailcap 0:19:50 load avg: 0.52 [214/416] test_marshal 0:19:55 load avg: 0.52 [215/416] test_math 0:20:03 load avg: 0.52 [216/416] test_memoryio 0:20:04 load avg: 0.52 [217/416] test_memoryview 0:20:07 load avg: 0.52 [218/416] test_metaclass 0:20:08 load avg: 0.52 [219/416] test_mimetypes 0:20:08 load avg: 0.52 [220/416] test_minidom 0:20:09 load avg: 0.52 [221/416] test_mmap 0:20:56 load avg: 0.52 [222/416] test_module -- test_mmap failed in 47 sec 241 ms 0:20:58 load avg: 0.52 [223/416] test_modulefinder -- test_module failed 0:21:00 load avg: 0.52 [224/416] test_msilib 0:21:01 load avg: 0.52 [225/416] test_multibytecodec -- test_msilib skipped 0:21:07 load avg: 0.52 [226/416] test_multiprocessing_fork 0:21:07 load avg: 0.52 [227/416] test_multiprocessing_forkserver -- test_multiprocessing_fork skipped 0:21:07 load avg: 0.52 [228/416] test_multiprocessing_main_handling -- test_multiprocessing_forkserver skipped 0:21:08 load avg: 0.52 [229/416] test_multiprocessing_spawn -- test_multiprocessing_main_handling skipped 0:21:08 load avg: 0.52 [230/416] test_netrc -- test_multiprocessing_spawn skipped 0:21:09 load avg: 0.52 [231/416] test_nis 0:21:09 load avg: 0.52 [232/416] test_nntplib 0:21:10 load avg: 0.52 [233/416] test_normalization 0:21:10 load avg: 0.52 [234/416] test_ntpath 0:21:12 load avg: 0.52 [235/416] test_numeric_tower 0:21:13 load avg: 0.52 [236/416] test_openpty 0:21:13 load avg: 0.52 [237/416] test_operator 0:21:14 load avg: 0.52 [238/416] test_optparse 0:21:14 load avg: 0.52 [239/416] test_ordered_dict 0:21:21 load avg: 0.52 [240/416] test_os profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 0:21:53 load avg: 0.52 [241/416] test_ossaudiodev -- test_os failed in 31 sec 932 ms 0:21:54 load avg: 0.52 [242/416] test_osx_env -- test_ossaudiodev skipped (resource denied) 0:21:54 load avg: 0.52 [243/416] test_parser 0:21:56 load avg: 0.52 [244/416] test_pathlib 0:22:01 load avg: 0.52 [245/416] test_pdb 0:22:19 load avg: 0.52 [246/416] test_peepholer -- test_pdb failed 0:22:20 load avg: 0.52 [247/416] test_pickle 0:22:54 load avg: 0.52 [248/416] test_pickletools -- test_pickle passed in 34 sec 173 ms 0:23:00 load avg: 0.52 [249/416] test_pipes 0:23:04 load avg: 0.52 [250/416] test_pkg 0:23:04 load avg: 0.52 [251/416] test_pkgimport 0:23:05 load avg: 0.52 [252/416] test_pkgutil 0:23:06 load avg: 0.52 [253/416] test_platform profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 0:23:12 load avg: 0.52 [254/416] test_plistlib 0:23:13 load avg: 0.52 [255/416] test_poll 0:23:25 load avg: 0.52 [256/416] test_popen profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 0:23:32 load avg: 0.52 [257/416] test_poplib 0:23:35 load avg: 0.52 [258/416] test_posix profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 0:23:40 load avg: 0.52 [259/416] test_posixpath -- test_posix failed 0:23:42 load avg: 0.52 [260/416] test_pow 0:23:42 load avg: 0.52 [261/416] test_pprint 0:23:43 load avg: 0.52 [262/416] test_print 0:23:43 load avg: 0.52 [263/416] test_profile 0:23:44 load avg: 0.52 [264/416] test_property 0:23:44 load avg: 0.52 [265/416] test_pstats 0:23:45 load avg: 0.52 [266/416] test_pty 0:23:46 load avg: 0.52 [267/416] test_pulldom 0:23:47 load avg: 0.52 [268/416] test_pwd 0:23:47 load avg: 0.52 [269/416] test_py_compile 0:23:48 load avg: 0.52 [270/416] test_pyclbr 0:23:56 load avg: 0.52 [271/416] test_pydoc 0:24:11 load avg: 0.52 [272/416] test_pyexpat 0:24:11 load avg: 0.52 [273/416] test_queue 0:24:18 load avg: 0.52 [274/416] test_quopri profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 0:24:21 load avg: 0.52 [275/416] test_raise 0:24:21 load avg: 0.52 [276/416] test_random 0:24:26 load avg: 0.52 [277/416] test_range 0:24:29 load avg: 0.52 [278/416] test_re 0:24:33 load avg: 0.52 [279/416] test_readline 0:24:39 load avg: 0.52 [280/416] test_regrtest 0:25:52 load avg: 0.52 [281/416] test_repl -- test_regrtest passed in 1 min 12 sec 0:25:53 load avg: 0.52 [282/416] test_reprlib 0:25:54 load avg: 0.52 [283/416] test_resource 0:25:55 load avg: 0.52 [284/416] test_richcmp 0:25:56 load avg: 0.52 [285/416] test_rlcompleter 0:25:56 load avg: 0.52 [286/416] test_robotparser 0:25:57 load avg: 0.52 [287/416] test_runpy 0:26:01 load avg: 0.52 [288/416] test_sax 0:26:01 load avg: 0.52 [289/416] test_sched 0:26:02 load avg: 0.52 [290/416] test_scope 0:26:03 load avg: 0.52 [291/416] test_script_helper 0:26:07 load avg: 0.52 [292/416] test_secrets 0:26:08 load avg: 0.52 [293/416] test_select 0:26:20 load avg: 0.52 [294/416] test_selectors 0:27:17 load avg: 0.52 [295/416] test_set -- test_selectors failed in 57 sec 206 ms 0:27:25 load avg: 0.52 [296/416] test_setcomps 0:27:25 load avg: 0.52 [297/416] test_shelve 0:27:27 load avg: 0.52 [298/416] test_shlex 0:27:27 load avg: 0.52 [299/416] test_shutil 0:27:30 load avg: 0.52 [300/416] test_signal profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 0:28:20 load avg: 0.52 [301/416] test_site -- test_signal failed in 49 sec 507 ms profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 profiling:/usr/bin/Python-3.7.3/Objects/cellobject.gcda:Merge mismatch for function 4 profiling:/usr/bin/Python-3.7.3/Modules/_functoolsmodule.gcda:Merge mismatch for function 30 profiling:/usr/bin/Python-3.7.3/Python/importdl.gcda:Merge mismatch for function 0 profiling:/usr/bin/Python-3.7.3/Objects/sliceobject.gcda:Merge mismatch for function 11 0:28:32 load avg: 0.52 [302/416] test_slice 0:28:33 load avg: 0.52 [303/416] test_smtpd 0:28:34 load avg: 0.52 [304/416] test_smtplib 0:28:36 load avg: 0.52 [305/416] test_smtpnet 0:28:36 load avg: 0.52 [306/416] test_sndhdr -- test_smtpnet skipped (resource denied) 0:28:37 load avg: 0.52 [307/416] test_socket 0:29:07 load avg: 0.52 [308/416] test_socketserver -- test_socket failed in 30 sec 207 ms 0:29:07 load avg: 0.52 [309/416] test_sort -- test_socketserver skipped (resource denied) 0:29:08 load avg: 0.52 [310/416] test_source_encoding 0:29:33 load avg: 0.52 [311/416] test_spwd 0:29:33 load avg: 0.52 [312/416] test_sqlite 0:29:34 load avg: 0.52 [313/416] test_ssl -- test_sqlite skippedUpon reaching test _ssl (this is test 313), the make command is stuck. The command is hung up indefinitely. Building python from source with the --enable-optimizations configuration set.
I tried to find a solution to this elsewhere but the only mention of this that I see is a post located here that dates back to 2016.
The text was updated successfully, but these errors were encountered: